mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-08-06 02:00:07 +02:00

* adding temporary rendering of the BS5 version of why-latex page * adding first section on the page with new styling, that is compatible with BS5 * adding next section * adding cards and copy pasting existing styling * using variables instead of direct values * fixing the styling of h3 in info-card * adding next section and its styling * adding variables * adding features card section * adding the next features card * adding the next features card section * adding another card section * adding last feature card section * adding next section * adding next section * adding next section * adding begin now card * running npm run lint:styles:fix * making some style changes to match BS3 version for smaller screen under lg in BS5 * adding a width fix to image * changing breakpoints to bring consistency in stylesheet * adding vars * adding split test * removing the temporary rendering solution for the BS5 page * adding splitTestHandler Stub GitOrigin-RevId: 1257dff09e5371d68e102972e3544559800ca339
531 lines
9.2 KiB
SCSS
531 lines
9.2 KiB
SCSS
// TODO: .website-redesign to be removed once fully rolled out
|
|
|
|
@mixin reset-font-size($size) {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
ul,
|
|
ol {
|
|
@if $size == 'heading-2xl' {
|
|
@include heading-2xl;
|
|
} @else if $size == 'heading-xl' {
|
|
@include heading-xl;
|
|
} @else if $size == 'heading-lg' {
|
|
@include heading-lg;
|
|
} @else if $size == 'heading-md' {
|
|
@include heading-md;
|
|
} @else if $size == 'heading-sm' {
|
|
@include heading-sm;
|
|
} @else if $size == 'heading-xs' {
|
|
@include heading-xs;
|
|
} @else if $size == 'base' {
|
|
@include body-base;
|
|
}
|
|
}
|
|
}
|
|
|
|
.website-redesign {
|
|
&:not(.application-page) {
|
|
--link-color: var(--link-web);
|
|
--link-hover-color: var(--link-web-hover);
|
|
--link-visited-color: var(--link-web-visited);
|
|
--link-hover-text-decoration: underline;
|
|
|
|
.notification {
|
|
--link-color: var(--link-ui);
|
|
--link-hover-color: var(--link-ui-hover);
|
|
--link-visited-color: var(--link-ui-visited);
|
|
}
|
|
}
|
|
|
|
// hero section of features, enterprises, and universities will have an image that will overflow the page
|
|
|
|
--bs-body-color: var(--neutral-70);
|
|
|
|
overflow-x: hidden;
|
|
|
|
a {
|
|
&:focus,
|
|
&:focus-visible {
|
|
outline: 0;
|
|
}
|
|
|
|
&:focus-visible {
|
|
@include box-shadow-button-input;
|
|
}
|
|
|
|
i {
|
|
vertical-align: middle;
|
|
margin-left: var(--spacing-02);
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
&.link-lg {
|
|
font-size: var(--font-size-04);
|
|
line-height: var(--line-height-03);
|
|
|
|
i {
|
|
font-size: 24px;
|
|
line-height: inherit;
|
|
}
|
|
}
|
|
|
|
&.link-xl {
|
|
font-size: var(--font-size-06);
|
|
line-height: var(--line-height-05);
|
|
|
|
i {
|
|
font-size: var(--font-size-06);
|
|
line-height: var(--font-size-06);
|
|
}
|
|
}
|
|
|
|
// Specific overrides for link styles
|
|
&.link-monospace {
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
&.btn:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: 600;
|
|
}
|
|
|
|
h1,
|
|
.h1 {
|
|
@include heading-2xl;
|
|
}
|
|
|
|
.font-size-h1 {
|
|
@include reset-font-size('heading-2xl');
|
|
}
|
|
|
|
h2,
|
|
.h2 {
|
|
@include heading-xl;
|
|
}
|
|
|
|
.font-size-h2 {
|
|
@include reset-font-size('heading-xl');
|
|
}
|
|
|
|
h3,
|
|
.h3 {
|
|
@include heading-lg;
|
|
}
|
|
|
|
.font-size-h3 {
|
|
@include reset-font-size('heading-lg');
|
|
}
|
|
|
|
h4,
|
|
.h4 {
|
|
@include heading-md;
|
|
}
|
|
|
|
.font-size-h4 {
|
|
@include reset-font-size('heading-md');
|
|
}
|
|
|
|
h5,
|
|
.h5 {
|
|
@include heading-sm;
|
|
}
|
|
|
|
.font-size-h5 {
|
|
@include reset-font-size('heading-sm');
|
|
}
|
|
|
|
h6,
|
|
.h6 {
|
|
@include heading-xs;
|
|
}
|
|
|
|
.font-size-h6 {
|
|
@include reset-font-size('heading-xs');
|
|
}
|
|
|
|
.font-size-base {
|
|
@include reset-font-size('base');
|
|
}
|
|
|
|
// smaller fonts for mobile
|
|
@include media-breakpoint-down(lg) {
|
|
h1,
|
|
.h1 {
|
|
@include heading-xl;
|
|
}
|
|
|
|
.font-size-h1 {
|
|
@include reset-font-size('heading-xl');
|
|
}
|
|
|
|
h2,
|
|
.h2 {
|
|
@include heading-lg;
|
|
}
|
|
|
|
.font-size-h2 {
|
|
@include reset-font-size('heading-lg');
|
|
}
|
|
|
|
h3,
|
|
.h3 {
|
|
@include heading-md;
|
|
}
|
|
|
|
.font-size-h3 {
|
|
@include reset-font-size('heading-md');
|
|
}
|
|
|
|
h4,
|
|
.h4 {
|
|
@include heading-sm;
|
|
}
|
|
|
|
.font-size-h4 {
|
|
@include reset-font-size('heading-sm');
|
|
}
|
|
|
|
h5,
|
|
.h5 {
|
|
@include heading-xs;
|
|
}
|
|
|
|
.font-size-h5 {
|
|
@include reset-font-size('heading-xs');
|
|
}
|
|
|
|
h6,
|
|
.h6 {
|
|
@include body-base;
|
|
}
|
|
|
|
.font-size-h6 {
|
|
@include reset-font-size('base');
|
|
}
|
|
}
|
|
|
|
.font-size-display-xs {
|
|
@include display-xs;
|
|
}
|
|
|
|
.text-purple-bright {
|
|
color: var(--purple-bright);
|
|
}
|
|
|
|
.text-green-bright {
|
|
color: var(--green-bright);
|
|
}
|
|
|
|
.card {
|
|
--bs-card-bg: var(--neutral-10);
|
|
--bs-card-border-radius: var(--border-radius-large);
|
|
|
|
&.page-content-card {
|
|
--bs-card-bg: transparent;
|
|
}
|
|
}
|
|
|
|
.badge-premium {
|
|
--badge-font-weight: 600;
|
|
}
|
|
|
|
.content-alt {
|
|
background-color: var(--bg-light-primary);
|
|
}
|
|
|
|
.page-header {
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
.round-background {
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.centered-block {
|
|
@include media-breakpoint-up(lg) {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.header-description {
|
|
p {
|
|
font-size: var(--font-size-05);
|
|
line-height: var(--line-height-03);
|
|
margin-bottom: 0;
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
font-size: var(--font-size-04);
|
|
line-height: var(--line-height-02);
|
|
}
|
|
}
|
|
}
|
|
|
|
.resources {
|
|
@include media-breakpoint-up(lg) {
|
|
display: flex;
|
|
|
|
/* equal heights */
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.resources-card {
|
|
display: flex;
|
|
flex-flow: column wrap;
|
|
margin-bottom: 48px;
|
|
align-content: flex-start;
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
img {
|
|
width: 56px;
|
|
}
|
|
|
|
h3 {
|
|
width: 100%;
|
|
font-size: var(--font-size-05);
|
|
}
|
|
|
|
a {
|
|
margin-top: auto;
|
|
|
|
@include heading-xs;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: var(--spacing-05);
|
|
}
|
|
}
|
|
}
|
|
|
|
.green-round-background {
|
|
@extend .round-background;
|
|
|
|
background: var(--green-30);
|
|
}
|
|
|
|
.why-latex {
|
|
h1 {
|
|
margin-top: var(--spacing-08);
|
|
}
|
|
|
|
.sub-heading {
|
|
font-size: var(--font-size-04);
|
|
}
|
|
}
|
|
|
|
.info-cards {
|
|
padding: 0;
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
display: flex;
|
|
|
|
/* equal heights */
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.info-card-container {
|
|
margin-bottom: var(--spacing-06);
|
|
padding-left: var(--spacing-06);
|
|
padding-right: var(--spacing-06);
|
|
|
|
h3 {
|
|
font-size: var(--font-size-05);
|
|
line-height: var(--line-height-04);
|
|
}
|
|
|
|
.info-card {
|
|
border-radius: 8px;
|
|
height: 100%;
|
|
box-shadow:
|
|
0 2px 4px 0 #1e253014,
|
|
0 4px 12px 0 #1e25301f;
|
|
border-top: 8px solid var(--sapphire-blue);
|
|
padding: var(--spacing-09) var(--spacing-10);
|
|
|
|
&.info-card-big-text {
|
|
h3 {
|
|
font-size: var(--font-size-06);
|
|
line-height: var(--line-height-02);
|
|
}
|
|
|
|
p {
|
|
font-size: var(--font-size-04);
|
|
line-height: var(--line-height-02);
|
|
}
|
|
}
|
|
|
|
i.material-symbols {
|
|
color: var(--sapphire-blue);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.heading-section-md-align-left {
|
|
@include media-breakpoint-down(lg) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: baseline;
|
|
|
|
h2 {
|
|
text-align: left;
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
.responsive-button-container {
|
|
display: flex;
|
|
margin-top: var(--spacing-08);
|
|
gap: var(--spacing-06);
|
|
|
|
&.centered-buttons {
|
|
justify-content: center;
|
|
}
|
|
|
|
&.align-left-button-sm {
|
|
@include media-breakpoint-down(md) {
|
|
justify-content: start;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(md) {
|
|
width: 100%;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.overleaf-sticker {
|
|
width: unset;
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
width: 74px; // 70% of 106px
|
|
}
|
|
}
|
|
|
|
.features-card {
|
|
display: flex; /* equal heights */
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
|
|
.features-card-media,
|
|
.features-card-media-right {
|
|
padding-top: var(--spacing-08);
|
|
position: relative;
|
|
|
|
img.img-responsive {
|
|
width: 100%;
|
|
}
|
|
|
|
video {
|
|
box-shadow:
|
|
0 4px 6px 0 rgb(30 37 48 / 12%),
|
|
0 8px 16px 0 rgb(30 37 48 / 12%);
|
|
max-height: 100%;
|
|
width: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
margin-bottom: var(--spacing-11);
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
.features-card-media-right {
|
|
padding-left: var(--spacing-13);
|
|
}
|
|
|
|
.features-card-media {
|
|
padding-right: var(--spacing-13);
|
|
}
|
|
}
|
|
|
|
.features-card-description,
|
|
.features-card-description-list {
|
|
padding-top: var(--spacing-06);
|
|
|
|
p {
|
|
margin-bottom: var(--spacing-06);
|
|
font-size: 1.125rem;
|
|
line-height: 1.333;
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
font-size: 1rem;
|
|
line-height: 1.375;
|
|
}
|
|
}
|
|
}
|
|
|
|
.features-card-description {
|
|
h3 {
|
|
font-size: 1.5rem;
|
|
line-height: 1.4;
|
|
margin-bottom: var(--spacing-04);
|
|
}
|
|
}
|
|
|
|
.features-card-description-list {
|
|
h3 {
|
|
font-size: 1.875rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
ul.list-simple-text,
|
|
ul.list-heading-text {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
li {
|
|
margin-bottom: var(--spacing-05);
|
|
font-size: 1.125rem;
|
|
line-height: 1.333;
|
|
display: flex;
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
font-size: 1rem;
|
|
line-height: 1.375;
|
|
}
|
|
}
|
|
}
|
|
|
|
ul.list-heading-text {
|
|
li {
|
|
h4 {
|
|
margin-top: 0;
|
|
margin-bottom: var(--spacing-04);
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|