Advertisement
Guest User

Untitled

a guest
Apr 15th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. body {
  2. margin:0;
  3. padding:0;
  4. width:100%;
  5. height:100%;
  6. font-family:Verdana;
  7. }
  8. #Top {
  9. width:100%;
  10. min-height:100px;
  11. height:15%;
  12. max-height:200px;
  13. background-color:#C6E466;
  14. border-bottom:2px solid #4E6011;
  15. position:relative;
  16. }
  17. #Navi {
  18. width:100%;
  19. position:absolute;
  20. bottom:0px;
  21. }
  22. .Link {
  23. color:black;
  24. text-decoration:none;
  25. }
  26. .Link:hover {
  27. background-color:#121212;
  28. color:white;
  29. }
  30. .Link a:hover {
  31. text-decoration:none;
  32. color:white;
  33. }
  34. .InfoOutput {
  35. border:thin solid black;
  36. margin-left:auto;
  37. margin-right:auto;
  38. max-width:300px;
  39. }
  40. /* Basic class*/
  41.  
  42. .UserNotification {
  43. position:fixed;
  44. top:10px;
  45. left:10px;
  46. z-index:1;
  47. min-width:150px;
  48. width:20%;
  49. max-width:500px;
  50. border:thin solid #4E6011;
  51. background-color:red;
  52. opacity: 0.0;
  53. -webkit-transition:opacity 5s ease-out;
  54. -moz-transition:opacity 5s ease-out;
  55. -o-transition:opacity 5s ease-out;
  56. transition:opacity 5s ease-out;
  57. transition-delay:5s;
  58. -moz-transition-delay:5s;
  59. -webkit-transition-delay:5s;
  60. -o-transition-delay:5s;
  61. }
  62.  
  63. /* Mainarea */
  64.  
  65. #Main {
  66. margin-top:20px;
  67. height:100%;
  68. min-width:500px;
  69. width:85%;
  70. border:thin solid #4E6011;
  71. margin-left:10px;
  72. margin-right:auto;
  73. background-color:#EFEFEF;
  74. padding:10px;
  75. float:left;
  76. }
  77. #Main a{
  78. color:black;
  79. font-weight:bold;
  80. border-bottom: 2px solid #4E6011;
  81. text-decoration:none;
  82. }
  83. #Main a:hover{
  84. background-color:#C6E466;
  85. font-weight:bold;
  86. border-bottom: 2px solid #4E6011;
  87. text-decoration:none;
  88. }
  89.  
  90. /* User Panel */
  91.  
  92. #UserPanel {
  93. background-color:grey;
  94. border:thin solid black;
  95. min-width:100px;
  96. width:10%;
  97. max-width:200px;
  98. margin-right:10px;
  99. margin-left:auto;
  100. clear:left;
  101. }
  102.  
  103. /* Boardarea */
  104. #Board {
  105. width:100%;
  106. height:100%;
  107. border-collapse:collapse;
  108. }
  109. .BoardHeadline {
  110. text-align:center;
  111. font-weight:bold;
  112. padding:20px;
  113. }
  114. .BoardRow td {
  115. border: 2px dotted #4E6011;
  116. /*background:-moz-linear-gradient(bottom,#b3b3b3,#f1f1f1); Firefox */
  117. background-image:-webkit-linear-gradient(bottom, #FFFFFF 33%, #EFEFEF 90%); /* Chrome, Safari */
  118. height:50px;
  119. }
  120. .BoardName {
  121. width:80%;
  122. }
  123. .BoardCounter {
  124. text-align:center;
  125. }
  126. .BoardUser {
  127. min-width:150px;
  128. width:10%;
  129. min-height:150px;
  130. height:10%;
  131. background-color:#C6E466;
  132. border:2px solid #4E6011;
  133. }
  134. .BoardText {
  135. width:100%;
  136. border-top: 2px dotted #4E6011;
  137. border-right: 2px dotted #4E6011;
  138. border-bottom: 2px dotted #4E6011;
  139. padding-top:30px;
  140. padding-bottom:30px;
  141. padding-left:30px;
  142. padding-right:10px;
  143. /*background:-moz-linear-gradient(bottom,#b3b3b3,#f1f1f1); Firefox */
  144. background-image:-webkit-linear-gradient(bottom, #FFFFFF 33%, #EFEFEF 90%); /* Chrome, Safari */
  145. }
  146. #BoardPost {
  147. min-width:300px;
  148. width:98%;
  149. height:100%;
  150. }
  151. #BoardSmiley {
  152. min-width:100px;
  153. width:20%;
  154. padding:10px;
  155. border:thin solid #4E6011;
  156. background-color:#C6E466;
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement