overleaf/services/web/frontend/stylesheets/core/page.less
Jessica Lawshe c7a10558bf Merge pull request #10830 from overleaf/jel-remove-test-show-unified-navigation
[web] Remove `unified-navigation` references in code

GitOrigin-RevId: bbcea3c8013936a8e5eaed18e6121344a3c05e9a
2022-12-13 09:04:28 +00:00

37 lines
792 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: @blue-10;
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;
}
}
}