overleaf/services/web/frontend/stylesheets/core/page.less
Jessica Lawshe caf8a57f47 Merge pull request #12383 from overleaf/jel-card-color
[web] Update default card color for new CMS page style

GitOrigin-RevId: bb74164f8e29d32e3d01418e77e6c370b281a3d7
2023-04-05 08:02:47 +00:00

37 lines
803 B
Text

.page-style {
background-color: @white;
a:not(.btn) {
text-decoration: underline;
}
.page-header {
border-bottom: none;
margin: 0;
margin-top: 60px !important;
padding: 0;
text-align: center;
}
.card {
background-color: @card-gray-bg-color;
border-radius: 24px;
}
video {
clip-path: inset(0 0); // fix Safari bug that will sometimes add border
}
.section-row {
margin: 0 auto;
/* match .col-sm-12 */
/* @grid-gutter-width is used for margins */
max-width: (@screen-sm) - @grid-gutter-width!important;
@media (min-width: @screen-md-min) {
max-width: (@screen-md) - @grid-gutter-width!important;
}
@media (min-width: @screen-lg-min) {
max-width: (@screen-lg) - @grid-gutter-width!important;
}
}
}