Advertisement
Guest User

Untitled

a guest
Aug 6th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. /*
  2. Author: Donny Burnside
  3. Website: http://www.ginger-ninja.net/
  4. */
  5.  
  6. /* Misc. */
  7.  
  8. * {
  9. text-align:center;
  10. margin:auto;
  11. padding:0;
  12. }
  13. body {
  14. text-align:center;
  15. font-family:Trebuchet MS, Arial, Helvetica, sans-serif;
  16. font-size:12px;
  17. background-color:#111111;
  18. color:#f1f1f1;
  19. }
  20. a {
  21. text-align:center;
  22. color:#f1f1f1;
  23. text-decoration:none;
  24. font-weight:bold;
  25. }
  26. a:hover {
  27. text-align:center;
  28. color:#D8E673;
  29. }
  30. img {
  31. text-align:center;
  32. border:0;
  33. }
  34. p {
  35. text-align:center;
  36. margin-bottom:20px;
  37. line-height:20px;
  38. }
  39.  
  40. /* Structure */
  41.  
  42. #wrapper {
  43. text-align:center;
  44. width:780px;
  45. margin:0 auto;
  46. background-color:#222222;
  47. }
  48. #header {
  49. text-align:center;
  50. height:80px;
  51. background-image:url(images/bg-header.gif);
  52. background-repeat:repeat-x;
  53. background-color:#D0E254;
  54. border-bottom:2px solid #D5E461;
  55. }
  56. #sidebar {
  57. text-align:center;
  58. float:right;
  59. width:160px;
  60. padding:10px;
  61. }
  62. #body {
  63. text-align:center;
  64. padding:10px;
  65. margin-right:180px;
  66. min-height:400px;
  67. }
  68. #footer {
  69. padding:10px;
  70. text-align:center;
  71. }
  72.  
  73.  
  74.  
  75.  
  76. /* Headings */
  77.  
  78. h1 a {
  79. text-align:center;
  80. color:#C2D926;
  81. }
  82. h2 {
  83. text-align:center;
  84. font-size:14px;
  85. color:#f1f1f1;
  86. font-weight:bold;
  87. letter-spacing:-1px;
  88. }
  89.  
  90.  
  91. /* Title */
  92.  
  93. #title {
  94. text-align:center;
  95. line-height:80px;
  96. padding-left:10px;
  97. }
  98. #subtitle {
  99. padding-left:30px;
  100. margin-top:-26px;
  101. color:#fdfdfd;
  102. cursor:default;
  103. }
  104. .title1 {
  105. font-size:30px;
  106. color:#ffffff;
  107. }
  108. .title2 {
  109. font-size:30px;
  110. color:#000000;
  111. font-style:italic;
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement