Advertisement
Guest User

Untitled

a guest
Apr 21st, 2010
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.51 KB | None | 0 0
  1.  
  2. body {
  3.     padding:5px;
  4.     background-image:url('../images/bg1.png');
  5. }
  6.  
  7. em {
  8.     color:white;
  9. }
  10.  
  11. /* wrapper style */
  12. #wrapper {
  13.     width:900px;
  14.     margin-left:auto;
  15.     margin-right:auto;
  16.     background-color:#937D6A;
  17.     border:1px solid #F4C170;
  18.     padding:5px;
  19.     font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
  20. }
  21. /* end of wrapper */
  22.  
  23. /* header image */
  24. #header img {
  25.     border:0px;
  26. }
  27. /* end of header image */
  28.  
  29. /* sidebar */
  30. #sidebar {
  31.     width:200px;
  32.     float:left;
  33. }
  34. /* end of sidebar */
  35.  
  36. /* navigation */
  37. ul#nav {
  38.     margin-top:0px;
  39.     padding-left:5px;
  40.     list-style: none inside
  41. }
  42.  
  43. ul#nav li a {
  44.     display:block;
  45.     color:#F4C170;
  46.     background:#65544B;
  47.     margin:5px 0px 0px 0px;
  48.     text-decoration: none;
  49.     padding: 10px 5px;
  50.     border-left: 10px solid #F4C170;
  51. }
  52.  
  53. ul#nav li a:hover {
  54.     color: #ffffff;
  55.     background-color:#F4C170;
  56. }
  57.  
  58.  
  59. ul#nav li a#current {
  60.     border-color: #ffffff
  61. }
  62. /* end of navigation */
  63.  
  64. /* content area */
  65. #contentArea  {
  66.     width:700px;
  67.     float:left;
  68.     color:#F4C170;
  69. }
  70.  
  71. #contentArea h1, h2, h3, h4, h5, h6 {
  72.     margin-left:0px;
  73.     color:white;   
  74. }
  75.  
  76. #originality {
  77.     margin-top:50px;
  78.     margin-left:80px;
  79. }
  80. /* end of content area */
  81.  
  82. /* greeting form */
  83. .entry input {
  84.     margin-left:80px;
  85.     margin-top:5px;
  86.     padding-top:5px;
  87.     padding-bottom:5px;
  88.     background-color:#937D6A;
  89.     border:1px #F4C170 solid;
  90.     color:#F4C170;
  91.     font-size:20px;
  92.     text-align:center;
  93.     float:left;
  94. }
  95.  
  96. .greet input {
  97.     margin-top:5px;
  98.     margin-left:10px;  
  99.     padding-top:4px;
  100.     padding-bottom:4px;
  101.     background-color:#65544B;
  102.     border:1px #F4C170 solid;
  103.     color:#F4C170;
  104.     font-size:20px;
  105.     text-align:center;
  106. }
  107. /* end of greeting form */
  108.  
  109. /* footer */
  110. #footer {  
  111.     padding-top:15px;
  112.     clear:left;
  113. }
  114.  
  115. .footerImage {
  116.     float:left;
  117.     margin-right:5px;
  118. }
  119.  
  120. .disclaimer {
  121.     margin-top:10px;
  122.     margin-right:10px;
  123.     width:700px;
  124.     color:#F4C170;
  125.     padding-top:5px;
  126.     float:left;
  127. }
  128.  
  129. .validXHTML{
  130.     margin-top:20px;
  131. }
  132.  
  133. .validCSS{
  134.     margin-top:5px;
  135. }
  136. /* end of footer */
  137.  
  138. /* CV */
  139. #cv {
  140.     margin-left:30px;
  141. }
  142.  
  143. #details {
  144.     float:left;
  145.     margin-right:45px;
  146. }
  147.  
  148. #address {
  149.     float:left;
  150. }
  151.  
  152. #education {
  153.     clear:left;
  154. }
  155. .cvDivision {
  156.     margin-left:35px;
  157.     color:#F4C170;
  158. }
  159.  
  160. .interests {
  161.     width:435px;
  162. }
  163. /* end of CV */
  164.  
  165. /* clearfix hack */
  166. .clearfix:after {
  167.     visibility: hidden;
  168.     display: block;
  169.     font-size: 0;
  170.     content: " ";
  171.     clear: both;
  172.     height: 0;
  173. }
  174. * html .clearfix             { zoom: 1; } /* IE6 */
  175. *:first-child+html .clearfix { zoom: 1; } /* IE7 */
  176. /* end of clearfix hack */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement