Advertisement
meowmoriaoi

tas CSS

Dec 28th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6.  
  7. .bcw {
  8. background: #fff;
  9. }
  10.  
  11. .b1 {
  12. border: 1px solid #dadada
  13. }
  14.  
  15. .bt1 {
  16. border-top: 1px solid #dadada;
  17. }
  18.  
  19. .bx1 {
  20. border-left: 1px solid #dadada;
  21. border-right: 1px solid #dadada;
  22. }
  23.  
  24. .br1 {
  25. border-right: 1px solid #dadada;
  26. }
  27.  
  28. .ls1 {
  29. letter-spacing: 1px;
  30. }
  31.  
  32. .tc {
  33. text-align: center;
  34. }
  35.  
  36. .mt1 {
  37. margin-top: 10px;
  38. }
  39.  
  40. .mt2 {
  41. margin-top: 20px;
  42. }
  43.  
  44. .mt3 {
  45. margin-top: 30px;
  46. }
  47.  
  48. .mxa {
  49. margin-left: auto;
  50. margin-right: auto;
  51. }
  52.  
  53. .dib {
  54. display: inline-block;
  55. }
  56.  
  57. .wpr {
  58. max-width: 1024px;
  59. width: 95%;
  60. }
  61.  
  62. .flx {
  63. display: flex;
  64. flex-wrap: wrap
  65. }
  66.  
  67. img {
  68. display: block;
  69. width: 100%;
  70. }
  71.  
  72. body {
  73. background-color: #f2f2f2;
  74. font-family: 'Montserrat', sans-serif;
  75. color: #000;
  76. }
  77.  
  78. header {
  79. background-color: #33363b;
  80. padding: 3px 0;
  81. }
  82.  
  83. h1 {
  84. color: #fff;
  85. font-family: 'Play', sans-serif;
  86. font-size: 35px
  87. }
  88.  
  89. .kr {
  90. width: 100%;
  91. }
  92.  
  93. .kn {
  94. width: 100%;
  95. }
  96.  
  97. article {
  98. border-radius: 5px 5px 0 0;
  99. padding: 10px 15px;
  100. }
  101.  
  102. .foto {
  103. padding: 6px;
  104. border-radius: 3px;
  105. }
  106.  
  107. .tht, .thb {
  108. margin: 2px;
  109. padding: 3px;
  110. cursor: pointer;
  111. }
  112.  
  113. .tht {
  114. width: calc(90%/3);
  115. }
  116.  
  117. .thb {
  118. width: calc(75%/3);
  119. }
  120.  
  121. h2, h3, h4, b {
  122. font-weight: 600;
  123. }
  124.  
  125. h2 {
  126. font-size: 18px;
  127. line-height: 1.428
  128. }
  129.  
  130. p, h3, h4 {
  131. letter-spacing: 1px;
  132. line-height: 30px;
  133. }
  134.  
  135. p, h4 {
  136. font-size: 14px;
  137. }
  138.  
  139. p {
  140. font-weight: 400;
  141. margin-bottom: 20px;
  142. }
  143.  
  144. h3 {
  145. font-size: 16px;
  146. }
  147.  
  148. .hrg {
  149. font-weight: 400;
  150. font-size: 22px;
  151. margin: 0 5px 0 10px;
  152. }
  153.  
  154. .crt {
  155. font-weight: 300;
  156. font-size: 12px;
  157. align-items: center;
  158. justify-content: center;
  159. display: flex;
  160. text-decoration: line-through;
  161. }
  162.  
  163. .dkn {
  164. font-weight: 300;
  165. font-size: 10px;
  166. color: white;
  167. background-color: #fa591d;
  168. padding: 3px;
  169. }
  170.  
  171. .sct {
  172. position: relative;
  173. font-size: 14px;
  174. font-weight: 600;
  175. }
  176.  
  177. .sct span {
  178. position: relative;
  179. padding-right: 7px;
  180. background-color: #fff;
  181. z-index:1
  182. }
  183.  
  184. .sct:after {
  185. content: "";
  186. position: absolute;
  187. top: 50%;
  188. left: 0;
  189. width: 100%;
  190. height: 1px;
  191. background-color: #dadada;
  192. }
  193.  
  194. .ftr {
  195. border-radius: 10px;
  196. padding: 20px;
  197. }
  198.  
  199. .fti {
  200. width: 100%;
  201. padding: 0 15px;
  202. }
  203.  
  204. .wdgt {
  205. width: 100%;
  206. padding: 20px 0px;
  207. }
  208.  
  209. .wdgt span {
  210. display: inline-block;
  211. width: 72px;
  212. margin: 3px 2px;
  213. border-radius: 2px;
  214. padding: 3px;
  215. }
  216.  
  217. .shr {
  218. padding-top: 20px;
  219. border-bottom: 1px solid #dadada;
  220. }
  221.  
  222. .shr span {
  223. width: 25%;
  224. padding: 5px;
  225. cursor: pointer;
  226. }
  227.  
  228. .shr span:hover {
  229. background-color: #dadada;
  230. }
  231.  
  232. @media (min-width:576px) {
  233. .kr {
  234. width: 43%;
  235. }
  236.  
  237. .kn {
  238. width: 57%;
  239. }
  240.  
  241. article, .shr {
  242. margin-left: 10px;
  243. }
  244. .fti, .wdgt {
  245. width: 33.333333%;
  246. }
  247. }
  248.  
  249. @media (min-width:1200px) {
  250. .tht {
  251. width: calc(85%/3);
  252. }
  253.  
  254. .thb {
  255. width: calc(60%/3);
  256. }
  257. }
  258.  
  259. .scmd {
  260. height: 50px;
  261. }
  262.  
  263. .scmd span {
  264. display: inline-block;
  265. margin-right: 10px;
  266. }
  267.  
  268. a.social {
  269. display: inline-block;
  270. height: 50px;
  271. vertical-align: middle;
  272. padding-top: 10px;
  273. margin-right: 10px;
  274. }
  275.  
  276. .btn {
  277. width: 100%;
  278. border-radius: 3px;
  279. background-color: #fa591d;
  280. border: none;
  281. color: white;
  282. padding: 10px 0px;
  283. cursor: pointer;
  284. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement