machiamatinu

Untitled

Dec 27th, 2021 (edited)
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. .bg-img {
  2. background: url("../../general/images/rules.jpg");
  3. background-size: cover;
  4. background-position: center;
  5.  
  6. width: 100%;
  7. height: 250px;
  8.  
  9. margin-top: 74px;
  10.  
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16.  
  17. .rulesframe {
  18. border: none;
  19. border-radius: 5px;
  20.  
  21. width: 100%;
  22. height: 100vh;
  23. }
  24.  
  25. @media only screen and (max-height: 700px) {
  26. .bg-img {
  27. height: 150px;
  28. }
  29. }
  30. .bg-img {
  31. background: url("../../general/images/bg.png");
  32. background-size: cover;
  33. background-position: center top;
  34.  
  35. width: 100%;
  36. height: 600px;
  37. }
  38.  
  39. .bg-div {
  40. background: var(--main-color-3);
  41.  
  42. width: 100%;
  43. height: 200px;
  44.  
  45. margin-top: 100px;
  46.  
  47. transform: rotate(2deg) scale(1.5);
  48. }
  49.  
  50. .bg-div-wrapper {
  51. width: 100%;
  52. height: 400px;
  53.  
  54. position: relative;
  55. margin-top: -100px;
  56.  
  57. overflow: hidden;
  58. z-index: 1;
  59. }
  60.  
  61. .page {
  62. top: 70px;
  63. }
  64.  
  65. .info {
  66. background: var(--main-color-3);
  67. border-radius: 9px;
  68. -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  69. -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  70. box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  71.  
  72. width: 300px;
  73. padding: 25px;
  74.  
  75. margin-top: 220px;
  76. margin-bottom: 40px;
  77.  
  78. display: flex;
  79. flex-direction: column;
  80. align-items: center;
  81.  
  82. text-align: center;
  83. }
  84.  
  85. .info-logo {
  86. -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.13));
  87. filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.13));
  88.  
  89. width: 95px;
  90. height: 95px;
  91.  
  92. margin-top: -65px;
  93. }
  94.  
  95. .info-logotext {
  96. height: 60px;
  97. width: auto;
  98. }
  99.  
  100. .telegram-info {
  101. background: var(--main-color-3);
  102. -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
  103. -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
  104. box-shadow: var(--box-box-shadow);
  105. --box-box-shadow: 0px 0px 20px 2px rgba(218, 222, 227);
  106. border-radius: 30px;
  107.  
  108. width: 100%;
  109. box-sizing: border-box;
  110. padding: 20px;
  111.  
  112. cursor: pointer;
  113. user-select: none;
  114.  
  115. transform: scale(1);
  116. transition: transform 0.2s ease-in-out;
  117. }
  118.  
  119. .telegram-info:hover {
  120. transform: scale(1.05);
  121. }
  122.  
  123. .telegram-info-wrapper {
  124. width: 100%;
  125.  
  126. display: flex;
  127. flex-direction: row;
  128. align-items: center;
  129. justify-content: flex-start;
  130. }
  131.  
  132. .telegram-info-logo {
  133. border-radius: 100px;
  134.  
  135. width: 50px;
  136. height: 50px;
  137. margin-right: 10px;
  138. }
  139.  
  140. .telegram-info-wrapper2 {
  141. display: flex;
  142. flex-direction: row;
  143. align-items: center;
  144. justify-content: space-between;
  145. }
  146.  
  147. .telegram-info-wrapper3 {
  148. display: flex;
  149. flex-direction: column;
  150. align-items: flex-start;
  151. }
  152.  
  153. .telegram-info-telegram {
  154. width: 20px;
  155. height: 20px;
  156. }
  157.  
  158. .news {
  159. background: var(--main-color-3);
  160. border-radius: 9px;
  161. -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  162. -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  163. box-shadow: var(--box-box-shadow);
  164. --box-box-shadow: 0px 0px 20px 1px rgba(218, 222, 227);
  165.  
  166. width: calc(100% - 40px);
  167. max-width: 500px;
  168. box-sizing: border-box;
  169. margin-bottom: 40px;
  170. margin-left: 20px;
  171. margin-right: 20px;
  172.  
  173. display: flex;
  174. flex-direction: row;
  175. align-items: center;
  176. justify-content: space-between;
  177.  
  178. padding: 15px;
  179. }
  180.  
  181. .news-wrapper {
  182. display: flex;
  183. flex-direction: row;
  184. align-items: center;
  185. }
  186.  
  187. .news-wrapper2 {
  188. display: flex;
  189. flex-direction: column;
  190. }
  191.  
  192. .news img {
  193. width: 33px;
  194. height: 33px;
  195.  
  196. padding-right: 15px;
  197. padding-left: 7px;
  198. }
  199.  
  200. .news a {
  201. padding-right: 7px;
  202. }
  203.  
  204. @media only screen and (max-width: 700px) {
  205. .bg-img {
  206. height: 300px;
  207. }
  208.  
  209. .info {
  210. margin-top: 80px;
  211. }
  212. }
Add Comment
Please, Sign In to add comment