g3x0

RegExp Chall #1 - Result

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