Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 18th, 2012  |  syntax: None  |  size: 1.22 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. * { box-sizing:border-box; }
  2.  
  3. body { display:box; box-orient:horizontal; background:#333; }
  4. aside { width:360px; margin:0 0 15px 15px; }
  5. aside div {
  6.   padding:10px;
  7.   border-bottom:1px solid #888;
  8.   border-top:1px solid #bbb;
  9.   transition:background 0.3s ease;
  10.   background:#aaa;
  11. }
  12. aside div:first-child { padding-top:20px; }
  13. .sepia { border-radius:0 0 5px 5px;  }
  14. aside div:hover { background:#bbb; }
  15.  
  16. label { display:block; font:13px "Helvetica", sans-serif; color:#222; }
  17. strong { font-weight:bold; padding:0 3px; user-select:none; }
  18. code { display:inline-block; font:12px "Courier new"; float:right; color:#444; }
  19.  
  20. input { appearance:none!important; background:#777;  width:100%; border-radius:3px; height:20px; }
  21. input::-webkit-slider-thumb {
  22.   appearance:none!important; width:32px; height:20px;  background:#111; border-radius:3px;
  23. }
  24.  
  25. section { box-flex:1; padding:15px; background:#333; }
  26.  
  27. video { width:100%; height:auto; background:#ccc; }
  28.  
  29. .twitter {
  30.   display:block;
  31.   background:#3a3a3a;
  32.   border-radius:5px;
  33.   font:bold italic 15px "Helvetica" italic;
  34.   text-align:center;
  35.   margin:10px 0 0;
  36.   padding:15px 0;
  37.   color:#5a5a5a;
  38.   text-decoration:none;
  39.   transition:0.3s ease;
  40. }
  41. .twitter:hover { background:#414141; color:#4099FF; }