12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // Error pages
- // --------------------------------------------------
- .error-page {
- text-align: center;
- .error-icon {
- padding-bottom: @line-height-computed;
- .material-icons {
- font-size: @font-size-large * 4;
- }
- }
- .lead {
- font-size: @font-size-large;
- }
- /* Small devices (tablets, 768px and up) */
- @media (min-width: @screen-sm-min) {
- .error-icon {
- .material-icons {
- .opacity(0.3);
- font-size: @font-size-large * 5;
- }
- }
- .lead, .lead p {
- font-size: @font-size-large * 1.4;
- }
- }
- /* Medium devices (desktops, 992px and up) */
- @media (min-width: @screen-md-min) {
- .error-icon {
- .material-icons {
- font-size: @font-size-large * 7;
- }
- }
- p {
- font-size: @font-size-large;
- font-weight: @weight-light;
- }
- }
- }
|