48 lines
841 B
SCSS
48 lines
841 B
SCSS
div#c-user-upgrades {
|
|
div#a-new {
|
|
form.stripe {
|
|
display: inline;
|
|
}
|
|
|
|
div.section {
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
div#feature-comparison {
|
|
overflow: hidden;
|
|
margin-bottom: 1em;
|
|
|
|
table {
|
|
width: 100%;
|
|
|
|
colgroup {
|
|
width: 10em;
|
|
}
|
|
|
|
colgroup#basic {
|
|
}
|
|
|
|
colgroup#gold {
|
|
background-color: var(--user-upgrade-gold-background-color);
|
|
}
|
|
|
|
colgroup#platinum {
|
|
background-color: var(--user-upgrade-platinum-background-color);
|
|
}
|
|
|
|
td, th {
|
|
text-align: center;
|
|
vertical-align: top;
|
|
padding: 0.5em 0;
|
|
}
|
|
|
|
tbody {
|
|
tr:hover {
|
|
background-color: var(--user-upgrade-table-row-hover-background-color);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|