error.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /***
  2. Error Pages
  3. ***/
  4. /* 404 page option #1 */
  5. .page-404 {
  6. text-align: center;
  7. }
  8. .page-404 .number {
  9. display: inline-block;
  10. letter-spacing: -10px;
  11. margin-top: 0px;
  12. line-height: 128px;
  13. font-size: 158px;
  14. font-weight: 300;
  15. color: #7bbbd6;
  16. text-align: right;
  17. }
  18. .page-404 .details {
  19. margin-left: 40px;
  20. display: inline-block;
  21. padding-top: 0px;
  22. text-align: left;
  23. }
  24. /* 500 page option #1 */
  25. .page-500 {
  26. text-align: center;
  27. }
  28. .page-500 .number {
  29. display: inline-block;
  30. letter-spacing: -10px;
  31. line-height: 128px;
  32. font-size: 158px;
  33. font-weight: 300;
  34. color: #ec8c8c;
  35. text-align: right;
  36. }
  37. .page-500 .details {
  38. margin-left: 40px;
  39. display: inline-block;
  40. text-align: left;
  41. }
  42. /* 404 page option #2*/
  43. .page-404-full-page {
  44. padding: 20px;
  45. background-color: #fafafa !important;
  46. }
  47. .page-404-full-page .details input {
  48. background-color: #ffffff;
  49. }
  50. .page-404-full-page .page-404 {
  51. margin-top: 100px;
  52. }
  53. /* 500 page option #2*/
  54. .page-500-full-page {
  55. padding: 20px;
  56. background-color: #fafafa !important;
  57. }
  58. .page-500-full-page .details input {
  59. background-color: #ffffff;
  60. }
  61. .page-500-full-page .page-500 {
  62. margin-top: 100px;
  63. }
  64. /* 404 page option #3*/
  65. .page-404-3 {
  66. background: #000 !important ;
  67. }
  68. .page-404-3 .page-inner img {
  69. right: 0;
  70. bottom: 0;
  71. z-index: -1;
  72. position: absolute;
  73. }
  74. .page-404-3 .error-404 {
  75. color: #fff;
  76. text-align: left;
  77. padding: 70px 20px 0;
  78. }
  79. .page-404-3 h1 {
  80. color: #fff;
  81. font-size: 130px;
  82. line-height: 160px;
  83. }
  84. .page-404-3 h2 {
  85. color: #fff;
  86. font-size: 30px;
  87. margin-bottom: 30px;
  88. }
  89. .page-404-3 p {
  90. color: #fff;
  91. font-size: 16px;
  92. }
  93. @media (max-width: 480px) {
  94. .page-404 .number,
  95. .page-500 .number,
  96. .page-404 .details,
  97. .page-500 .details {
  98. text-align: center;
  99. margin-left: 0px;
  100. }
  101. .page-404-full-page .page-404 {
  102. margin-top: 30px;
  103. }
  104. .page-404-3 .error-404 {
  105. text-align: left;
  106. padding-top: 10px;
  107. }
  108. .page-404-3 .page-inner img {
  109. right: 0;
  110. bottom: 0;
  111. z-index: -1;
  112. position: fixed;
  113. }
  114. }