mixue

cr crdskiz 3

Jan 8th, 2023 (edited)
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.11 KB | None | 0 0
  1. *MAKE SURE TO ALWAYS CHECK THE ELEMENT ID AND CHANGE/ADD IT IF IT DOESN'T MATCH YOURS. THE POSITIONING CODES ARE ALSO MADE TO LOOK GOOD ON MY DEVICE, SO PLEASE ADJUST IT IF IT DOESN'T FIT YOURS.*
  2.  
  3.  
  4. --- FIRST BUTTON ---
  5. #buttons01 li a {
  6. box-shadow: inset 0 7px 7px -5px white, inset 7px 0 7px -7px gray, inset -7px 0 7px -7px gray, inset 0 -7px 7px -7px gray;
  7. border-radius: 50%;
  8. font-family: romantics;
  9. -webkit-text-stroke: 0.5px black;
  10. text-shadow: 1.5px 1.5px .5px gray, -1.5px -1.5px .5px white;
  11. z-index: 20;
  12. position: absolute;
  13. right: 1.8em;
  14. bottom: 2.5em;
  15. }
  16.  
  17. @media only screen and (max-width: 600px) {
  18. #buttons01 li a {
  19. bottom: 3.5em;
  20. right: 2em;
  21. }
  22. }
  23.  
  24. --- SECOND BUTTON ---
  25. #buttons02 li a {
  26. box-shadow: inset 0 7px 7px -5px white, inset 7px 0 7px -7px gray, inset -7px 0 7px -7px gray, inset 0 -7px 7px -7px gray;
  27. border-radius: 50%;
  28. font-family: romantics;
  29. -webkit-text-stroke: 0.5px black;
  30. text-shadow: 1.5px 1.5px .5px gray, -1.5px -1.5px .5px white;
  31. z-index: 20;
  32. position: absolute;
  33. right: 0.7em;
  34. bottom: 0.8em;
  35. }
  36.  
  37. @media only screen and (max-width: 600px) {
  38. #buttons02 li a {
  39. bottom: 1.8em;
  40. right: 0.9em;
  41. }
  42. }
  43.  
  44. --- THIRD BUTTON ---
  45. #buttons03 li a {
  46. box-shadow: inset 0 7px 7px -5px white, inset 7px 0 7px -7px gray, inset -7px 0 7px -7px gray, inset 0 -7px 7px -7px gray;
  47. border-radius: 50%;
  48. font-family: romantics;
  49. -webkit-text-stroke: 0.5px black;
  50. text-shadow: 1.5px 1.5px .5px gray, -1.5px -1.5px .5px white;
  51. z-index: 20;
  52. position: absolute;
  53. right: 0.1em;
  54. bottom: -1em;
  55. }
  56.  
  57. @media only screen and (max-width: 600px) {
  58. #buttons03 li a {
  59. bottom: 0em;
  60. right: 0.3em;
  61. }
  62. }
  63.  
  64. --- MAIN CONTAINER ---
  65. #container01 > .wrapper {
  66. border-radius: 50%;
  67. width: 170px;
  68. box-shadow: inset 0 7px 7px -5px white, inset 7px 0 7px -7px gray, inset -7px 0 7px -7px gray, inset 0 -7px 7px -7px gray;
  69. z-index: 10;
  70. position: absolute;
  71. bottom: -5em;
  72. right: 3em;
  73. }
  74.  
  75. --- IMAGE ---
  76. #image01 .frame {
  77. box-shadow: 0rem 0rem 0.5rem 0rem #6E6E6E;
  78. }
  79.  
  80. --- CONTAINER with SCROLLBOX ---
  81. #elementID > .wrapper {
  82. height: 200px;
  83. width: 170px;
  84. box-shadow: inset 0 7px 7px -5px white, inset 7px 0 7px -7px gray, inset -7px 0 7px -7px gray, inset 0 -7px 7px -7px gray;
  85. border-radius: 1em 1em 0em 1em;
  86. z-index: 11;
  87. position: absolute;
  88. bottom: -5em;
  89. left: 2.5em;
  90. }
  91.  
  92. @media only screen and (max-width: 600px) {
  93. #elementID > .wrapper {
  94. left: -0.5em;
  95. }
  96. }
  97.  
  98. --- NAME, RULES & LIKES TEXTS ---
  99. #elementID {
  100. font-family: romantics;
  101. padding-top: 2px;
  102. -webkit-text-stroke: 0.75px black;
  103. text-shadow: 2px 2px .5px gray, -2px -2px .5px white, 0px 0px 12px darkgray;
  104. z-index: 12;
  105. }
  106.  
  107. --- SCROLLBOX ---
  108. #elementID {
  109. overflow: auto;
  110. height: 130px;
  111. background: #B0B9D980;
  112. border-radius: 0.5em;
  113. padding: 5px;
  114. box-shadow: inset 0 7px 7px -5px white, inset 7px 0 7px -7px gray, inset -7px 0 7px -7px gray, inset 0 -7px 7px -7px gray;
  115. }
  116.  
  117. @media only screen and (max-width: 600px) {
  118. #elementID {
  119. height: 135px;
  120. }
  121. }
  122.  
  123. --- HIGHLIGHTED TEXT ---
  124. #elementID mark {
  125. font-family: romantics;
  126. -webkit-text-stroke: 0.5px black;
  127. font-weight: bold;
  128. text-shadow: 1.5px 1.5px .5px gray, -1.5px -1.5px .5px white;
  129. letter-spacing: 3px;
  130. font-size: 1.3em;
  131. }
  132.  
  133.  
  134.  
  135. --- ROMANTIC FONT ---
  136. <style>
  137. @font-face {
  138. font-family: romantics;
  139. src: url(https://dl.dropbox.com/s/22ucjgki60vvnpe/romantic.ttf);
  140. }
  141. </style>
  142.  
  143. --- SCROLLBAR ---
  144.  
  145. <style>
  146. ::-webkit-scrollbar { width: 16px } ::-webkit-scrollbar:horizontal { height: 17px } ::-webkit-scrollbar-corner { background: #eee } ::-webkit-scrollbar-track:vertical { background: linear-gradient(90deg, #e5e5e580, #f0f0f080 20%) } ::-webkit-scrollbar-track:horizontal { background: linear-gradient(180deg, #e5e5e580, #f0f0f080 20%) } ::-webkit-scrollbar-thumb { border: 1.5px solid #888; border-radius: 3px; box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff; background-color: #eee; } ::-webkit-scrollbar-thumb:vertical { background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAKCAIAAADpZ+PpAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADrSURBVChTTc5LboJQGAXguyoCu4ERCzAGlRk7UOwGWIDh0s4M4kxb06RSq/jAB6AxJkJ4lTDrue3AnvyzP+fLId+/yfM8juP7PQmCCOf7B3e+ZD+O40RRVFW12VQUpd3r9U3T2m4OpKoqWZYNwzBZLEqfh0N7NnvfrPcEWlEUWZb9mWF4Ph6D0ylcLbfM5HkeJrhGA2hb15/QXnv+w7RYXsDatjOdvnmrHSnLEizMNE2v11sUXQBCnn98kbquBUGQJAlmq9WB2e3qg4HJdqKkaRql1HGc0WgMcDJ5dd0F24kediZJ8t/ELT69H+8py0CYSIO5AAAAAElFTkSuQmCC") no-repeat 50%, linear-gradient(90deg, #eee 45%, #ddd 0, #bbb) } ::-webkit-scrollbar-thumb:horizontal { background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAJCAYAAAALpr0TAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADcSURBVChTNZBLqoUwEEQrURQUxZGCvy24ACfiityJi7tv8GauQoPxk5tquA2RQ9vVVYk6z9NZaxFFEe77htYazjk8z4MwDIVZ+rourOuKaZrwvi+WZcE8z1BKCbPPCjk4DAO2bRP1OI7wLiL6Mbd7J408z1GWpQwWRYGqqiQG+03TgMu0MacfUN4qANmn8UOv9MjW3sKaSm7iIdOSlziOQ3LScd93aPonSYK6riVLlmVo21aYfVqzND9pmqLrOlGT+76XbcxLZkb19/l3fEP+oF0cx8KMEASBsDEGX2/CgZCHkg+8AAAAAElFTkSuQmCC") no-repeat 50%, linear-gradient(180deg, #eee 45%, #ddd 0, #bbb) } ::-webkit-scrollbar-button:horizontal:end:increment, ::-webkit-scrollbar-button:horizontal:start:decrement, ::-webkit-scrollbar-button:vertical:end:increment, ::-webkit-scrollbar-button:vertical:start:decrement { display: block } ::-webkit-scrollbar-button:vertical { height: 17px } ::-webkit-scrollbar-button:vertical:start:decrement { background: white; background-image: url("https://cdn.discordapp.com/attachments/904308736712138793/1001299199633141851/download.png"); background-repeat: no-repeat; background-position: center; -moz-background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-size: cover; } ::-webkit-scrollbar-button:vertical:start:increment { display: none; } ::-webkit-scrollbar-button:vertical:end:decrement { display: none; } ::-webkit-scrollbar-button:vertical:end:increment { background: white; background-image: url("https://cdn.discordapp.com/attachments/904308736712138793/1001299200052576387/87ae92e1-3894-4469-b1b9-aedf5f04975c.png"); background-repeat: no-repeat; background-position: center; -moz-background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-size: cover; }
  147. </style>
Add Comment
Please, Sign In to add comment