style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. @keyframes test {
  2. from {
  3. filter:hue-rotate(0);
  4. }
  5. to {
  6. filter:hue-rotate(360deg);
  7. }
  8. }
  9. a{
  10. text-decoration: none;
  11. color: inherit;
  12. }
  13. ul{
  14. margin: 0;
  15. padding: 0;
  16. list-style: none;
  17. }
  18. body{
  19. font-family: 'Inter', sans-serif;
  20. font-size: 14px;
  21. line-height: 18px;
  22. font-weight: 400;
  23. }
  24. .header{
  25. background-color: #0a0a0a;
  26. padding: 15px 0 15px;
  27. font-size: 24px;
  28. line-height: 29px;
  29. color: aliceblue;
  30. }
  31. .container{
  32. max-width: 1800px;
  33. margin: 0 auto;
  34. padding: 0 15px;
  35. }
  36. .nav{
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. }
  41. .menu{
  42. display: flex;
  43. text-align: center;
  44. }
  45. .phone{
  46. text-align: right;
  47. }
  48. .menu-item{
  49. padding-right: 30px;
  50. }
  51. .menu-item:hover,
  52. .phone:hover,
  53. .up-button:hover,
  54. .down-button:hover{
  55. color: red;
  56. transition: 450ms;
  57. }
  58. .headline-pc-img{
  59. max-width: 300px;
  60. max-height: 300px;
  61. animation-name: test;
  62. animation-duration: 6000ms;
  63. animation-iteration-count: infinite;
  64. }
  65. .headline{
  66. background-image: linear-gradient(hsla(0, 0%, 0%, 0.664), #0a009c48), url("/img/bg.jpg");
  67. background-size: cover;
  68. text-align: center;
  69. padding: 20px;
  70. }
  71. .title{
  72. text-transform: uppercase;
  73. margin: 0 0 20px;
  74. color: aliceblue;
  75. font-weight: 700;
  76. font-size: 32px;
  77. line-height: 77px;
  78. }
  79. .up-button,
  80. .down-button{
  81. background-color: rgba(28,28,28,0);
  82. color:aliceblue;
  83. font-size: 24px;
  84. }
  85. .headline-btn{
  86. margin: 25px 0 0 0;
  87. display: inline-block;
  88. font-weight: 700;
  89. font-size: 24px;
  90. line-height: 29px;
  91. text-transform: uppercase;
  92. color: #fff;
  93. background-color: red;
  94. padding: 20px 120px 20px;
  95. border-radius: 30px;
  96. }
  97. .headline-btn:hover{
  98. color: rgb(255,0,0);
  99. background-color: white;
  100. transition: 450ms;
  101. }
  102. .headline-p{
  103. font-size: 18px;
  104. padding-left: 5px;
  105. margin: 2px;
  106. color: aliceblue;
  107. }
  108. .logo-img{
  109. filter: invert(42%) sepia(93%) saturate(0%) hue-rotate(87deg) brightness(119%) contrast(119%);
  110. width: 50px;
  111. height: 50px;
  112. padding-right: 30px;
  113. text-align: left;
  114. }
  115. .catalog-btn{
  116. margin: 5px 0 0 0;
  117. display: inline-block;
  118. font-weight: 100;
  119. font-size: 12px;
  120. line-height: 10px;
  121. text-transform: uppercase;
  122. color: #fff;
  123. background-color: rgb(255,0,0);
  124. padding: 10px 60px 10px;
  125. border-radius: 30px;
  126. }
  127. .catalog-btn:hover{
  128. transition: 350ms;
  129. background-color: rgb(177, 0, 0);
  130. }