Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

404.css 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. * {
  2. -webkit-box-sizing: border-box;
  3. box-sizing: border-box;
  4. }
  5. body {
  6. padding: 0;
  7. margin: 0;
  8. }
  9. #notfound {
  10. position: relative;
  11. height: 100vh;
  12. }
  13. #notfound .notfound {
  14. position: absolute;
  15. left: 50%;
  16. top: 50%;
  17. -webkit-transform: translate(-50%, -50%);
  18. -ms-transform: translate(-50%, -50%);
  19. transform: translate(-50%, -50%);
  20. }
  21. .notfound {
  22. max-width: 920px;
  23. width: 100%;
  24. line-height: 1.4;
  25. text-align: center;
  26. padding-left: 15px;
  27. padding-right: 15px;
  28. }
  29. .notfound .notfound-404 {
  30. position: absolute;
  31. height: 100px;
  32. top: 0;
  33. left: 50%;
  34. -webkit-transform: translateX(-50%);
  35. -ms-transform: translateX(-50%);
  36. transform: translateX(-50%);
  37. z-index: -1;
  38. }
  39. .notfound .notfound-404 h1 {
  40. font-family: 'Maven Pro', sans-serif;
  41. color: #ececec;
  42. font-weight: 900;
  43. font-size: 276px;
  44. margin: 0px;
  45. position: absolute;
  46. left: 50%;
  47. top: 50%;
  48. -webkit-transform: translate(-50%, -50%);
  49. -ms-transform: translate(-50%, -50%);
  50. transform: translate(-50%, -50%);
  51. }
  52. .notfound h2 {
  53. font-family: 'Maven Pro', sans-serif;
  54. font-size: 46px;
  55. color: #000;
  56. font-weight: 900;
  57. text-transform: uppercase;
  58. margin: 0px;
  59. }
  60. .notfound p {
  61. font-family: 'Maven Pro', sans-serif;
  62. font-size: 16px;
  63. color: #000;
  64. font-weight: 400;
  65. text-transform: uppercase;
  66. margin-top: 15px;
  67. }
  68. .notfound a {
  69. font-family: 'Maven Pro', sans-serif;
  70. font-size: 14px;
  71. text-decoration: none;
  72. text-transform: uppercase;
  73. background: #189cf0;
  74. display: inline-block;
  75. padding: 16px 38px;
  76. border: 2px solid transparent;
  77. border-radius: 40px;
  78. color: #fff;
  79. font-weight: 400;
  80. -webkit-transition: 0.2s all;
  81. transition: 0.2s all;
  82. }
  83. .notfound a:hover {
  84. background-color: #fff;
  85. border-color: #189cf0;
  86. color: #189cf0;
  87. }
  88. @media only screen and (max-width: 480px) {
  89. .notfound .notfound-404 h1 {
  90. font-size: 162px;
  91. }
  92. .notfound h2 {
  93. font-size: 26px;
  94. }
  95. }