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

Untitled

By: a guest on Aug 18th, 2012  |  syntax: None  |  size: 0.64 KB  |  hits: 8  |  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. pre {
  2.         background: #fff;
  3.         border: 1px solid #cbcbcb;
  4.         border-radius: 7px;
  5.         box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  6.         color: #529EDA;
  7.         height: 300px;
  8.         position: relative;
  9.         width: 500px;
  10. }
  11.  
  12. pre:before {
  13.         background: #2d2d2d;
  14.         border-radius: 7px 0 0 7px;
  15.         box-shadow: inset -2px 0 0 rgba(0,0,0,.15);
  16.         content: attr(data-type);
  17.         color: #888;
  18.         height: 90.75%;
  19.         left: -1px;
  20.         padding: 3% 0;
  21.         position: absolute;
  22.         text-align: center;
  23.         text-shadow: 0 1px 0 black;
  24.         top: -1px;
  25.         width: 60px;
  26. }
  27.  
  28. pre:after {
  29.         background: #efefef;
  30.         box-shadow: inset -1px 0 0 rgba(0,0,0,.01);
  31.         content: '';
  32.         height: 100%;
  33.         left: 59px;
  34.         position: absolute;
  35.         top: 0;
  36.         width: 40px;
  37. }