mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
0ea17a1c5a
[web] Update column header styling for light touch redesign of plans table GitOrigin-RevId: d6b24f1c355256a5dcb2c75255eec610e064fd03
1170 lines
28 KiB
Text
1170 lines
28 KiB
Text
// m-a stands for: monthly annual
|
|
@plans-top-switch-item-height: 34px;
|
|
@plans-top-switch-item-border-radius: @plans-top-switch-item-height / 2;
|
|
@plans-m-a-switch-height: 34px;
|
|
@plans-highlighted-text-height-desktop: 30px;
|
|
@plans-highlighted-text-height-mobile: 41px;
|
|
@plans-learn-more-link-color: hsl(206, 100%, 52%);
|
|
@plans-top-switch-group-width-mobile: 46%;
|
|
@plans-table-border-radius: var(--border-radius-medium-new);
|
|
@plans-table-td-mobile-min-height: 34px;
|
|
@highlighted-border: var(--border-width-base) solid var(--green-50);
|
|
@table-border-size: 2px;
|
|
@table-border: @table-border-size solid var(--neutral-10);
|
|
|
|
.plans-page {
|
|
p {
|
|
color: @neutral-70;
|
|
margin-bottom: @line-height-computed;
|
|
}
|
|
|
|
.plans-header {
|
|
h1,
|
|
h2 {
|
|
color: @neutral-70;
|
|
}
|
|
}
|
|
|
|
.circle {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
padding: 46px 18px;
|
|
margin: 0 auto @line-height-computed;
|
|
text-shadow: 0 -1px 1px darken(@link-color, 10%);
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
background-color: @brand-secondary;
|
|
color: white;
|
|
white-space: nowrap;
|
|
line-height: 1;
|
|
|
|
.small {
|
|
color: rgba(255, 255, 255, 0.85);
|
|
font-size: @font-size-base * 0.8;
|
|
}
|
|
}
|
|
|
|
.circle-lg {
|
|
height: 180px;
|
|
padding: 70px 8px;
|
|
width: 180px;
|
|
}
|
|
|
|
.circle-subtext {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.circle-img {
|
|
float: right;
|
|
|
|
@media (max-width: @screen-sm-max) {
|
|
float: left;
|
|
margin: 0 15px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
[data-ol-current-view='group'] [data-ol-plans-v2-m-a-switch-container] {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.plans-top-switch ul {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: var(--spacing-09);
|
|
|
|
li {
|
|
border-top: 1px solid @ol-blue-gray-3;
|
|
border-bottom: 1px solid @ol-blue-gray-3;
|
|
height: @plans-top-switch-item-height;
|
|
|
|
&.plans-switch-individual {
|
|
border-right: 1px solid @ol-blue-gray-3;
|
|
border-left: 1px solid @ol-blue-gray-3;
|
|
border-top-left-radius: @plans-top-switch-item-border-radius;
|
|
border-bottom-left-radius: @plans-top-switch-item-border-radius;
|
|
}
|
|
|
|
&.plans-switch-student {
|
|
border-right: 1px solid @ol-blue-gray-3;
|
|
border-left: 1px solid @ol-blue-gray-3;
|
|
border-top-right-radius: @plans-top-switch-item-border-radius;
|
|
border-bottom-right-radius: @plans-top-switch-item-border-radius;
|
|
}
|
|
|
|
button {
|
|
padding: 4px 16px;
|
|
height: 100%;
|
|
|
|
// remove bootstrap default
|
|
&.btn:active {
|
|
box-shadow: none;
|
|
}
|
|
|
|
// on Firefox, there will be a visible dotted border on the li element
|
|
// when it's `active` / `focus`
|
|
// `outline: none` rule intends to eliminate that border
|
|
&:active,
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
background-color: @ol-blue-gray-4;
|
|
|
|
button.btn-default-outline {
|
|
color: @white;
|
|
}
|
|
}
|
|
|
|
&:not(.active) {
|
|
background-color: @white;
|
|
}
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
margin: 0 13px;
|
|
|
|
li {
|
|
height: unset;
|
|
|
|
&.plans-switch-individual,
|
|
&.plans-switch-student {
|
|
width: (100% - @plans-top-switch-group-width-mobile) / 2;
|
|
}
|
|
|
|
&.plans-switch-group {
|
|
width: @plans-top-switch-group-width-mobile;
|
|
|
|
// force newline for the second span
|
|
span:first-child::after {
|
|
content: '';
|
|
display: block;
|
|
}
|
|
|
|
span:last-child {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
&.plans-switch-individual,
|
|
&.plans-switch-student {
|
|
button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
button {
|
|
white-space: unset;
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a.btn.plans-v2-btn-header,
|
|
button.plans-v2-btn-header {
|
|
font-family: @font-family-sans-serif;
|
|
margin-top: @margin-sm;
|
|
text-shadow: 0 0 0;
|
|
background-color: @ol-blue;
|
|
color: @white;
|
|
|
|
&:hover {
|
|
color: @white;
|
|
}
|
|
}
|
|
|
|
.monthly-annual-switch {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
margin-top: @margin-xl;
|
|
|
|
.underline {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&.disabled {
|
|
span {
|
|
color: @ol-blue-gray-2;
|
|
}
|
|
|
|
label {
|
|
input + span {
|
|
background-color: @ol-blue-gray-2;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
margin-top: 25px;
|
|
|
|
&[data-ol-current-view='group'] {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
label {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: @plans-m-a-switch-height;
|
|
margin: 0 @margin-lg;
|
|
|
|
input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
input + span {
|
|
background-color: @ol-green;
|
|
}
|
|
|
|
input:checked + span {
|
|
background-color: @ol-blue-gray-4;
|
|
}
|
|
|
|
input:checked + span::before {
|
|
transform: translateX(26px);
|
|
}
|
|
|
|
span {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
transition: 0.4s;
|
|
border-radius: @plans-m-a-switch-height;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
content: '';
|
|
height: 32px;
|
|
width: 32px;
|
|
left: 1px;
|
|
bottom: 1px;
|
|
background-color: @white;
|
|
transition: 0.4s;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.monthly-annual-switch-text {
|
|
position: relative;
|
|
|
|
.tooltip {
|
|
position: absolute;
|
|
color: @white;
|
|
width: auto;
|
|
border-radius: 4px;
|
|
right: 110%;
|
|
top: 0;
|
|
z-index: 0;
|
|
|
|
&.tooltip.in.left {
|
|
.tooltip-inner {
|
|
background-color: @ol-green;
|
|
}
|
|
|
|
.tooltip-arrow {
|
|
border-left-color: @ol-green;
|
|
}
|
|
}
|
|
|
|
span {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
right: -31%;
|
|
top: unset;
|
|
|
|
&.tooltip.in.bottom {
|
|
.tooltip-inner {
|
|
background-color: @ol-green;
|
|
}
|
|
|
|
.tooltip-arrow {
|
|
border-left-color: unset;
|
|
border-bottom-color: @ol-green;
|
|
}
|
|
}
|
|
|
|
//- class toggled by JS
|
|
&.plans-v2-m-a-tooltip-monthly-selected {
|
|
right: -119%;
|
|
}
|
|
|
|
span {
|
|
font-size: @font-size-extra-small;
|
|
position: relative;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.page-header.top-page-header {
|
|
// remove page-header border & margin on mobile
|
|
@media (max-width: @screen-xs-max) {
|
|
border-bottom: none;
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-comments-icon {
|
|
i {
|
|
font-size: 64px;
|
|
}
|
|
}
|
|
|
|
.plans-table-container {
|
|
position: relative;
|
|
}
|
|
|
|
.plans-license-picker-form {
|
|
margin-top: 25px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
font-size: @font-size-small;
|
|
margin-top: 15px;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.plans-v2-license-picker-select {
|
|
background-color: @white;
|
|
border: 1px solid #cccccc;
|
|
width: 64px;
|
|
height: 30px;
|
|
margin: 0 @margin-sm;
|
|
padding-left: @padding-sm;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
margin: 0 15px;
|
|
}
|
|
}
|
|
|
|
.plans-v2-license-picker-educational-discount {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
|
|
.plans-v2-license-picker-educational-discount-label {
|
|
margin-bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: normal;
|
|
|
|
&.disabled span {
|
|
color: @ol-blue-gray-2;
|
|
}
|
|
}
|
|
|
|
input[type='checkbox'].plans-v2-license-picker-educational-discount-checkbox {
|
|
margin-top: 0;
|
|
margin-right: @margin-sm;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
margin-right: 25px;
|
|
// scale the checkbox to around 30px width and height
|
|
transform: scale(2.307);
|
|
}
|
|
}
|
|
|
|
i.plans-v2-license-picker-educational-discount-question-icon {
|
|
margin-left: @margin-xs;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
span.plans-v2-license-picker-educational-discount-learn-more-container {
|
|
display: none;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
margin-left: 5px;
|
|
display: inline;
|
|
// this white-space is important to ensure the "learn more" text won't get separated by a newline
|
|
white-space: nowrap;
|
|
|
|
span.plans-v2-license-picker-educational-discount-learn-more-text {
|
|
color: @plans-learn-more-link-color;
|
|
}
|
|
|
|
.tooltip {
|
|
// force white-space to have initial value since the `white-space: nowrap` rule
|
|
// on .plans-v2-license-picker-educational-discount-learn-more-container selector (the current code block) above
|
|
// will also affect every child inside of it, including the generated tooltip
|
|
white-space: initial;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-individual,
|
|
.plans-table-student {
|
|
margin-top: 40px + @plans-highlighted-text-height-desktop;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
margin-top: 60px + @plans-highlighted-text-height-desktop;
|
|
}
|
|
}
|
|
|
|
.plans-table-student {
|
|
@media (max-width: @screen-md-max) {
|
|
tr:first-of-type {
|
|
th:last-of-type {
|
|
// Last column is only a UI placeholder for desktop view.
|
|
// We need to hide it for mobile to have the full table fully visible on mobile
|
|
// without any empty horizontal space.
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-group {
|
|
margin-top: 26px + @plans-highlighted-text-height-desktop;
|
|
}
|
|
|
|
.plans-table {
|
|
background-color: white;
|
|
margin-bottom: 15px;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
|
|
.plans-table-th-content,
|
|
.plans-table-price,
|
|
.plans-table-comments-icon,
|
|
.plans-table-th-content-benefit {
|
|
color: var(--neutral-90);
|
|
}
|
|
|
|
// cannot add border to td,th directly due to highlighted column border
|
|
td > div,
|
|
th > div {
|
|
border-left: @table-border;
|
|
border-top: @table-border;
|
|
border-right: @table-border;
|
|
border-bottom: 0;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
border-left: unset;
|
|
border-right: unset;
|
|
}
|
|
}
|
|
|
|
// remove left border for all col after highlighted column
|
|
.plans-table-green-highlighted ~ td > div,
|
|
.plans-table-green-highlighted ~ th > div {
|
|
border-left: 0;
|
|
}
|
|
// remove right border for all col before highlighted column
|
|
td:has(~ .plans-table-green-highlighted) > div,
|
|
th:has(~ .plans-table-green-highlighted) > div {
|
|
border-right: 0;
|
|
}
|
|
|
|
// highlighted column border
|
|
th.plans-table-green-highlighted > div,
|
|
td.plans-table-green-highlighted > div {
|
|
border-left: @highlighted-border;
|
|
border-right: @highlighted-border;
|
|
// remove top gray border so that there is
|
|
// no shared corner with left/right green border
|
|
// and then apply the gray top border to the inner div, .plans-table-cell-content
|
|
border-top: 0;
|
|
|
|
.plans-table-cell-content {
|
|
border-top: @table-border;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
border-left: unset;
|
|
border-right: unset;
|
|
}
|
|
}
|
|
|
|
th {
|
|
&:nth-child(2):not(.plans-table-green-highlighted) .plans-table-th {
|
|
border-top-left-radius: @plans-table-border-radius;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
border-top-left-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-cta-desktop,
|
|
.plans-table-cta-mobile,
|
|
.plans-table-short-feature-list,
|
|
.plans-table-price-row {
|
|
td > div {
|
|
border-top: 0;
|
|
}
|
|
}
|
|
|
|
th[scope='col'] > div {
|
|
padding: var(--spacing-06) var(--spacing-08);
|
|
}
|
|
th[scope='row'] > div {
|
|
padding: var(--spacing-05) var(--spacing-08) var(--spacing-05)
|
|
var(--spacing-05);
|
|
}
|
|
td > div > div {
|
|
// apply spacing to inner div to not interfere with border
|
|
padding: var(--spacing-05) var(--spacing-08);
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
padding: var(--spacing-05);
|
|
}
|
|
}
|
|
tr.plans-table-divider > td > div {
|
|
// td style above not applied since there is only 1 level of div within divider cells
|
|
padding: var(--spacing-05) var(--spacing-08);
|
|
}
|
|
|
|
tr.plans-table-price-row > td > div > div {
|
|
padding-top: 0;
|
|
padding-bottom: var(--spacing-06);
|
|
}
|
|
tr.plans-table-short-feature-list > td > div > div {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
padding-bottom: var(--spacing-06);
|
|
}
|
|
}
|
|
tr.plans-table-cta-desktop > td > div > div {
|
|
padding-top: var(--spacing-08);
|
|
}
|
|
tr.plans-table-cta-mobile > td > div > div {
|
|
padding-top: 0;
|
|
padding-bottom: var(--spacing-06);
|
|
}
|
|
|
|
// We want these `div` inside `th` and `td` to have a 100% height since
|
|
// white backgrounds are defined here:
|
|
// 1. `td > div.plans-table-cell`
|
|
// 2. `th > div.plans-table-th`
|
|
//
|
|
// To make both of them have 100% height of their respective `td` and `th`,
|
|
// we need to have the `table` has an explicit `height` rule.
|
|
// The value can be arbitrary, since it will be ignored by the browser
|
|
//
|
|
// See https://stackoverflow.com/a/56913789 for more details
|
|
height: 100%;
|
|
|
|
th[scope='row'] {
|
|
font-weight: 500;
|
|
}
|
|
|
|
tr {
|
|
height: 100%;
|
|
|
|
// top right border radius on desktop only
|
|
&:first-of-type {
|
|
th:last-child > .plans-table-th {
|
|
border-top-right-radius: @plans-table-border-radius;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
border-top-right-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// bottom right border radius on desktop only
|
|
&:last-child {
|
|
td:last-child {
|
|
.plans-table-cell {
|
|
border-bottom-right-radius: @plans-table-border-radius;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
th {
|
|
.plans-table-feature-name {
|
|
@media (min-width: @screen-sm-min) {
|
|
border-bottom-left-radius: @plans-table-border-radius;
|
|
}
|
|
}
|
|
}
|
|
|
|
td > div,
|
|
th > div {
|
|
border-bottom: @table-border;
|
|
}
|
|
|
|
.plans-table-green-highlighted > div {
|
|
border-bottom: @highlighted-border;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
// column is not highlighted on mobile, so
|
|
// match non-highlighted column border on mobile
|
|
border-top: @table-border;
|
|
border-bottom: @table-border;
|
|
.plans-table-cell-content {
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
th[scope='col'],
|
|
td {
|
|
text-align: center;
|
|
}
|
|
|
|
th[scope='col'] {
|
|
font-family: 'Noto Sans', sans-serif;
|
|
font-size: var(--font-size-05);
|
|
font-weight: 600;
|
|
line-height: var(--line-height-04);
|
|
vertical-align: top;
|
|
position: relative;
|
|
|
|
&.plans-table-green-highlighted {
|
|
.plans-table-th {
|
|
border-top: @table-border-size solid @ol-green;
|
|
}
|
|
}
|
|
}
|
|
|
|
td {
|
|
vertical-align: middle;
|
|
height: 100%;
|
|
}
|
|
|
|
tr {
|
|
&:first-child th {
|
|
// keep the position here, otherwise messes up border on safari
|
|
position: relative;
|
|
}
|
|
|
|
.plans-table-first-feature-header {
|
|
.plans-table-feature-name {
|
|
border-top-left-radius: @plans-table-border-radius;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
border-top-left-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tr.plans-table-divider {
|
|
background-color: var(--neutral-10);
|
|
th > div,
|
|
td > div {
|
|
border-top: 0;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
// direct child selector to NOT affect the generated tooltip
|
|
td > div {
|
|
text-align: center;
|
|
|
|
.plans-table-divider-label {
|
|
margin-bottom: 0;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.plans-table-divider-learn-more-container {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// highlighted divider will only show if the highlighted column is on the last visible column
|
|
.plans-table-last-col-highlighted > div {
|
|
border-right: @highlighted-border;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
padding-top: 0;
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
background-color: var(--neutral-20);
|
|
border: 0;
|
|
|
|
// direct child selector to NOT affect the generated tooltip
|
|
th > div,
|
|
td > div {
|
|
background-color: var(--neutral-20);
|
|
border: 0;
|
|
i {
|
|
display: none;
|
|
}
|
|
|
|
.plans-table-divider-learn-more-container {
|
|
display: inline;
|
|
// this white-space is important to ensure the "learn more" text won't get separated by a newline
|
|
white-space: nowrap;
|
|
|
|
span.plans-table-divider-learn-more-text {
|
|
color: @plans-learn-more-link-color;
|
|
}
|
|
|
|
// force white-space to have initial value since the `white-space: nowrap` rule
|
|
// on .plans-table-divider-learn-more-container selector (the current code block) above
|
|
// will also affect every child inside of it, including the generated tooltip
|
|
.tooltip {
|
|
white-space: initial;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-last-col-highlighted > div {
|
|
border-right: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
tr.plans-table-divider + tr {
|
|
td > div,
|
|
th > div {
|
|
border-top: 0;
|
|
}
|
|
.plans-table-green-highlighted {
|
|
.plans-table-cell-content {
|
|
border-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
tr.plans-table-cols-2 {
|
|
th:last-child {
|
|
div {
|
|
border: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.fa-check {
|
|
color: @green;
|
|
}
|
|
|
|
@media (min-width: @screen-sm-min) {
|
|
// highlight rows on hover
|
|
.plans-table-feature-row:hover {
|
|
.plans-table-feature-name,
|
|
.plans-table-cell {
|
|
background-color: @table-hover-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: @screen-sm-max) {
|
|
font-size: @font-size-small;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
tr {
|
|
display: flex;
|
|
// for mobile, we need to show the feature name (the first column) as its own row
|
|
// the flex-flow will make the whole tr overflow to a next row if
|
|
// total td width combined is bigger than viewport width
|
|
// so, one tr can have multiple "visible" row depending on the total width.
|
|
flex-flow: row wrap;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
// The forced width below (plans-table-cols-n) is to ensure the table columns have an equal width
|
|
// because on mobile, the first column (empty cell on first `tr` and feature name on the rest of `tr`) will be shown as its own row
|
|
// and the rest of the `tr` will incorporate a full width of the viewport
|
|
tr.plans-table-cols-3:not(.plans-table-divider) {
|
|
td,
|
|
th:not(:first-of-type) {
|
|
width: calc(100% / 3);
|
|
}
|
|
}
|
|
|
|
tr.plans-table-cols-2:not(.plans-table-divider) {
|
|
td,
|
|
th:not(:first-of-type) {
|
|
width: 50%;
|
|
}
|
|
}
|
|
|
|
th[scope='col'] {
|
|
font-size: 12px;
|
|
}
|
|
|
|
// hide the first cell (which has no content)
|
|
tr:first-child,
|
|
.plans-table-price-row,
|
|
.plans-table-cta-mobile,
|
|
.plans-table-short-feature-list {
|
|
th:first-child,
|
|
td:first-child {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// for mobile, we need to show the feature name (the first td) as its own row
|
|
// the width: 100vw rule will enhance the flex-flow on the tr by ensuring the feature name (first column of each feature row)
|
|
// will have the full width of viewport,
|
|
// and making the first td appear like the it is in its own row (although it's technically still on the same tr as the other tds)
|
|
th[scope='row'] {
|
|
width: 100vw;
|
|
|
|
span.plans-table-feature-name {
|
|
width: 100%;
|
|
|
|
span {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// plans-table-cell class only appears for the inner `div` of a `td`
|
|
// that doesn't contain divider or feature name
|
|
// (i.e it contains either check mark icon or a dash)
|
|
.plans-table-cell {
|
|
height: 100%;
|
|
|
|
.plans-table-cell-content {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
.plans-table-cell-content {
|
|
min-height: @plans-table-td-mobile-min-height;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-th {
|
|
height: 100%;
|
|
|
|
.plans-table-th-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
@media (max-width: @screen-sm-max) {
|
|
padding-left: @padding-xs;
|
|
padding-right: @padding-xs;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-btn-buy-container-desktop,
|
|
.plans-table-btn-buy-container-mobile {
|
|
gap: var(--spacing-04);
|
|
}
|
|
|
|
.plans-table-btn-buy-container-desktop {
|
|
display: flex;
|
|
flex-direction: column;
|
|
@media (max-width: @screen-xs-max) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.plans-table-btn-buy-container-mobile {
|
|
display: none;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media (min-width: (@screen-xs-max+1)) {
|
|
.hidden-desktop {
|
|
display: none;
|
|
}
|
|
}
|
|
@media (max-width: @screen-xs-max) {
|
|
.hidden-mobile {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
ul.plans-table-th-content-benefit {
|
|
font-size: var(--font-size-02);
|
|
line-height: var(--line-height-02);
|
|
hyphens: auto;
|
|
padding-left: 15px;
|
|
text-align: left;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
// this class should only appear on the group table
|
|
.plans-group-total-price {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.plans-table-price-row {
|
|
.match-non-discounted-price-alignment,
|
|
s {
|
|
display: block;
|
|
font-weight: 600;
|
|
font-size: var(--font-size-02);
|
|
line-height: var(--line-height-02);
|
|
color: var(--neutral-60);
|
|
}
|
|
|
|
.plans-table-price-container {
|
|
p.plans-table-price-period-label {
|
|
margin: 0;
|
|
font-size: var(--font-size-02);
|
|
line-height: var(--line-height-02);
|
|
color: @ol-blue-gray-3;
|
|
font-weight: 400;
|
|
}
|
|
|
|
p.plans-table-price {
|
|
margin: 0;
|
|
|
|
span {
|
|
font-weight: 600;
|
|
font-size: var(--font-size-07);
|
|
line-height: var(--line-height-06);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-feature-name {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
i.plans-table-feature-question-icon {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
span.plans-table-feature-learn-more-container {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
display: inline-block;
|
|
text-align: left;
|
|
width: 100%;
|
|
background-color: @ol-blue-gray-0;
|
|
min-height: @plans-table-td-mobile-min-height;
|
|
|
|
i.plans-table-feature-question-icon {
|
|
display: none;
|
|
}
|
|
|
|
span.plans-table-feature-learn-more-container {
|
|
margin-left: 5px;
|
|
display: inline;
|
|
// this white-space is important to ensure the "learn more" text won't get separated by a newline
|
|
white-space: nowrap;
|
|
|
|
span.plans-table-feature-learn-more-text {
|
|
color: @plans-learn-more-link-color;
|
|
}
|
|
|
|
.tooltip {
|
|
// force white-space to have initial value since the `white-space: nowrap` rule
|
|
// on .plans-table-feature-learn-more-container selector (the current code block) above
|
|
// will also affect every child inside of it, including the generated tooltip
|
|
white-space: initial;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
p.plans-table-green-highlighted-text {
|
|
border: 2px solid @ol-green;
|
|
position: absolute;
|
|
top: -1 * @plans-highlighted-text-height-desktop;
|
|
left: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: @font-size-small;
|
|
line-height: 19px;
|
|
font-weight: 700;
|
|
background-color: @ol-green;
|
|
border-radius: var(--border-radius-large-new) var(--border-radius-large-new)
|
|
0 0;
|
|
color: @white;
|
|
height: @plans-highlighted-text-height-desktop;
|
|
margin: 0;
|
|
width: 100%;
|
|
|
|
@media (max-width: @screen-sm-max) {
|
|
top: -1 * @plans-highlighted-text-height-mobile;
|
|
height: @plans-highlighted-text-height-mobile;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
font-size: @font-size-extra-small;
|
|
line-height: 15px;
|
|
}
|
|
}
|
|
|
|
.plans-table-sticky-header-container {
|
|
@media (max-width: @screen-xs-max) {
|
|
// `height: 60%` is just an arbitrary percentage
|
|
// since we need to cover the whole plans_v2_table
|
|
// but not too much so it vertically overflows the page
|
|
// and it's not trivial to calculate the precise table height
|
|
height: 60%;
|
|
width: 100%;
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
.plans-table-sticky-header-without-switch {
|
|
margin-bottom: -107px;
|
|
margin-top: 67px;
|
|
}
|
|
|
|
.plans-table-sticky-header-with-switch {
|
|
margin-bottom: -140px;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.plans-table-sticky-header {
|
|
display: none;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
display: flex;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: @z-index-plans-page-table-header-mobile;
|
|
height: 42px;
|
|
border-bottom: @table-border;
|
|
|
|
// separate sticky class because we want to remove the class (to visually remove the sticky header)
|
|
// with javascript whenever the table is not visible anymore
|
|
&.sticky {
|
|
position: sticky;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-sticky-header-item {
|
|
background-color: @white;
|
|
flex: 1 1 0px;
|
|
|
|
span {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
color: var(--neutral-90);
|
|
font-size: var(--font-size-03);
|
|
font-weight: 600;
|
|
text-align: center;
|
|
line-height: var(--line-height-02);
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-table-sticky-header-item-green-highlighted span {
|
|
color: @ol-green;
|
|
}
|
|
|
|
.plans-v2-faq {
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
// need for specificity to override default a color
|
|
p > a {
|
|
color: @ol-blue;
|
|
|
|
&:hover {
|
|
color: @ol-dark-blue;
|
|
}
|
|
}
|
|
}
|
|
|
|
.plans-v2-university-info {
|
|
padding: @padding-lg @padding-xxl;
|
|
background-color: var(--neutral-20);
|
|
border-radius: 20px;
|
|
|
|
h3.plans-v2-university-info-header {
|
|
margin: 0 @margin-xl @margin-md @margin-xl;
|
|
}
|
|
|
|
p.plans-v2-university-info-text {
|
|
margin: 0 @margin-xl;
|
|
}
|
|
|
|
a.plans-v2-btn-university-info {
|
|
margin-top: @margin-md;
|
|
}
|
|
|
|
@media (max-width: @screen-sm-max) {
|
|
h3.plans-v2-university-info-header {
|
|
margin: 0 0 @margin-md 0;
|
|
}
|
|
|
|
p.plans-v2-university-info-text {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
padding: @padding-lg;
|
|
}
|
|
}
|
|
|
|
padding-top: calc(var(--spacing-16) + var(--header-height));
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
margin-bottom: var(--spacing-08);
|
|
}
|
|
.plans-v2-top-switch {
|
|
margin-top: var(--spacing-09);
|
|
}
|
|
|
|
.plans-page-quote-row {
|
|
margin: var(--spacing-13) 0;
|
|
}
|
|
}
|