dollcrds

neocities tutorial #2 css

Aug 13th, 2025 (edited)
13,498
2
Never
6
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.13 KB | None | 2 0
  1. // fonts
  2. @font-face {
  3. font-family: kawaii stitch;
  4. src: url(https://dl.dropbox.com/s/yjal3we9j6biyn5/Kawaii%20Stitch.ttf);}
  5.  
  6. @font-face {
  7. font-family: starborn;
  8. src: url(https://dl.dropbox.com/s/l0541on0m5eqvdj/Starborn.ttf);
  9. }
  10.  
  11. @font-face {
  12. font-family: pixel;
  13. src: url(https://dl.dropbox.com/s/kmhe7d3n18vdz5e/w95fa.woff?dl=0);
  14. }
  15.  
  16. @font-face {
  17. src: url(https://dl.dropbox.com/s/ct0s037q78sao3f/Frighted.ttf);
  18. font-family: Frighted;
  19. }
  20.  
  21. @font-face {
  22. src: url(https://dl.dropbox.com/s/ktlx5w7t8gk42nb/SakeMoru-Regular.ttf);
  23. font-family: SakeMoru;
  24. }
  25.  
  26. @font-face {
  27. font-family:'yipes';
  28. src: url(https://dl.dropbox.com/s/qrdm3wived8sm66/Yipes.ttf);
  29. }
  30.  
  31. @font-face {
  32. font-family:'fenotype';
  33. src: url(https://dl.dropbox.com/s/klo6yfrf62916qp/02.10FEN.TTF);
  34. }
  35.  
  36. // main container (u may change the border image - link in description of video for more codes)
  37. border-width:7px;
  38. border-style:solid;
  39. border-image: url("https://foollovers.com/mat/menu05/51a-none.gif") 9 fill round;
  40. margin: auto;
  41. width: 884px;
  42. height: 665px;
  43. position: relative;
  44. padding: 5px;
  45. z-index: 4;
  46.  
  47. // first container
  48. border-width: 1px;
  49. border-style: solid;
  50. border-color: white;
  51. background-image: url('IMG LINK HERE');
  52. background-repeat: repeat;
  53. width: 880px;
  54. position: relative;
  55. left: 1px;
  56. height: 170px;
  57. box-shadow: 0 0 8px 8px white inset;
  58. z-index: 5;
  59.  
  60. // name "blank's website"
  61. font-family: kawaii stitch;
  62. font-size: 2em;
  63. -webkit-text-stroke: 1px white;
  64. color: #color;
  65. margin-top: 60px;
  66. margin-left: 10px;
  67.  
  68. // outer image (u may change the border image - link in description of video for more codes)
  69. border-width:7px;
  70. border-style:solid;
  71. border-image: url("https://foollovers.com/mat/baf/food/fo32-008-a.gif") 7 fill round;
  72. border-radius:15px;
  73. width: 115px;
  74. height: 115px;
  75. margin-top: 10px;
  76.  
  77. // inner image
  78. width: 100%;
  79. height: 100%;
  80. background-image: url('IMG LINK HERE');
  81. background-size: cover;
  82.  
  83. // "introduction" text
  84. background-image: radial-gradient(#color 30%, transparent 70%);
  85. font-family: starborn;
  86. color: white;
  87. -webkit-text-stroke: 1px black;
  88. text-align: center;
  89. font-size: 1.5em;
  90. margin-bottom: 5px;
  91.  
  92. // highlighted text in the "introduction" box
  93. font-family: Frighted;
  94. background: linear-gradient(#color 50%, white);
  95. -webkit-background-clip: text;
  96. -webkit-text-fill-color: transparent;
  97. font-size: 1.5em;
  98.  
  99. // ipad outer
  100. border-radius: 10px;
  101. padding: 1em 0.55em 1em 0.55em;
  102. width: 19.5em;
  103. height: 19.5em;
  104. background: #color;
  105.  
  106. // ipad inner ("apple")
  107. height: 16.5em;
  108. background: white;
  109. border-radius: 2px;
  110. border: 2px inset #color;
  111.  
  112. // positioning for ipad ("four")
  113. position: relative;
  114. top: -7.5em;
  115.  
  116. // receiving bubble message
  117. border-radius: 0px 25px 25px 25px;
  118. padding: 7px;
  119. background: #color;
  120. font-family: pixel;
  121. box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 56%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
  122. margin-bottom: 10px;
  123. border: 1px solid #color;
  124.  
  125. // sending bubble message
  126. border-radius: 25px 0px 25px 25px;
  127. padding: 7px;
  128. background: #color;
  129. font-family: pixel;
  130. box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 56%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
  131. margin-bottom: 10px;
  132. border: 1px solid #color;
  133.  
  134. // "chat" container
  135. height: 15.5em;
  136. width: 18em;
  137. position: relative;
  138. top: -16.125em;
  139. left: 13px;
  140. overflow-y: scroll;
  141.  
  142. // container with social buttons ("navi")
  143. border: 3px solid #color;
  144. height: 200.5px;
  145. background: white;
  146. width: 281px;
  147. position: relative;
  148. top: -37.5em;
  149. left: 595px;
  150. box-shadow: inset 13px 0 6px -10px rgb(66 66 66 / 30%), inset -13px 0 6px -10px rgb(66 66 66 / 30%), inset 0 13px 6px -10px #f0f0f0, inset 0 0 0 -10px rgb(66 66 66 / 30%);
  151.  
  152. // buttons
  153. border-radius: 50px;
  154. border: 2px solid black;
  155. background-image: url('IMG LINK HERE');
  156. background-size: cover;
  157. font-family: pixel;
  158. font-size: 1.25em;
  159. color: white;
  160. width: 276px;
  161. margin-top: 10px;
  162. margin-left: 3px;
  163.  
  164. // container with scroll container on the inside
  165. width: 18em;
  166. height: 16.25em;
  167. border-radius: 15px;
  168. border: 1px solid white;
  169. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(66,66,66,0.376);
  170. background: radial-gradient(circle, rgba(255,255,255,1) 37%, #color 100%);
  171. position: relative;
  172. top: -36.75em;
  173. left: 595px;
  174.  
  175. // top of container on the inside (with image title)
  176. background: #color;
  177. font-family: SakeMoru;
  178. text-align: center;
  179. color: white;
  180. border-radius: 10px 10px 0 0;
  181. padding: 0.5em;
  182. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  183. -webkit-filter: drop-shadow(0px 0px 1px black);
  184. -webkit-text-stroke: 0.5px black;
  185. width: 15em;
  186. margin-left: 17px;
  187.  
  188. // bottom of container on the inside (with info text)
  189. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  190. border-radius: 0px 0px 10px 10px;
  191. padding: 0.9em;
  192. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  193. -webkit-filter: drop-shadow(0px 0px 1px black);
  194. font-family: pixel;
  195. color: black;
  196. width: 14.2em;
  197. margin-left: 17px;
  198. height: 7em;
  199. line-height: 1.375em;
  200. overflow-y: scroll;
  201.  
  202. // numbers (highlight)
  203. font-family:'fenotype';
  204. border: 1px solid black;
  205. color: white;
  206. background: #color;
  207. padding-top: 5px;
  208. padding-left: 3px;
  209. padding-right: 3px;
  210. padding-bottom: 3px;
  211. -webkit-text-stroke: 1px black;
  212.  
  213. // highlighted text (links and other key words)
  214. font-family:'yipes';
  215. background: linear-gradient(#color 50%, #color);
  216. -webkit-background-clip: text;
  217. -webkit-text-fill-color: transparent;
  218. font-size: 1.5em;
  219. font-weight:bold;
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment