layout.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @import "normalize-5.0.0.css";
  2. /*! Simple HttpErrorPages | MIT X11 License | https://github.com/AndiDittrich/HttpErrorPages */
  3. html,body {
  4. width: 100%;
  5. height: 100%;
  6. background-color: #21232a;
  7. }
  8. body {
  9. color: #fff;
  10. text-align: center;
  11. text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
  12. padding: 0px;
  13. min-height: 100%;
  14. -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
  15. box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
  16. display: table;
  17. font-family: "Open Sans", Arial, sans-serif;
  18. }
  19. h1{
  20. font-family: inherit;
  21. font-weight: 500;
  22. line-height: 1.1;
  23. color: inherit;
  24. font-size: 36px;
  25. small{
  26. font-size: 68%;
  27. font-weight: 400;
  28. line-height: 1;
  29. color: #777777;
  30. }
  31. }
  32. a{
  33. text-decoration: none;
  34. color: #ffffff;
  35. font-size: inherit;
  36. border-bottom: dotted 1px #707070;
  37. }
  38. .lead {
  39. color: #c0c0c0;
  40. font-size: 21px;
  41. line-height: 1.4;
  42. }
  43. .cover {
  44. display: table-cell;
  45. vertical-align: middle;
  46. padding: 0 20px;
  47. }
  48. footer{
  49. position: fixed;
  50. width: 100%;
  51. height: 40px;
  52. left: 0px;
  53. bottom: 0px;
  54. color: #a0a0a0;
  55. font-size: 14px;
  56. }