Advertisement
Guest User

style

a guest
Apr 6th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.97 KB | None | 0 0
  1. /*  
  2. Theme Name: BLANK Theme
  3. Theme URI: http://digwp.com
  4. Description: This is just a BLANK starter WordPress Theme template -- WordPress v2.9.1
  5. Author: Chris Coyier
  6. Author URI: http://chriscoyier.net
  7. Version: 1
  8. */
  9.  
  10. @media screen {
  11.  
  12. /* General Styles */
  13.  
  14. .CentreContainer { width:960px; margin:0 auto; height:auto; text-align:center;}
  15.  
  16. /* Header Styles */
  17.  
  18. #HeaderBG {width:100%; background:#020202; height:139px;}
  19.  
  20. /* Navigation Styles */
  21.  
  22. #NavContainer
  23. {width:100%; height:37px; background-image:url(images/blockdefault1.gif); }
  24. .icons
  25. {margin-top: 3px; float:right; margin-right: 50px;}
  26.  
  27. .solidblockmenu{
  28. height: 37px;
  29. margin: 0;
  30. padding: 0;
  31. float: left;
  32. font: 15px Arial;
  33. width: 100%;
  34. overflow: hidden;
  35. margin-bottom: 1em;
  36. border-width: 1px 0;
  37. background-image:url(../images/blockdefault1.gif);
  38.  
  39. }
  40.  
  41. .solidblockmenu li{
  42. display: inline;
  43. }
  44.  
  45. .solidblockmenu li a{
  46. float: left;
  47. color: #999;
  48. padding: 9px 31px;
  49. text-decoration: none;
  50. border-right: 2px solid #1d1d1d;
  51. }
  52.  
  53.  
  54.  
  55. .solidblockmenu li a:hover, .solidblockmenu li .current{
  56. color: #FF9;
  57. background-image:url(images/blockactive.gif)
  58. }
  59.  
  60. .icons
  61. {margin-top: 3px; float:right; margin-right: 50px;}
  62.  
  63. /* Body Styles */
  64.  
  65. #BodyContainer
  66. {margin-top:0px; width: 100%; height: 373px; background-image:url(images/Black%20Background%20Fabric%20-%202560x1600%20by%20Freeman.jpg);}
  67.  
  68. .textwrap {height:auto; width:auto; padding-left:80px; padding-top:17px;}
  69.  
  70. #blogtitleContainer{ height:60px; background-image:url(images/blogblock.gif); font:Verdana, Geneva, sans-serif; font-size:18px; }
  71.  
  72. .blogtitlefont{color:#ffff99;}
  73.  
  74. /* sidebar Styles */
  75.  
  76. #sidebar {clear:right; float:right; width:250px; background:#00FF00; height:auto; margin-right:100px; margin-top:30px; }
  77.  
  78. /* Content Styles */
  79.  
  80. .post {margin-left: 75px; width:500px; float:left;}
  81.  
  82. /* Comment Styles */
  83.  
  84. #respond {float:left; clear:left; max-width:555px; margin-left:100px;}
  85.  
  86. * { margin: 0; padding: 0; }
  87. body { background: #2a2929; font: 14px/1.4 Arial, Serif; color:#999999}
  88. .screen-reader-text { position: absolute; left: -9999px; top: -9999px; }
  89. .clear { clear: right; }
  90. .group:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: left; height: 0; }
  91. * html .group, *:first-child+html .group { zoom: 1; } /* First selector = IE6, Second Selector = IE 7 */
  92. #left{width:555px; float:left;}
  93. #footerSpacer {clear:both; height:20px; width:100%; background-color:#2a2929}
  94. #footer{clear:both; padding-top: 25px; height:75px; width:100%; background-image:url(images/footer.gif); text-align:center;}
  95.  
  96. .commentlist {clear:left; width:555px; margin-left:130px; margin-top:20px;}
  97. #comments{clear:left; width:555px; margin-left: 100px; margin-top:20px;}
  98.  
  99. h1, h2, h3 { font-weight: normal; margin: 0 0 10px 0; }
  100. h1 { }
  101. h2 {color:#ffff99; }
  102. h3 { }
  103.  
  104.  
  105. a { color:#FF9}
  106. a:hover { color:#fff }
  107.  
  108.  
  109. .post {margin-left: 100px; width:555px; clear:left; margin-top:20px;}
  110.  
  111. .entry { color:#FFFFFF;}
  112.  
  113.  
  114. } /* END screen media */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement