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

[web] Fix non-aligned mobile buttons for non-logged-in user on "\begin{now}" card GitOrigin-RevId: 3cf6dd1291d9ff85b88477f7379edd59c4776704
60 lines
1.4 KiB
SCSS
60 lines
1.4 KiB
SCSS
/*
|
|
Styling for content pages
|
|
Including: about, blog, /for/__, legal, contact, portals, wiki, gallery, plans, and interstitial payment page
|
|
*/
|
|
|
|
// TODO: consolidate cms.scss and content.scss
|
|
|
|
.content-page {
|
|
&.content {
|
|
padding-top: $header-height; // remove extra padding added by .content. Keep .content selector to increase specificity
|
|
}
|
|
|
|
word-break: break-word;
|
|
|
|
.btn + .btn {
|
|
margin-left: var(--spacing-06);
|
|
}
|
|
|
|
/*
|
|
Links and Buttons
|
|
*/
|
|
|
|
// TODO: remove an use link style in more generic selector,
|
|
// which is likely .website-redesign to start
|
|
// a {
|
|
// color: @link-color-alt;
|
|
// &:hover {
|
|
// color: @link-hover-color-alt;
|
|
// }
|
|
// }
|
|
|
|
hr {
|
|
border-color: var(--neutral-30);
|
|
}
|
|
|
|
// TODO: only used on about page. Confirm with UX changes needed
|
|
// .container-small {
|
|
// section .section-row {
|
|
// /* match col-sm-8 */
|
|
// /* @grid-gutter-width is used for margins */
|
|
// max-width: (@screen-sm * (8/12)) - @grid-gutter-width;
|
|
// @media (min-width: @screen-md-min) {
|
|
// max-width: (@screen-md * (8/12)) - @grid-gutter-width;
|
|
// }
|
|
// @media (min-width: @screen-lg-min) {
|
|
// max-width: (@screen-lg * (8/12)) - @grid-gutter-width;
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
/*
|
|
lists
|
|
*/
|
|
|
|
.list-without-style {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|