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

Untitled

By: a guest on May 21st, 2012  |  syntax: None  |  size: 1.75 KB  |  hits: 18  |  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. body{
  2.     background-color: #989898;
  3.     background-image: url("body_background.png");
  4.     background-repeat: repeat-x;
  5. }
  6. h2,h1,h3{
  7.     text-transform: uppercase;
  8.     font-family: sans-serif;
  9.     margin: 10px;
  10.     margin-top: 0px;
  11.     border-bottom: red 2px solid;
  12. }
  13. h1{
  14.     color: red;
  15.     font-size: 35px;
  16. }
  17. h2{
  18.     color:green;
  19.     font-size: 30px;
  20.     border-bottom-color: green;
  21. }
  22. h3{
  23.     color: blue;
  24.     font-size: 20px;
  25.     border-bottom-color: blue;
  26. }
  27. p,a{
  28.     font-family: sans-serif;
  29.     margin: 10px;
  30.     text-indent: 30px;
  31. }
  32. a{
  33.     margin:0px;
  34. }
  35. ol,ul{
  36.     margin: 30px;
  37.     font-family: sans-serif;
  38.     margin-top: 20px
  39. }
  40. table{
  41.     margin-left: 20px;
  42.     border: black 3px solid;
  43.     background-color:  white;
  44. }
  45. td{
  46.     border:black 1px solid;
  47.     background-color: white;
  48. }
  49. #maindiv{
  50.     width: 1024px;
  51.     background-color: #888888;
  52.  
  53.     margin: 0px auto ;
  54. }
  55. #topdiv{
  56.     width: 100%;
  57.     height: 230px;
  58.     margin: 0px;
  59.     padding: 0px;
  60.     background-color: #ff6600;
  61.     background-image: url("topdiv_background.png");
  62. }
  63. #nadpis{
  64.     color: white;
  65.     font-family: sans-serif;
  66.     padding-top: 90px;
  67.     font-size: 60px
  68. }
  69. #middlediv{
  70.     margin: 0px;
  71.     padding: 0px;
  72.     width:100%;
  73.     background-color: #ff9955;
  74.     background-image:url("middlediv_background.png");
  75.     background-repeat: repeat-y;
  76.     background-position: 768px;
  77.     min-height: 100px;
  78.     clear: both;
  79. }
  80. #contentdiv{
  81.     float: left;
  82.     width: 768px;
  83.     margin: 0px;
  84.     padding: 0px;
  85.     background-color: white;
  86. }
  87. #bottomdiv{
  88.     width: 100%;
  89.     height: 112px;
  90.     background-color: #666666;
  91.     background-image:  url("bottomdiv_background.png");
  92.     clear: both;
  93. }
  94. .jmeno{
  95.     font-weight: bold;
  96. }