mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
176c0f3742
Start removing is-overleaf from CSS GitOrigin-RevId: fa37bedd857fc492f8d2e1df1758e2e5f924f000
40 lines
705 B
Text
40 lines
705 B
Text
.full-height {
|
|
height: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.error-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.error-container.full-height {
|
|
margin-top: -(@header-height + @content-margin-vertical) / 2;
|
|
}
|
|
|
|
.error-details {
|
|
flex: 1 1 50%;
|
|
padding: @line-height-computed * 2;
|
|
}
|
|
|
|
.error-status {
|
|
font-family: @font-family-serif;
|
|
margin-bottom: (@line-height-computed / 4);
|
|
color: @gray-dark;
|
|
font-size: @font-size-h1;
|
|
}
|
|
.error-description {
|
|
font-family: @font-family-serif;
|
|
font-size: @font-size-h3;
|
|
color: @gray;
|
|
margin-bottom: @line-height-computed * 2;
|
|
}
|
|
|
|
.error-btn {
|
|
.btn;
|
|
.btn-primary;
|
|
display: block;
|
|
@media (min-width: @screen-sm-min) {
|
|
display: inline-block;
|
|
}
|
|
}
|