mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
a066e96b92
[web] Updates for CMS pages using BS5 and new site design GitOrigin-RevId: 08b66d1bfb3062a229f16a44efe70527f6fa67a7
48 lines
856 B
SCSS
48 lines
856 B
SCSS
.text-with-bg {
|
|
@extend .dm-mono;
|
|
|
|
padding: 0 var(--spacing-04);
|
|
border-radius: var(--border-radius-medium);
|
|
margin-top: var(--spacing-02);
|
|
|
|
// will make all spans content inline while avoiding overflowing the viewport in mobile
|
|
// https://developer.mozilla.org/en-US/docs/Web/CSS/display#flow-root
|
|
// https://css-tricks.com/display-flow-root/
|
|
display: inline flow-root;
|
|
|
|
&.tangerine-bg {
|
|
background-color: var(--vivid-tangerine);
|
|
}
|
|
|
|
&.purple-bg {
|
|
background-color: var(--ceil);
|
|
}
|
|
|
|
&.yellow-bg {
|
|
background-color: var(--caramel);
|
|
}
|
|
|
|
&.green-bg {
|
|
background-color: var(--green-30);
|
|
}
|
|
}
|
|
|
|
.mono-text {
|
|
@extend .dm-mono;
|
|
@include body-lg;
|
|
|
|
color: var(--green-60);
|
|
font-weight: 500;
|
|
margin: 0;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
> span.mono-text {
|
|
display: block;
|
|
margin-bottom: var(--spacing-04);
|
|
}
|
|
}
|