Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. body {
  2. background: #ccc;
  3. text-align: center;
  4. font-size: 16px;
  5. font-family: 'Abel';
  6. }
  7.  
  8. a {
  9. color: #67C8F0;
  10. text-decoration: none;
  11. }
  12.  
  13. a:hover {
  14. text-decoration: underline;
  15. }
  16.  
  17. body * {
  18. text-align: left;
  19. }
  20.  
  21. #wrapper {
  22. display: inline-block;
  23. border: solid 10px white;
  24. width: 900px;
  25. background: #fef9f8;
  26. /*background: #ccc;*/
  27. padding: 50px;
  28. padding-top: 25px;
  29. text-align: center;
  30. }
  31.  
  32. #wrapper .banner {
  33. background: white;
  34. border: solid 10px white;
  35. overflow: hidden;
  36. display: inline-block;
  37. max-width: 100%;
  38. max-height: 300px;
  39. }
  40.  
  41. #wrapper .banner img {
  42. position: relative;
  43. width: 100%;
  44. }
  45.  
  46. #wrapper .notice {
  47. border: solid 2px white;
  48. padding-left: 10px;
  49. padding-right: 10px;
  50. background: url(http://i.imgur.com/x5qr5jZ.png);
  51. height: 34px;
  52. line-height: 34px;
  53. margin-top: 10px;
  54. margin-bottom: 10px;
  55. }
  56.  
  57. .notice * {
  58. margin: 0;
  59. }
  60.  
  61. #wrapper .left, #wrapper .right {
  62. background: white;
  63. display: inline-block;
  64. vertical-align: top;
  65. border: solid thin #ddd;
  66. min-height: 200px;
  67. padding: 10px;
  68. color: #666;
  69. }
  70.  
  71. #wrapper .right img {
  72. max-width: 100%;
  73. }
  74.  
  75. #wrapper .left {
  76. width: 22%;
  77. min-height: 400px;
  78. }
  79.  
  80. #wrapper .right {
  81. width: 72%;
  82. float: right;
  83. overflow-x: hidden;
  84. }
  85.  
  86.  
  87. .left .displayname {
  88. margin: 0;
  89. text-align:center;
  90. font-size: 1.5em;
  91. height: 34px;
  92. line-height: 34px;
  93. border: solid thin #ddd;
  94. background: url(http://i.imgur.com/x5qr5jZ.png);
  95. }
  96.  
  97. .left .profileimg {
  98. margin-top: 10px;
  99. margin-bottom: 10px;
  100. }
  101.  
  102. .left .asl {
  103.  
  104. }
  105.  
  106. .left .asl p {
  107. border: solid thin #ddd;
  108. background: #fef9f8;
  109. margin:0;
  110. margin-bottom: 3px;
  111. padding-left: 3px;
  112. }
  113.  
  114. .left .friends {
  115. margin-top: 10px;
  116. }
  117.  
  118. .left .friends hr {
  119. border: solid 1px #bbb;
  120. margin:0;
  121. margin-bottom: 5px;
  122. }
  123.  
  124. .left .friends h3 {
  125. margin: 0;
  126.  
  127. }
  128.  
  129. .friends #friendpics {
  130. border: solid thin #ddd;
  131. background: #fef9f8;
  132. }
  133.  
  134. #friendpics p {
  135. margin:0;
  136. padding-left: 3px;
  137. }
  138.  
  139. #friendpics div:hover {
  140.  
  141. box-shadow: 0 0 10px #009bce;
  142.  
  143. }
  144.  
  145. .friends #friendpics div {
  146. margin:5px;
  147. display:inline-block;
  148. text-align: center;
  149. border: solid thin #ddd;
  150. }
  151.  
  152. .public_bar {
  153. margin-top: 100px;
  154. background: rgba(0,0,0,0.05);
  155. text-align:center;
  156. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement