Home.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .content-wrapper {
  2. padding: 0 !important;
  3. }
  4. .home {
  5. height: calc(100vh - 96px);
  6. overflow: hidden;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. }
  11. .home .page {
  12. position: relative;
  13. background: hsla(0deg, 0%, 100%, 0.3);
  14. overflow: hidden;
  15. z-index: 0;
  16. margin: -120px auto 0;
  17. overflow: hidden;
  18. min-width: 70%;
  19. border-radius: 15px;
  20. }
  21. .home .page::before {
  22. content: "";
  23. position: absolute;
  24. top: 0;
  25. right: 0;
  26. bottom: 0;
  27. left: 0;
  28. /*filter: blur(5px);*/
  29. margin: -30px;
  30. z-index: -1;
  31. }
  32. .home .page .page-title, .home .page .page-title-sm {
  33. cursor: none;
  34. width: 100%;
  35. height: 80px;
  36. font-size: 35px;
  37. font-weight: 600;
  38. letter-spacing: 10px;
  39. padding-top: 0px;
  40. color: #eee;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. }
  45. .home .page .page-title-sm {
  46. font-size: 30px;
  47. color: #fff;
  48. }
  49. .home .page .page-title-sm span {
  50. border: 3px solid #fff;
  51. padding: 0px 10px 10px 20px;
  52. }
  53. @media (min-width: 768px) {
  54. .home .page .page-title, .home .page .page-title-sm {
  55. height: 130px;
  56. font-size: 65px;
  57. letter-spacing: 10px;
  58. padding-top: 10px;
  59. }
  60. .home .page .page-title-sm {
  61. font-size: 50px;
  62. }
  63. .home .page .page-title-sm span {
  64. border-width: 4px;
  65. }
  66. }
  67. @media (min-width: 1200px) {
  68. .home .page .page-title, .home .page .page-title-sm {
  69. height: 140px;
  70. font-size: 75px;
  71. letter-spacing: 10px;
  72. padding-top: 20px;
  73. }
  74. .home .page .page-title-sm {
  75. font-size: 60px;
  76. }
  77. .home .page .page-title-sm span {
  78. border-width: 5px;
  79. }
  80. }