g3x0

RegExp Chall #1 - Source

Dec 24th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 6.66 KB | None | 0 0
  1. *
  2. {
  3.     transition: background 0.2s;
  4. }
  5. ::selection
  6. {
  7.     background: #1C90E4;
  8.     color: #fff;
  9. }
  10. ::-moz-selection
  11. {
  12.     background: #1C90E4;
  13.     color: #fff;
  14. }
  15. body
  16. {
  17.     background-color: #333;
  18.     font-family: 'Open Sans', Arial, sans-serif;
  19.     font-size: 16px;
  20.     color: #fff;
  21. }
  22. code,
  23. input,
  24. textarea
  25. {
  26.     font-family: 'Droid Sans Mono', 'Monaco', 'Consolas', monospace;
  27.     font-size: 14px;
  28. }
  29. .unpadded-elements > div
  30. {
  31.     padding: 0;
  32. }
  33. .tooltip
  34. {
  35.     font-family: 'Open Sans', Arial, sans-serif;
  36. }
  37. .btn
  38. {
  39.     border: none;
  40.     border-radius: 0;
  41.     outline: none !important;
  42. }
  43. .btn-primary
  44. {
  45.     background-color: #1C90E4;
  46.     text-shadow: 1px 1px 0 #035189;
  47.     opacity: 0.9;
  48. }
  49. .btn-primary:hover
  50. {
  51.     opacity: 1;
  52. }
  53. .logo-block
  54. {
  55.     height: 300px;
  56.     width: 100%;
  57.     position: relative;
  58.     float: left;
  59. }
  60. .logo-block > div
  61. {
  62.     position: relative;
  63.     height: 300px;
  64.     padding: 20px;
  65.     font-size: 13px;
  66.     color: #888;
  67. }
  68. .logo-block .description
  69. {
  70.     font-size: 12px;
  71.     color: #ccc;
  72. }
  73. .logo-block .about
  74. {
  75.     margin-top: 20px;
  76. }
  77. .logo-block a
  78. {
  79.     color: #1C90E4;
  80.     opacity: 0.8;
  81.     text-decoration: none;
  82. }
  83. .logo-block a:hover
  84. {
  85.     opacity: 1;
  86. }
  87. .code-block
  88. {
  89.     height: 300px;
  90.     width: 100%;
  91.     position: relative;
  92.     float: left;
  93.     font-size: 0;
  94.     border: 1px solid #2A2A2A;
  95.     border-collapse: collapse;
  96. }
  97. .code-block.disabled
  98. {
  99.     display: none;
  100. }
  101. .code-block textarea
  102. {
  103.     width: 100%;
  104.     height: 300px;
  105.     border: none;
  106.     padding: 20px;
  107.     padding-bottom: 40px;
  108.     background-color: #222;
  109.     resize: none;
  110.     color: #ccc;
  111. }
  112. .code-block.has-key textarea
  113. {
  114.     height: 260px;
  115.     padding-bottom: 20px;
  116. }
  117. .code-block.has-key input
  118. {
  119.     background-color: #1F1F1F;
  120.     height: 40px;
  121.     line-height: 40px;
  122.     width: 100%;
  123.     border: none;
  124.     padding: 0 20px;
  125.     color: #ccc;
  126. }
  127. .code-block input:hover,
  128. .code-block textarea:hover
  129. {
  130.     background-color: #1c1c1c;
  131. }
  132. .code-block input:focus,
  133. .code-block textarea:focus
  134. {
  135.     color: #1C90E4;
  136.     outline: none;
  137.     background-color: #111;
  138.     box-shadow: inset 0 -3px 10px 2px #0f0f0f;
  139. }
  140. .code-block.hashes
  141. {
  142.     background-color: #1F1F1F;
  143.     font-size: 12px;
  144.     color: #888;
  145.     overflow: auto;
  146. }
  147. .code-block.hashes .block-tools
  148. {
  149.     top: 0;
  150.     bottom: auto;
  151. }
  152. .code-block.hashes .table
  153. {
  154.     display: block;
  155.     width: 100%;
  156.     height: 258px;
  157.     overflow: scroll;
  158.     margin: 0;
  159.     padding-bottom: 5px;
  160. }
  161. .code-block.hashes thead th
  162. {
  163.     border-bottom: 2px solid #333;
  164.     font-weight: bold;
  165.     color: #888;
  166.     text-transform: uppercase;
  167.     font-size: 10px;
  168.     padding: 5px 10px;
  169.     white-space: nowrap;
  170.     width: 100%;
  171. }
  172. .code-block.hashes .algorithm
  173. {
  174.     width: 130px;
  175. }
  176. .code-block.hashes tbody td
  177. {
  178.     padding: 3px 10px;
  179.     border: none;
  180.     white-space: nowrap;
  181. }
  182. .code-block.hashes tbody tr:nth-child(even) td
  183. {
  184.     background-color: #242424;
  185. }
  186. .code-block.hashes tbody td code
  187. {
  188.     display: block;
  189.     background: none;
  190.     color: #bbb;
  191.     line-height: 18px;
  192.     max-width: 100%;
  193.     white-space: nowrap;
  194. }
  195. .code-block .description
  196. {
  197.     position: absolute;
  198.     height: 0;
  199.     width: 0;
  200.     left: -5000;
  201.     top: -5000;
  202. }
  203. .underline-icon
  204. {
  205.     display: inline-block;
  206.     height: 15px;
  207.     width: 15px;
  208. }
  209. .underline-icon span
  210. {
  211.     background-color: #888;
  212.     display: inline-block;
  213.     width: 14px;
  214.     height: 3px;
  215. }
  216. .block-tools
  217. {
  218.     font-size: 0;
  219.     position: absolute;
  220.     bottom: 10px;
  221.     right: 10px;
  222. }
  223. .has-key .block-tools
  224. {
  225.     bottom: 5px;
  226. }
  227. .block-tools li
  228. {
  229.     display: none;
  230.     font-size: 15px;
  231.     color: #888;
  232.     cursor: pointer;
  233.     line-height: 20px;
  234.     padding: 3px 5px 5px;
  235.     border-radius: 3px;
  236. }
  237. .block-tools li:hover
  238. {
  239.     color: #fff;
  240.     background-color: #333;
  241. }
  242. .block-tools li:hover span
  243. {
  244.     background-color: #fff;
  245. }
  246. .block-tools.focused li,
  247. .code-block:hover .block-tools li
  248. {
  249.     display: inline-block;
  250. }
  251. .block-tools li.block-label
  252. {
  253.     display: inline-block;
  254.     cursor: default;
  255.     color: #888;
  256.     font-size: 12px;
  257.     background: none;
  258. }
  259. .block-tools .tooltip .tooltip-inner
  260. {
  261.     border-radius: 0;
  262. }
  263. .nicescroll-rails.focused > div
  264. {
  265.     background-color: #1C90E4 !important;
  266. }
  267. .buttons-block
  268. {
  269.     position: absolute;
  270.     right: 20px;
  271.     bottom: 20px;
  272. }
  273. #execute
  274. {
  275.     font-size: 16px;
  276. }
  277. #execute i
  278. {
  279.     font-size: 20px;
  280. }
  281. #execute:active
  282. {
  283.     margin-bottom: -2px;
  284. }
  285. #execute:active i
  286. {
  287.     color: #000;
  288. }
  289. #settings-btn
  290. {
  291.     font-size: 14px;
  292.     text-decoration: none;
  293.     color: #888;
  294. }
  295. #settings-btn:hover
  296. {
  297.     color: #aaa;
  298. }
  299. #settings-wrapper
  300. {
  301.     display: none;
  302.     position: fixed;
  303.     top: 0;
  304.     left: 0;
  305.     right: 0;
  306.     bottom: 0;
  307.     background-color: #111;
  308.     background-color: rgba(0, 0, 0, 0.7);
  309.     padding: 30px;
  310.     z-index: 10;
  311. }
  312. #settings
  313. {
  314.     background-color: #222;
  315.     max-width: 600px;
  316.     margin: 0 auto;
  317.     padding: 20px;
  318.     box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.5);
  319.     position: relative;
  320.     border-radius: 3px;
  321. }
  322. #settings h4
  323. {
  324.     font-size: 22px;
  325.     padding-bottom: 15px;
  326.     border-bottom: 2px solid #1C90E4;
  327.     margin-bottom: 15px;
  328.     font-weight: 300;
  329. }
  330. #settings h5
  331. {
  332.     font-size: 16px;
  333.     padding-bottom: 10px;
  334.     border-bottom: 2px solid #444;
  335.     color: #ddd;
  336. }
  337. #settings .checklist
  338. {
  339.     font-size: 0;
  340. }
  341. #settings .checklist li
  342. {
  343.     display: inline-block;
  344.     font-size: 14px;
  345.     width: 25%;
  346.     padding: 10px 15px;
  347.     background-color: #1d1d1d;
  348.     color: #fff;
  349.     cursor: pointer;
  350. }
  351. #settings .checklist.realtime li
  352. {
  353.     width: 100%;
  354. }
  355. #settings .checklist li:hover
  356. {
  357.     background-color: #333;
  358. }
  359. #settings .checklist li i
  360. {
  361.     font-size: 16px;
  362.     width: 20px;
  363.     color: #444;
  364. }
  365. #settings .checklist li:hover i,
  366. #settings .checklist li.enabled i
  367. {
  368.     color: #76B011;
  369. }
  370. #settings .checklist li.enabled:hover i
  371. {
  372.     color: #888;
  373. }
  374. #settings hr
  375. {
  376.     background-color: #444;
  377.     height: 2px;
  378.     border: 0;
  379.     margin: 15px 0;
  380. }
  381. #settings .info
  382. {
  383.     font-size: 14px;
  384.     color: #aaa;
  385.     font-style: italic;
  386. }
  387. #settings .close
  388. {
  389.     position: absolute;
  390.     top: 15px;
  391.     right: 15px;
  392.     color: #666;
  393.     opacity: 1;
  394.     text-shadow: none;
  395. }
  396. #settings .close:hover
  397. {
  398.     color: #bbb;
  399. }
  400. #settings .color-list
  401. {
  402.     font-size: 0;
  403.     margin: 0 -5px;
  404. }
  405. #settings .color-list li
  406. {
  407.     display: inline-block;
  408.     margin: 10px 5px;
  409.     width: 32px;
  410.     height: 32px;
  411.     border-radius: 2px;
  412.     cursor: pointer;
  413. }
  414. #settings .color-list li i
  415. {
  416.     color: #fff;
  417.     font-size: 18px;
  418.     line-height: 32px;
  419.     width: 32px;
  420.     text-align: center;
  421.     opacity: 0;
  422. }
  423. #settings .color-list li:hover i
  424. {
  425.     opacity: 0.5;
  426. }
  427. #settings .color-list li.checked i
  428. {
  429.     opacity: 1;
  430. }
  431. #settings .color-list li[data-color="1C90E4"]
  432. {
  433.     background-color: #1C90E4;
  434. }
  435. #settings .color-list li[data-color="4CA816"]
  436. {
  437.     background-color: #4CA816;
  438. }
  439. #settings .color-list li[data-color="D36800"]
  440. {
  441.     background-color: #D36800;
  442. }
  443. #settings .color-list li[data-color="7A3AB5"]
  444. {
  445.     background-color: #7A3AB5;
  446. }
  447. #settings .color-list li[data-color="962525"]
  448. {
  449.     background-color: #962525;
  450. }
Advertisement
Add Comment
Please, Sign In to add comment