404.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .navbar-toggler {
  2. display: none;
  3. }
  4. .notFound {
  5. padding-top: 5rem;
  6. text-align: center;
  7. padding-bottom: 8rem;
  8. }
  9. .notFound img {
  10. height: 500px;
  11. }
  12. .notFound h1 {
  13. font-style: italic;
  14. }
  15. .notFound .message {
  16. position: absolute;
  17. max-width: 20rem;
  18. top: 40%;
  19. left: 30%;
  20. }
  21. /* ============= Device specific fixes ======= */
  22. /* Large screens such as TV */
  23. @media only screen and (min-width: 1824px) {
  24. }
  25. /* Extra large devices (large desktops, 1200px and up) */
  26. @media (max-width: 1400px) {
  27. }
  28. @media (max-width: 1200px) {
  29. .notFound .message {
  30. top: 50%;
  31. left: 25%;
  32. }
  33. }
  34. /* IPad Pro */
  35. @media (max-width: 1024px) {
  36. }
  37. /* Large devices (desktops, 992px and up) */
  38. @media (max-width: 992px) {
  39. .notFound .message {
  40. top: 46%;
  41. left: 25%;
  42. }
  43. }
  44. /* Medium devices (tablets, 768px and up) */
  45. @media only screen and (max-width: 768px) {
  46. .notFound img {
  47. height: 400px;
  48. }
  49. .notFound .message {
  50. top: 20rem;
  51. left: 4rem;
  52. }
  53. }
  54. /* Small devices (landscape phones, 576px and up) */
  55. @media only screen and (max-width: 576px) {
  56. .notFound img {
  57. height: 250px;
  58. }
  59. .notFound .message {
  60. top: 20rem;
  61. left: 2rem;
  62. }
  63. }
  64. /* iPhoneX, iPhone 6,7,8 */
  65. @media only screen and (max-width: 375px) {
  66. }
  67. /* Galaxy S5, Moto G4 */
  68. @media only screen and (max-width: 360px) {
  69. }
  70. /* iPhone 5 or before */
  71. @media only screen and (max-width: 320px) {
  72. }