mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
c7a10558bf
[web] Remove `unified-navigation` references in code GitOrigin-RevId: bbcea3c8013936a8e5eaed18e6121344a3c05e9a
37 lines
792 B
Text
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;
|
|
}
|
|
}
|
|
}
|