Advertisement
ZaraByte

[CSS STRUCTURE FOR ZARABYTE]

Oct 2nd, 2011
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.95 KB | None | 0 0
  1. [CSS STRUCTURE FOR ZARABYTE]
  2. /*
  3.       Created by Keith Donegan of Code-Sucks.com
  4.      
  5.       E-Mail: Keithdonegan@gmail.com
  6.      
  7.       You can do whatever you want with these layouts,
  8.       but it would be greatly appreciated if you gave a link
  9.       back to http://www.code-sucks.com
  10.      
  11. */
  12.  
  13. * { padding: 0; margin: 0; }
  14.  
  15. a {
  16.     color: #CCC;
  17.         text-decoration: none;
  18. }
  19.  
  20. a:hover {
  21.     color: #FF0000;
  22. }
  23. h1 {
  24.         color: #CCC;
  25.     font-size: 10px;
  26.     margin-bottom: 4px;
  27.  
  28. }
  29. h2 {
  30.         color: #CCC;
  31.     font-size: 10px;
  32.     margin-top: 60px;
  33.         margin-left: 400px;
  34. }
  35. h3 {
  36.         color: #CCC;
  37.     font-size: 24px;
  38.     margin-bottom: 4px;
  39.         margin-left: 560px;
  40. }
  41. body {
  42.  background: #2e2e2e;
  43.  font-family: Arial, Helvetica, sans-serif;
  44.  font-size: 13px;
  45. }
  46. #wrapper {
  47.  margin: 0 auto;
  48.  width: 922px;
  49. }
  50. #header {
  51.  color: #333;
  52.  width: 810px;
  53.  float: left;
  54.  padding: 10px;
  55.  border: 1px solid #000;
  56.  height: 100px;
  57.  margin: 10px 0px 5px 0px;
  58.  background: url(images/header.gif);
  59.  
  60. }
  61. #navigation {
  62.  float: left;
  63.  width: 820px;
  64.  color: #333;
  65.  padding: 5px;
  66.  height: 12px;
  67.  border: 1px solid #000;
  68.  margin: 0px 0px 5px 0px;
  69.  background: url(images/nav.gif);
  70. }
  71. #nav_left {
  72.  background: url(images/bg.gif) repeat-x;
  73.  color: #CCC;
  74.  font-size: 10px;
  75.  border: 1px solid #000;
  76.  margin: 0px 5px 5px 0px;
  77.  padding: 10px;
  78.  height: 250px;
  79.  width: 150px;
  80.  float: left;
  81. }
  82. #content {
  83.  float: left;
  84.  color: #333;
  85.  border: 1px solid #000;
  86.  background: url(images/container.gif) repeat-x;
  87.  margin: 0px 5px 5px 0px;
  88.  padding: 10px;
  89.  height: 750px;
  90.  width: 456px;
  91.  display: inline;
  92. }
  93. #nav_right {
  94.  background: url(images/bg.gif) repeat-x;
  95.  color: #CCC;
  96.  border: 1px solid #000;
  97.  margin: 0px 0px 5px 0px;
  98.  padding: 10px;
  99.  height: 250px;
  100.  width: 150px;
  101.  float: left;
  102. }
  103. #footer {
  104.  width: 910px;
  105.  clear: both;
  106.  color: #333;
  107.  border: 1px solid #000;
  108.  background: url(images/nav.gif);
  109.  margin: 0px 0px 10px 0px;
  110.  padding: 5px;
  111. }
  112.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement