errorpages.less 845 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // Error pages
  3. // --------------------------------------------------
  4. .error-page {
  5. text-align: center;
  6. .error-icon {
  7. padding-bottom: @line-height-computed;
  8. .material-icons {
  9. font-size: @font-size-large * 4;
  10. }
  11. }
  12. .lead {
  13. font-size: @font-size-large;
  14. }
  15. /* Small devices (tablets, 768px and up) */
  16. @media (min-width: @screen-sm-min) {
  17. .error-icon {
  18. .material-icons {
  19. .opacity(0.3);
  20. font-size: @font-size-large * 5;
  21. }
  22. }
  23. .lead, .lead p {
  24. font-size: @font-size-large * 1.4;
  25. }
  26. }
  27. /* Medium devices (desktops, 992px and up) */
  28. @media (min-width: @screen-md-min) {
  29. .error-icon {
  30. .material-icons {
  31. font-size: @font-size-large * 7;
  32. }
  33. }
  34. p {
  35. font-size: @font-size-large;
  36. font-weight: @weight-light;
  37. }
  38. }
  39. }