dollcrds

scooby crd co positioning

Apr 18th, 2022 (edited)
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. <style>
  2. * {
  3. padding: 0;
  4. margin: 0;
  5. box-sizing: border-box;
  6. }
  7.  
  8. ::selection {
  9. color: #fbe790;
  10. }
  11.  
  12. @font-face {
  13. font-family: lovely script;
  14. src: url(https://dl.dropbox.com/s/ss5bqbogijw4zfj/Lovely%20Script.otf);
  15. }
  16.  
  17. @font-face {
  18. font-family: berkshire;
  19. src:url(https://dl.dropbox.com/s/49tg0oklrpc2u71/BerkshireSwash-Regular.ttf?);
  20.  
  21. }
  22.  
  23. @font-face {
  24. font-family: baligle;
  25. src:url(https://dl.dropbox.com/s/iu9a60e3nidrio6/KittenSlantTrial.ttf);
  26. }
  27.  
  28. @font-face {
  29. font-family:'handy';
  30. src: url(https://dl.dropbox.com/s/kqvt2miu9r4y9ye/handy00.ttf);
  31. }
  32.  
  33. body {
  34. background: #ffffc2;
  35. }
  36.  
  37. html {
  38. height: 100vh;
  39. width: 100vw;
  40. font-size: 16px;
  41. position: fixed;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. }
  46.  
  47. #box {
  48. width: 19em;
  49. height: 15em;
  50. position:relativa;
  51. left:-1.2em;
  52. background: #f9e076;
  53. border-radius: 10px;
  54. position: relative;
  55. }
  56.  
  57. .title {
  58. font-family: lovely script;
  59. position: absolute;
  60. top: -7%;
  61. line-height: 0.1;
  62. color: #f9e076;
  63. -webkit-text-stroke: 0.8px #aaa;
  64. -webkit-filter: drop-shadow(0px 0px 1px #aaa);
  65. font-size: 2.7em;
  66. right: 20%;
  67. }
  68.  
  69. img { pointer-events: none;}
  70.  
  71. .icon {
  72. position: absolute;
  73. left: -7%;
  74. width: 120px;
  75. height: 120px;
  76. transform: rotate(-25deg);
  77. top: 22%;
  78. object-fit: cover;
  79. -webkit-mask-image: url(https://i.imgur.com/AUWVRo6.png);
  80. -webkit-mask-size: 100%;
  81. -webkit-mask-repeat: no-repeat;
  82. -webkit-mask-position: center;
  83. }
  84.  
  85. @-moz-keyframes spin {
  86. 100% {
  87. -moz-transform: rotate(360deg);
  88. }
  89.  
  90. }
  91. @-webkit-keyframes spin {
  92. 100% {
  93. -webkit-transform: rotate(360deg);
  94. }
  95. }
  96. @keyframes spin {
  97. 100% {
  98. -webkit-transform: rotate(360deg);
  99. transform:rotate(360deg);
  100. }
  101. }
  102.  
  103. .tile-cont {
  104. position: absolute;
  105. bottom: 15px;
  106. right:2%;
  107. width: 63%;
  108. height: 88%;
  109. background: transparent;
  110. border-radius: 10px;
  111. overflow-x: scroll;
  112. overflow-y: hidden;
  113. white-space: nowrap;
  114. padding: 0px;
  115. }
  116.  
  117. .tile {
  118. margin-right: 15px;
  119. border: 1px solid #aaa;
  120. position: relative;
  121. width: 100%;
  122. height: 100%;
  123. white-space: normal;
  124. display: inline-block;
  125. -webkit-backdrop-filter: blur(2px);
  126. backdrop-filter: blur(2px);
  127. box-shadow: 0 0 2px rgba(140,140,140,.2);
  128. background: rgb(255, 255, 255, 0.5);
  129. border-radius: 10px;
  130. padding: 10px;
  131. font-family: 'Archivo', sans-serif;
  132. font-size: 12px;
  133. overflow-y: scroll;
  134. text-align: left;
  135. }
  136.  
  137. .bubble {
  138. -webkit-filter: drop-shadow(0px 0px 2px #000000);
  139. position: absolute;
  140. top: 19%;
  141. left: -7%;
  142. line-height: 16px;
  143. background: #fff;
  144. border-radius: 40px;
  145. padding-left: 7px;
  146. padding-right: 7px;
  147. padding-top: 2px;
  148. padding-bottom: 2px;
  149. text-align: center;
  150. color: #000;
  151. font-family: handy;
  152. font-size: 0.71em;
  153.  
  154. }
  155.  
  156. .bubble p{
  157.  
  158. }
  159.  
  160. .bubble-bottom-left:before {
  161. content: "";
  162. font-family: handy;
  163. -webkit-transform: scaleX(1);
  164. transform: scaleX(1);
  165. width: 0px;
  166. height: 0px;
  167. position: absolute;
  168. border-left: 10px solid #fff;
  169. border-right: 8px solid transparent;
  170. border-top: 7px solid #fff;
  171. border-bottom: 10px solid transparent;
  172. right: 32px;
  173. bottom: -14px;
  174. }
  175.  
  176. .dollie {
  177. width: auto;
  178. height: 100%;
  179. margin-right: 10px;
  180. -webkit-filter: drop-shadow(0px 0px 2px #000000);
  181. }
  182.  
  183. .infp {
  184. font-size: 0.7em;
  185. font-family: handy;
  186. position: absolute;
  187. bottom: 17%;
  188. left: 12px;
  189. color: #000;
  190. -webkit-backdrop-filter: blur(2px);
  191. backdrop-filter: blur(2px);
  192. background: rgb(255, 255, 255, 0.5);
  193. padding: 7px;
  194. border-radius: 10px;
  195. text-align: center;
  196. }
  197.  
  198. .exp{
  199. border-radius: 100%;
  200. border: 4px plain #fff;
  201. position:relative;
  202. left:7px;
  203. top: 5px;
  204. height:50px;
  205. }
  206.  
  207. mark {
  208. background-image: radial-gradient( #ffffc2 20%, #ffffc2 20%, #fbeeba 60%); padding-left: 10px;
  209. padding-right: 10px;
  210. padding-top: 5px;
  211. padding-bottom: 5px;
  212. font-size: 12px;
  213. font-family: handy;
  214. color: #f9e076;
  215. text-shadow: -1px 0 #000000, 0 1px #000000, 1px 0 #000000, 0 -1px #000000 0 0;
  216. }
  217. </style>
Add Comment
Please, Sign In to add comment