Advertisement
screennameless

index.css

Jul 10th, 2012
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1. body {
  2.     background-color: #222222;
  3.     overflow: auto;
  4.     color: #ffffff;
  5.     font-family: verdana, sans-serif;
  6. }
  7. a { color: #ffffff; }
  8. a:visited { color: #ffffff; }
  9.  
  10. #page_header {
  11.     position: fixed;
  12.     top: 55px;
  13.     left: 100px;
  14.     font-size: 50px;
  15. }
  16.  
  17. #user_info {
  18.     position: fixed;
  19.     /*right: 50px;*/
  20.     left: 950px;
  21.     top: 60px;
  22. }
  23. #user_info a {
  24.     padding: 15px;
  25.     text-decoration: none;
  26.     font-size: 35px;
  27. }
  28. #user_info a:hover {
  29.     background-color: #606060;
  30. }
  31.  
  32. #boxes {
  33.     position: fixed;
  34.     top: 200px;
  35.     left: 100px;
  36. }
  37.  
  38. #left_content_box {
  39.     padding: 20px;
  40.     background-color: #00cdcd;
  41.     width: 600px;
  42.     float: left;
  43. }
  44. #left_content_box header {
  45.     position: absolute;
  46.     top: 15px;
  47.     left: 50px;
  48.     font-size: 25px;
  49. }
  50. #left_content_box section {
  51.     padding: 10px;
  52. }
  53. #left_content_box section header {
  54.     padding-top: 25px;
  55.     position: relative;
  56.     font-size: 20px;
  57.     left: 0px;
  58. }
  59. #left_content_box section p {
  60.     position: relative;
  61.     top: 20px;
  62.     left: 10px;
  63.     font-size: 15px;
  64.     overflow: auto;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement