Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. /* Container and background*/
  2.  
  3. #profile-container {
  4. background: none;
  5. }
  6.  
  7. body {
  8. background: #fff;
  9. }
  10.  
  11. body,
  12. a:hover {
  13. cursor: url(http://i.imgur.com/cd7ZHDh.png), progress !important;
  14. }
  15.  
  16. /* Font */
  17.  
  18. @font-face {
  19. font-family: title;
  20. src: url(https://dl.dropbox.com/s/8dv692e8iuzuu3w/Moon%20Flower%20Bold.ttf?dl=0);
  21. }
  22.  
  23. @font-face{
  24. font-family: text;
  25. src: url('https://dl.dropboxusercontent.com/s/in2803m75g9sjk8/CODE%20Bold.otf?dl=0');}
  26.  
  27. /* Name */
  28.  
  29. .nameplate {
  30. z-index: 2;
  31. position: absolute;
  32. background: #edb407;
  33. color: #EFEFFC;
  34. text-shadow: -1px 0 #000, 0 2px #000, 1px 0 #000, 0 -1px #000;
  35. letter-spacing: 2px;
  36. font-family: text;
  37. font-size: 25px;
  38. padding: 10px;
  39. text-align: center;
  40. top: 153px;
  41. left: 288px;
  42. height: 27px;
  43. width: 351px
  44. }
  45.  
  46. /* Picture */
  47.  
  48. .pic {
  49. z-index: 2;
  50. position: absolute;
  51. border: 1px solid #000;
  52. background: url(http://i.picpar.com/zn6d.png) center;
  53. background-size: cover;
  54. top: 100px;
  55. left: 30px;
  56. height: 440px;
  57. width: 250px;
  58. }
  59.  
  60. /* Info */
  61.  
  62. .info {
  63. z-index: 3;
  64. position: absolute;
  65. outline: 1px solid #e0aa07;
  66. border: 3px solid #fff;
  67. background: #fff;
  68. padding: 5px;
  69. color: #000;
  70. font-family: text;
  71. left: 289px;
  72. top: 204px;
  73. width: 353px;
  74. height: 268px;
  75. text-align: justify;
  76. overflow: auto;
  77. }
  78.  
  79. /* Backer */
  80.  
  81. .backer {
  82. z-index: 1;
  83. position: absolute;
  84. border: 1px solid #e0aa07;
  85. width: 580px;
  86. height: 340px;
  87. left: 80px;
  88. top: 150px;
  89. background: #eee;
  90. }
  91.  
  92. /* Titles*/
  93.  
  94. h1 {
  95. position: relative;
  96. text-align: center;
  97. margin-bottom: 3px;
  98. }
  99.  
  100. h1 span {
  101. position: relative;
  102. z-index: 1;
  103. font-family: text;
  104. color: #e0aa07;
  105. background: #fff;
  106. font-size: 18px;
  107. padding: 2px;
  108. letter-spacing: 2px;
  109. }
  110.  
  111. h1:before {
  112. background: #e0aa07;
  113. content: "";
  114. display: block;
  115. height: 1px;
  116. position: absolute;
  117. top: 50%;
  118. width: 90%;
  119. left: 5%;
  120. }
  121.  
  122. /* hr */
  123.  
  124. hr {
  125. border: none;
  126. background: #515152 width: 80%;
  127. height: 1px;
  128. }
  129.  
  130. /* Slection*/
  131.  
  132. ::selection {
  133. background: #E3E6F9;
  134. }
  135.  
  136. /* Scrollbar*/
  137.  
  138. ::-webkit-scrollbar {
  139. width: 3px;
  140. height: 0px;
  141. }
  142.  
  143. ::-webkit-scrollbar-thumb {
  144. background: #ABB0CF;
  145. border: 1px solid #fff;
  146. }
  147.  
  148. ::-webkit-scrollbar-track {
  149. background: #fff;
  150. }
  151.  
  152. /* Links*/
  153.  
  154. a:link,
  155. a:visited,
  156. a:active {
  157. text-decoration: none;
  158. color: #A9C0F2;
  159. -webkit-transition: all .5s linear;
  160. }
  161.  
  162. a:hover {
  163. color: #ABB0CF;
  164. -webkit-transition: all .5s linear;
  165. cursor: url(https://i.imgur.com/SAa1psh.gif), progress !important;
  166. }
  167.  
  168. /* credit */
  169.  
  170. .Credit {
  171. z-index: 0;
  172. position: fixed;
  173. right: 50px;
  174. bottom: 50px;
  175. width: 15px;
  176. height: 15px;
  177. border-radius: 20px;
  178. border: 1px solid #000;
  179. padding: 5px;
  180. background: #fff;
  181. font-family: tahoma;
  182. line-height: 14px;
  183. font-size: 12px;
  184. -webkit-transition: all 1s ease;
  185. }
  186.  
  187. .Credit:hover {
  188. background: #fff;
  189. border-color: #000;
  190. -webkit-transition: all 1s ease;
  191. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement