Advertisement
arabtion

Untitled

Oct 19th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.90 KB | None | 0 0
  1. *, *:before, *:after {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6.  
  7. html, body {
  8. height: 100%;
  9. }
  10.  
  11. body {
  12. font: 14px/1 'Open Sans', sans-serif;
  13. color: #555;
  14. background: #eee;
  15. }
  16.  
  17. h1 {
  18. padding: 50px 0;
  19. font-weight: 400;
  20. text-align: center;
  21. }
  22.  
  23. p {
  24. margin: 0 0 20px;
  25. line-height: 1.5;
  26. }
  27.  
  28. main {
  29. min-width: 320px;
  30. max-width: 800px;
  31. padding: 50px;
  32. margin: 0 auto;
  33. background: #fff;
  34. }
  35.  
  36. section {
  37. display: none;
  38. padding: 20px 0 0;
  39. border-top: 1px solid #ddd;
  40. }
  41.  
  42. input.input-tabs {
  43. display: none;
  44. }
  45.  
  46. label {
  47. display: inline-block;
  48. margin: 0 0 -1px;
  49. padding: 15px 25px;
  50. font-weight: 600;
  51. text-align: center;
  52. color: #bbb;
  53. border: 1px solid transparent;
  54. }
  55.  
  56. label:before {
  57. font-family: fontawesome;
  58. font-weight: normal;
  59. margin-right: 10px;
  60. }
  61.  
  62. label[for*='1']:before {
  63. content: '\f007';
  64. }
  65.  
  66. label[for*='2']:before {
  67. content: '\f086';
  68. }
  69.  
  70. label[for*='3']:before {
  71. content: '\f03e';
  72. }
  73.  
  74.  
  75. label[for*='4']:before {
  76. content: '\f0c1';
  77. }
  78.  
  79. label[for*='5']:before {
  80. content: '\f002';
  81. }
  82.  
  83. label:hover {
  84. color: #888;
  85. cursor: pointer;
  86. }
  87.  
  88. input:checked + label {
  89. color: #555;
  90. border: 1px solid #ddd;
  91. border-top: 2px solid orange;
  92. border-bottom: 1px solid #fff;
  93.  
  94. }
  95.  
  96. #tab1:checked ~ #content1,
  97. #tab2:checked ~ #content2,
  98. #tab3:checked ~ #content3,
  99. #tab4:checked ~ #content4,
  100. #tab5:checked ~ #content5 {
  101.  
  102. display: block;
  103. }
  104.  
  105. @media screen and (max-width: 650px) {
  106. label {
  107. font-size: 0;
  108. }
  109.  
  110. label:before {
  111. margin: 0;
  112. font-size: 18px;
  113. }
  114.  
  115. main {
  116. padding: 30px 0px;
  117. }
  118.  
  119. h1 {
  120. padding: 20px 0;
  121. }
  122.  
  123. .bttnc i {
  124. font-size: 24px;
  125. padding: 2px 6px;
  126. }
  127.  
  128. .marginlr i:first-of-type, .marginlr i:last-of-type {
  129. font-size: 20px;
  130. margin: 2px 10px;
  131. }
  132. }
  133.  
  134. @media screen and (max-width: 400px) {
  135. label {
  136. padding: 15px;
  137. }
  138. }
  139.  
  140. .item-row {
  141.  
  142. padding: 5px 8px;
  143. border-bottom: 1px solid #eaeaea;
  144. }
  145.  
  146. .item-row:nth-child(even) {
  147. background: #f5f5f5
  148. }
  149.  
  150. .item-row:nth-child(odd) {
  151. background: #FFF
  152. }
  153.  
  154. .zoo {
  155. cursor: pointer;
  156. padding: 2px;
  157. border-radius: 50%;
  158. display: inline-block;
  159. }
  160.  
  161. #ev_user_results {
  162. margin-top: 10px;
  163. }
  164.  
  165. label {
  166. display: inline-block;
  167. margin: 0 0 -1px;
  168. padding: 15px 25px;
  169. font-weight: 600;
  170. text-align: center;
  171. color: #bbb;
  172. border: 1px solid transparent;
  173. }
  174.  
  175. label.ev_container {
  176. margin: 2px;
  177. display: inline-block;
  178. position: relative;
  179. padding: 3px 20px;
  180. cursor: pointer;
  181. font-size: 12px;
  182. -webkit-user-select: none;
  183. -moz-user-select: none;
  184. -ms-user-select: none;
  185. user-select: none;
  186. }
  187.  
  188. .ev_container input {
  189. position: absolute;
  190. opacity: 0;
  191. cursor: pointer;
  192. }
  193.  
  194. .checkmark_radio {
  195. position: absolute;
  196. top: 0;
  197. left: 0;
  198. height: 15px;
  199. width: 15px;
  200. background-color: #eee;
  201. border-radius: 50%;
  202. }
  203.  
  204. .ev_container:hover input ~ .checkmark_radio {
  205. background-color: #ccc;
  206. }
  207.  
  208. .ev_container input:checked ~ .checkmark_radio {
  209. background-color: #555;
  210. }
  211.  
  212. .checkmark_radio:after {
  213. content: " ";
  214. position: absolute;
  215. display: none;
  216. }
  217.  
  218. .ev_container input:checked ~ .checkmark_radio:after {
  219. display: block;
  220. }
  221.  
  222. .ev_container .checkmark_radio:after {
  223. top: 4px;
  224. left: 4px;
  225. width: 7px;
  226. height: 7px;
  227. border-radius: 50%;
  228. background: white;
  229. }
  230.  
  231. .user_item_avatar img {
  232. cursor: default !important;
  233. }
  234.  
  235. .bear-messages, .bear-pic {
  236. padding: 2px;
  237. border-radius: 2px;
  238. margin-left: 2px;
  239. margin-top: -6px;
  240. }
  241.  
  242. .user_item_data p {
  243. margin: 2px;
  244. }
  245.  
  246. .fish-class {
  247. margin: 4px;
  248. }
  249.  
  250. .bttnc i {
  251. font-size: 20px;
  252. padding: 2px 4px;
  253. }
  254.  
  255. .marginlr i:first-of-type, .marginlr i:last-of-type {
  256. font-size: 16px;
  257. margin: 2px 6px;
  258. }
  259.  
  260. .floatleft {
  261. /* float: left; */
  262. }
  263.  
  264. .width100 {
  265. width: 120px;
  266. display: flex;
  267. justify-content: center;
  268. align-items: center;
  269. margin-top: 10px;
  270. }
  271.  
  272. .btnusr {
  273. width: 40%;
  274. margin: 0 10px;
  275. }
  276.  
  277. .message-item {
  278. padding: 2px 10px;
  279. }
  280.  
  281. .pm_list {
  282. margin: 0 -10px;
  283. }
  284.  
  285.  
  286. .button-choose:hover {
  287. letter-spacing: 0.5em;
  288. background-color: #FEB1C0;
  289. }
  290. .button-choose.active {
  291. letter-spacing: 0.5em;
  292. background-color: #F08C99;
  293. }
  294.  
  295. .button-choose {
  296. color: white;
  297. }
  298. button {
  299. height: 4em;
  300.  
  301. padding: 1.5em auto;
  302. margin: 1em auto;
  303. background-color: #9b9b9b;
  304. border: none;
  305. border-radius: 3px;
  306. text-transform: uppercase;
  307. letter-spacing: 0.3em;
  308. transition: all 0.2s cubic-bezier(.4,0,.2,1);
  309. }
  310.  
  311. .btns_2{
  312. width: 48%;
  313. }
  314.  
  315. .btns_3{
  316. width: 32%;
  317. }
  318.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement