mirror of https://github.com/zulip/zulip.git
209 lines
4.5 KiB
SCSS
209 lines
4.5 KiB
SCSS
.billing-upgrade-page {
|
|
font-family: Source Sans Pro, Helvetica, Arial, sans-serif;
|
|
background: hsl(0, 0%, 98%);
|
|
height: 100vh;
|
|
|
|
.hero {
|
|
background: hsl(153, 32%, 55%);
|
|
color: hsl(153, 32%, 55%);
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.small-hero {
|
|
padding: 120px 50px 0;
|
|
}
|
|
|
|
.main {
|
|
width: 800px;
|
|
max-width: 90%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
margin: 30px 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.nav {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.nav-tabs {
|
|
border-bottom: 0;
|
|
font-size: 1.2em;
|
|
a {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.tab-content {
|
|
border: 1px solid #ddd;
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
padding: 20px;
|
|
background: hsl(0, 0%, 100%);
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.support-link {
|
|
margin: 10px 20px;
|
|
a,
|
|
a:hover,
|
|
a:visited {
|
|
color: hsl(170, 47%, 33%);
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
.payment-schedule {
|
|
label {
|
|
display: inline-block;
|
|
}
|
|
input[type="radio"] {
|
|
display: none;
|
|
&:checked {
|
|
+ .box {
|
|
background: hsl(153, 32%, 55%);
|
|
color: white;
|
|
border-color: hsl(152, 33%, 39%);
|
|
}
|
|
}
|
|
}
|
|
.box {
|
|
width: 120px;
|
|
height: 70px;
|
|
background: hsl(0, 0%, 94%);
|
|
transition: all .2s ease;
|
|
display: inline-block;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
position: relative;
|
|
border: 1px solid hsl(0, 0%, 91%);
|
|
border-radius: 8px;
|
|
margin: 0 10px 5px 0;
|
|
padding: 30px 20px;
|
|
vertical-align: top;
|
|
&:hover {
|
|
background: hsl(0, 0%, 91%);
|
|
border-color: hsl(0, 0%, 80%);
|
|
}
|
|
.schedule-time {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
margin-top: 10px;
|
|
}
|
|
.schedule-amount {
|
|
margin-top: 5px;
|
|
font-size: 1.1em;
|
|
height: 50px;
|
|
}
|
|
.schedule-amount-2 {
|
|
font-size: 0.9em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.stripe-button-el {
|
|
padding: 11px 25px 11px 25px;
|
|
font-weight: 400;
|
|
color: white;
|
|
background: hsl(185, 38%, 55%);
|
|
background: linear-gradient(145deg, rgb(76, 181, 205), rgb(37, 177, 151));
|
|
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
|
|
border: 0;
|
|
height: 40px;
|
|
margin: 5px 0 0 0;
|
|
span {
|
|
background: 0;
|
|
box-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
font-family: 'Source Sans Pro', Helvetica, Arial;
|
|
font-size: 1.4em;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
.stripe-button-el:hover {
|
|
background: rgb(37, 177, 151);
|
|
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.stripe-button-el:active,
|
|
.stripe-button-el:not(:disabled):active {
|
|
background: rgb(25, 139, 118);
|
|
span {
|
|
background: 0;
|
|
box-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
}
|
|
}
|
|
|
|
.stripe-button-el:disabled {
|
|
span {
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
#error-message-box {
|
|
margin-top: 10px;
|
|
font-weight: 600;
|
|
display: none;
|
|
}
|
|
|
|
#loading-section {
|
|
display: none;
|
|
min-height: 55px;
|
|
}
|
|
|
|
#card-updated-message {
|
|
text-align: center;
|
|
display: none;
|
|
}
|
|
|
|
#update-card-button-span {
|
|
display: block;
|
|
min-height: 30px;
|
|
}
|
|
|
|
.updating-card-logo {
|
|
margin: 0 auto;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.updating-card-logo svg circle {
|
|
fill: #444;
|
|
stroke: #444;
|
|
}
|
|
|
|
.updating-card-logo svg path {
|
|
fill: #fff;
|
|
stroke: #fff;
|
|
}
|
|
|
|
#updating_card_indicator {
|
|
margin: 10px auto;
|
|
}
|
|
|
|
#updating_card_indicator_box_container {
|
|
position: absolute;
|
|
left: 50%;
|
|
}
|
|
|
|
#updating_card_indicator_box {
|
|
position: relative;
|
|
left: -50%;
|
|
top: -41px;
|
|
z-index: 1;
|
|
-webkit-border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.loading_indicator_text {
|
|
margin-left: -75px;
|
|
}
|
|
}
|