Advertisement
Guest User

Untitled

a guest
May 27th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. /*The body*/
  2.  
  3. body {
  4. background: url('https://i.imgur.com/3PnR3bL.png');
  5. }
  6.  
  7. #profile-container {
  8. background: none;
  9. }
  10.  
  11. #profile {
  12. Background-color: #000;
  13. Border: none;
  14. }
  15.  
  16. ::-webkit-scrollbar {
  17. width: 5px;
  18. }
  19.  
  20. ::-webkit-scrollbar-track {
  21. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.0);
  22. }
  23.  
  24. ::-webkit-scrollbar-thumb {
  25. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.0);
  26. }
  27.  
  28. /*The main container*/
  29.  
  30. #container {
  31. position: absolute;
  32. top: 10px;
  33. width: 800px;
  34. height: 500px;
  35. background: linear-gradient(to bottom, #f9ecb3 30%, #ec7161 100%);
  36. border: 5px solid #4e1d12;
  37. font-size: 50px;
  38. letter-spacing: 5px;
  39. }
  40.  
  41. /*The Phoenix*/
  42.  
  43. .image {
  44. position: absolute;
  45. top: 30px;
  46. left: 275px;
  47. width: 250px;
  48. height: 139px;
  49. background-image: url('https://i.imgur.com/jRrQBmZ.png');
  50. background-size: cover;
  51. }
  52.  
  53. /*Welcome Section*/
  54.  
  55. #welcome {
  56. position: absolute;
  57. top: 10px;
  58. left: 10px;
  59. width: 250px;
  60. height: 200px;
  61. background-color: #fff6d3;
  62. border: 1px solid #4e1d12;
  63. }
  64.  
  65. #welcomebox {
  66. position: absolute;
  67. z-index: 99999;
  68. top: 50px;
  69. width: 250px;
  70. height: 150px;
  71. overflow-x: hidden;
  72. overflow-y: scroll;
  73. }
  74.  
  75. /*Staff Section*/
  76.  
  77. #staff {
  78. position: absolute;
  79. top: 10px;
  80. left: 537px;
  81. width: 250px;
  82. height: 200px;
  83. background-color: #fff6d3;
  84. border: 1px solid #4e1d12;
  85. }
  86.  
  87. #staffbox {
  88. position: absolute;
  89. z-index: 99999;
  90. top: 46px;
  91. width: 250px;
  92. height: 154px;
  93. overflow-x: hidden;
  94. overflow-y: scroll;
  95. }
  96.  
  97. /*Rules Section*/
  98.  
  99. #rules {
  100. position: absolute;
  101. top: 225px;
  102. left: 10px;
  103. width: 780px;
  104. height: 265px;
  105. background-color: #fff6d3;
  106. border: 1px solid #4e1d12;
  107. }
  108.  
  109. #rulesbox {
  110. position: absolute;
  111. z-index: 99999;
  112. top: 35px;
  113. width: 780px;
  114. height: 228px;
  115. overflow-x: hidden;
  116. overflow-y: scroll;
  117. }
  118.  
  119. /*Text Section*/
  120.  
  121. .text1 {
  122. position: absolute;
  123. top: 5px;
  124. padding: 10px;
  125. width: 230px;
  126. text-align: left;
  127. font-family: Verdana;
  128. font-size: 11px;
  129. color: #7c3829;
  130. letter-spacing: 0px;
  131. line-height: 150%;
  132. }
  133.  
  134. .text2 {
  135. position: absolute;
  136. left: 10px;
  137. width: 750px;
  138. text-align: justify;
  139. font-family: Verdana;
  140. font-size: 11px;
  141. color: #7c3829;
  142. letter-spacing: .5px;
  143. }
  144.  
  145. b,
  146. strong {
  147. color: #4d5061;
  148. letter-spacing: .5px;
  149. text-transform: uppercase;
  150. padding: 1px;
  151. font-weight: 600;
  152. font-family: 'Josefin Sans', sans-serif;
  153. }
  154.  
  155. a:link,
  156. a:visited {
  157. color: #7e7672;
  158. transition: all 0.7s linear;
  159. text-decoration: none;
  160. }
  161.  
  162. a:hover,
  163. a:active {
  164. color: #000;
  165. }
  166.  
  167. p {
  168. margin-left: 15px;
  169. }
  170.  
  171. h3 {
  172. position: absolute;
  173. font-family: Georgia;
  174. font-size: 30px;
  175. letter-spacing: 2px;
  176. text-align: center;
  177. width: 100%;
  178. font-weight: 400;
  179. color: #4e1d12;
  180. }
  181.  
  182. /*Tooltips*/
  183.  
  184. div.tooltipMessage {
  185. z-index: 9001;
  186. position: absolute;
  187. width: 100px;
  188. text-align: left;
  189. }
  190. div.tooltipMessage > span {
  191. display: inline-block;
  192. background: #fff;
  193. border: 1px #000 solid;
  194. font-size: 8px;
  195. padding: 2px 4px;
  196. color: #000;
  197. }
  198. div.tooltipMessage.left > span {
  199. float: right;
  200. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement