Home.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .content-wrapper {
  2. padding: 0 !important; }
  3. .home {
  4. height: calc(100vh - 48px *2);
  5. overflow: hidden; }
  6. .home .page {
  7. position: relative;
  8. background: rgba(255, 255, 255, 0.3);
  9. overflow: hidden;
  10. z-index: 0;
  11. margin: 10% auto;
  12. overflow: hidden;
  13. min-width: 70%;
  14. border-radius: 15px; }
  15. .home .page::before {
  16. content: '';
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. bottom: 0;
  21. left: 0;
  22. filter: blur(5px);
  23. margin: -30px;
  24. z-index: -1; }
  25. .home .page .page-title, .home .page .page-title-sm {
  26. cursor: none;
  27. width: 100%;
  28. height: 100px;
  29. font-size: 35px;
  30. font-weight: 600;
  31. letter-spacing: 2px;
  32. padding-top: 0px;
  33. color: #eee;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center; }
  37. .home .page .page-title-sm {
  38. font-size: 30px;
  39. color: #fff; }
  40. @media (min-width: 768px) {
  41. .home .page .page-title, .home .page .page-title-sm {
  42. height: 140px;
  43. font-size: 55px;
  44. letter-spacing: 10px;
  45. padding-top: 30px; }
  46. .home .page .page-title-sm {
  47. font-size: 50px; } }
  48. @media (min-width: 1200px) {
  49. .home .page .page-title, .home .page .page-title-sm {
  50. height: 180px;
  51. font-size: 95px;
  52. letter-spacing: 10px;
  53. padding-top: 40px; }
  54. .home .page .page-title-sm {
  55. font-size: 80px; } }