Advertisement
Xavion

Untitled

May 28th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. /***********************
  2. ** Footer Positioning
  3. ************************/
  4. html, body {
  5. height: 100%;
  6. }
  7.  
  8. #footer {
  9. position: relative;
  10. height: 100px;
  11. clear: both;
  12. }
  13.  
  14. #footer p {
  15. margin-left: 100px;
  16. margin-right: 100px;
  17. }
  18.  
  19. #wrap1 {
  20. position: relative;
  21. height: 100%;
  22. }
  23.  
  24. #wrap2 {
  25. min-height: 100%;
  26. height: auto !important;
  27. height: 100%;
  28. margin: 0 auto -100px;
  29. }
  30.  
  31. #push {
  32. height: 100px;
  33. }
  34.  
  35. #main {
  36. overflow: auto;
  37. padding-top: 80px;
  38. }
  39.  
  40. /**************
  41. ** Header
  42. **************/
  43. #header > .navbar-inner {
  44. height: 80px;
  45. }
  46.  
  47. #header .loginError {
  48. color: #5b7874;
  49. }
  50.  
  51. #header #logo {
  52. margin-top: 10px;
  53. margin-right: 30px;
  54. height: 60px;
  55. width: auto;
  56. }
  57.  
  58. /*************
  59. ** Footer
  60. *************/
  61. #footer {
  62. text-align: center;
  63. overflow: scroll;
  64. color: #CCC;
  65. background-color: #111;
  66. }
  67.  
  68. /************
  69. ** Main
  70. ************/
  71. #main {
  72. background-color: #fff;
  73. }
  74.  
  75. #main #ads {
  76. float: right;
  77. clear: right;
  78. }
  79.  
  80. #main #posts {
  81. float: left;
  82. line-height: 0px;
  83. }
  84.  
  85. /**********
  86. ** Posts
  87. **********/
  88. .posts {
  89. list-style: none;
  90. }
  91.  
  92. .post > .user {
  93. font-weight: bold;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement