Advertisement
ed209

To Gabriel

Apr 9th, 2012
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.65 KB | None | 0 0
  1. /* Put this at the top of all css */
  2. @import url(http://fonts.googleapis.com/css?family=Arvo);
  3.  
  4.  
  5. /*
  6. * put this after all css
  7. * it's just a hack :)
  8. * hidden elements I didn't re-style
  9. * this is how it looks http://cl.ly/201E432X171r0T290s2O
  10. * backstory http://news.ycombinator.com/item?id=3816446
  11. */
  12.  
  13.  
  14. html, body{
  15.     background-color:#f1ede5;
  16.     }
  17. #beta{
  18.     display:none;
  19.     }
  20. #container-inner{
  21.     width:600px;
  22.     }
  23. .layout-wt #alpha {
  24.     width: 550px;
  25.     padding:0 170px 0 0;
  26.     }
  27. #header{
  28.     -webkit-border-radius: 0;
  29.     border-radius: 0;
  30.     margin:20px 0 60px 0;
  31.     padding:0;
  32.     height:100px;
  33.     width:510px;
  34.     }
  35. #header-name a{
  36.     background-color:#000;
  37.     font-size:0.6em;
  38.     display:inline-block;
  39.     padding:4px;
  40.     }
  41. #header-description{
  42.     background-color:#000;
  43.     font-size:1em;
  44.     display:inline-block;
  45.     padding:4px;
  46.     }
  47. #idc-container-parent{
  48.     display:none;
  49.     }
  50. .asset-meta{
  51.     display:none;
  52.     }
  53. .asset-name{
  54.     background-image:none;
  55.     font-size:3.3em;
  56.     color:#4f5c46;
  57.     font-family: 'Arvo', serif;
  58.     margin-bottom:30px;
  59.     }
  60. .asset-meta {
  61.     border:0;
  62.     }
  63. .asset-body{
  64.     line-height:1.6em;
  65.     color:#2d3235;
  66.     }
  67. .asset-body img{
  68.     width:100%;
  69.     height:auto;
  70.     display:block;
  71.     }
  72. .asset-body a{
  73.     color:#749063;
  74.     }
  75. .asset-body a:hover{
  76.     color:#4b653b;
  77.     }
  78. .asset-body .webkit-indent-blockquote i{
  79.     display:block;
  80.     font-family:georgia;
  81.     border-left:6px solid #e8e3d9 !important;
  82.     padding:16px 18px !important;
  83.     background-color:#f9f8f5;
  84.     }
  85. .webkit-indent-blockquote{
  86.     margin:0 !important;
  87.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement