Advertisement
Chibi-Elle

BORAM [WIP]

Sep 27th, 2021
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <style type="text/css">
  2. @import url('https://fonts.googleapis.com/css?family=Antic+Slab|Niconne|Lobster+Two|Crushed');
  3. @font-face { font-family: "creamy love"; src: url('https://dl.dropboxusercontent.com/s/6lfk153zah8jlhy/Creamy%20Love.ttf'); }
  4.  
  5. body {
  6. background-color: black;
  7. background-image: url('');
  8. background-position: center;
  9. background-size: 100%;
  10. background-repeat: no-repeat;
  11. }
  12.  
  13. #young {
  14. position: fixed;
  15. left: 0px;
  16. right: 0px;
  17. top: 0px;
  18. bottom: 0px;
  19. }
  20.  
  21. ::-webkit-scrollbar-track {
  22. background-color:;
  23. }
  24.  
  25. ::-webkit-scrollbar-thumb {
  26. background-color:;
  27. }
  28.  
  29. ::-webkit-scrollbar {
  30. width:0px;
  31. height:0px;
  32. }
  33.  
  34. #container {
  35. position: absolute;
  36. left: 1%;
  37. top: 4%;
  38. height: 200px;
  39. width: 200px;
  40. border: 7px solid #222;
  41. border-radius: 50%;
  42. background: #000;
  43. box-shadow: 0px 0px 6px 6px #222;
  44. }
  45.  
  46. #imgcenter {
  47. position: absolute;
  48. z-index: 1;
  49. top: 24px;
  50. left: 25px;
  51. height: 151px;
  52. width: 151px;
  53. border-radius: 50%;
  54. background-image: url('https://64.media.tumblr.com/2091bdcf9bd5a01106de20b81b0d5817/51249cbfc6f9cdc6-8a/s400x600/e80c80cc77a42613968b2403b8421635fe2f9212.png');
  55. background-size: 100%;
  56. background-position: right;
  57. }
  58.  
  59. #imgcenter:hover {
  60. background-image: url('https://64.media.tumblr.com/6e937ff01a9d7df19be45675d449a6cc/51249cbfc6f9cdc6-e9/s400x600/b4cbd2c327edc6fe0766098b41440b83443182b4.png');
  61. border-radius: 50%;
  62. background-size: 100%;
  63. background-repeat: no-repeat;
  64. }
  65.  
  66. #botline {
  67. position: absolute;
  68. z-index: 1;
  69. right: -316px;
  70. bottom: 4px;
  71. height: 19px;
  72. width: 360px;
  73. background: #222;
  74. transform: skew(-40deg);
  75. }
  76.  
  77. #topline {
  78. position: absolute;
  79. z-index: 1;
  80. right: -316px;
  81. top: 4px;
  82. height: 19px;
  83. width: 360px;
  84. background: #222;
  85. transform: skew(40deg);
  86. }
  87.  
  88. </style>
  89. <div id="young" oncontextmenu="return false;">
  90. <div id="container">
  91. <div id="imgcenter"></div>
  92. <div id="botline"></div>
  93. <div id="topline"></div>
  94.  
  95. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement