Advertisement
xisalem

CSS code for myspace.windows93

Feb 14th, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.38 KB | None | 0 0
  1. KEY:
  2. **___** directions DO NOT DELETE ANYTHING OUTSIDE OF THESE, JUST THE ** AND THE WORDS INSIDE!!
  3. HEXCODE means the code for the color you'd like. You can just search a color you want and type "hexcode" after it. for example, bright pink is #ff007f
  4.  
  5. ⬇⬇ this is for your background image / color ⬇⬇
  6.  
  7. body {
  8. background-image: url(**PASTE URL HERE IN PARENTHESIS**);
  9. font-family: monospace;
  10. padding-top: 45px;
  11. font-size: 15px;
  12. color: **PASTE HEX CODE HERE**;
  13. }
  14.  
  15. ⬇⬇ this is for the area around your profile picture, and basic info (gender, age, where you live)⬇⬇
  16.  
  17. .short {
  18. margin-top: -15px;
  19. background: **PASTE HEX CODE HERE**;
  20. border: solid 2px **PASTE HEXCODE HERE**;
  21. }
  22.  
  23. ⬇⬇ this is for your contacting box ⬇⬇
  24.  
  25. .boxInfo {
  26. border: 1px solid **PASTE HEXCODE HERE**;
  27. margin-bottom: 20px;
  28. margin-top: 20px;
  29. background-color: **PASTE HEXCODE HERE**;
  30. border: **PASTE HEXCODE HERE**;
  31. }
  32.  
  33. ⬇⬇ this is the background for the ENTIRE left-hand side boxes (contacting, url, basic info, mp3) ⬇⬇
  34.  
  35. div.topLeft {
  36. background: **PASTE HEXCODE HERE**;
  37. }
  38.  
  39. ⬇⬇ this is if you'd like a border around the ENTIRE left-hand side boxes (contacting, url, basic info, mp3)⬇⬇
  40.  
  41. .topLeft {
  42. float: left;
  43. width: calc( 39% - 20px );
  44. padding: 10px;
  45. background: ***PASTE HEXCODE HERE**;
  46. border: solid 2px **PASTE HEXCODE HERE**;
  47. }
  48.  
  49. ⬇⬇ this is if you'd like ONLY the "contacting [insert user]" to be costumized ⬇⬇
  50. .boxHead {
  51. background: **PASTE HEXCODE HERE**;
  52. color: **PASTE HEXCODE HERE**;
  53. padding: 3px;
  54. padding-bottom: 4px;
  55. padding-left: 6px;
  56. }
  57.  
  58. ⬇⬇ this is if you want your url box to be customized ⬇⬇
  59. .url {
  60. border: solid 2px red;
  61. padding: 2px;
  62. background: #ff000045;
  63. }
  64.  
  65. ⬇⬇ this is if you want the "[insert user]'s blurbs" to be customized ⬇⬇
  66.  
  67. .rightHead {
  68. background: **PASTE HEXCODE HERE**;
  69. color: red;
  70. padding-left: 4px;
  71. border: solid 2px **PASTE HEXCODE HERE**;
  72. }
  73.  
  74. ⬇⬇ this is to change the colors of the "About me" and "Who I'd like to meet" text ⬇⬇
  75.  
  76. h4 {
  77. color: **PASTE HEXCODE HERE**;
  78. margin-bottom: 0px;
  79. }
  80.  
  81. ⬇⬇ this is to customize your "friends space" ⬇⬇
  82.  
  83. div.box.fwiends {
  84. border: solid 1px **PASTE HEXCODE HERE**;
  85. overflow: hidden;
  86. }
  87.  
  88. ⬇⬇ this is to customize the comment userboxes ⬇⬇
  89.  
  90. .tableLeft{
  91. background: **PASTE HEXCODE HERE**;
  92. }
  93.  
  94. ⬇⬇ this is to customize the comment boxes themselves ⬇⬇
  95.  
  96. .tableRight{
  97. background: **PASTE HEXCODE HERE**;
  98. border: solid 2px **PASTE HEXCODE HERE**;
  99. }
  100.  
  101. ⬇⬇ this is to give comment boxes and userboxes a border ⬇⬇
  102.  
  103. div.box.comments {
  104. border: solid 2px **PASTE HEXCODE HERE**;
  105. overflow: hidden;
  106. }
  107.  
  108. ⬇⬇ this is to customize the "comments" box ⬇⬇
  109.  
  110. .boxHead {
  111. background: **PASTE HEXCODE HERE**;
  112. color: **PASTE HEXCODE HERE**;
  113. padding: 3px;
  114. padding-bottom: 4px;
  115. padding-left: 6px;
  116. border: solid 2px **PASTE HEXCODE HERE**;
  117. }
  118.  
  119. ⬇⬇ to customize the "comments" text itself ⬇⬇
  120. * {
  121. color: **PASTE HEXCODE HERE**;
  122. }
  123.  
  124. ⬇⬇ this is the background for the ENTIRE right-hand side boxes (about me, comments, blog posts, blurgs, etc..) ⬇⬇
  125.  
  126. .topRight {
  127. float: right;
  128. width: calc( 60% - 20px );
  129. padding: 10px;
  130. background: **PASTE HEXCODE HERE**;
  131. }
  132.  
  133. ⬇⬇ this is to customize the box at the very top of your page that says myspace.windows93, mailbox, signout ⬇⬇
  134.  
  135. div#header {
  136. all: unset;
  137. font-family: monospace;
  138. font-size: 15px;
  139. background-color: **PASTE HEXCODE HERE**;
  140. color: **PASTE HEXCODE HERE**;
  141. position: fixed;
  142. width: calc( 100% - 15px );
  143. height: 22px;
  144. padding: 5px;
  145. left: 0px;
  146. top: 0px;
  147. margin-bottom: 40px;
  148. border-bottom: 1px solid **PASTE HEXCODE HERE**;
  149. padding-left: 10px;
  150. padding-top: 6px;
  151. overflow: hidden;
  152. z-index: 300;
  153. }
  154.  
  155. ⬇⬇ this is to customize the text that says search, blog, home, my fwiends, etc ⬇⬇
  156.  
  157. #hSub a {
  158. color: **PASTE HEXCODE HERE**;
  159. text-decoration: none;
  160. }
  161.  
  162. ⬇⬇ this is to customize the "edit mp3" button, I believe? ⬇⬇
  163.  
  164. .boxButton {
  165. display: inline-block;
  166. width: calc( 49% - 60px );
  167. padding-left: 30px;
  168. height: 24px;
  169. font-size: small;
  170. color: **PASTE HEXCODE HERE**;
  171. padding-top: 7px;
  172. }
  173.  
  174. ⬇⬇ this is to customize the box around the mp3 youre playing ⬇⬇
  175.  
  176. .player {
  177. padding: 4px;
  178. margin-top: 20px;
  179. margin-bottom: 20px;
  180. background: **PASTE HEXCODE HERE**;
  181. color: **PASTE HEXCODE HERE**;
  182. width: calc(100% - 10px );
  183. border: 1px solid **PASTE HEXCODE HERE**;
  184. }
  185.  
  186. ⬇⬇ this is to customize the box that says search, blog, home, my fwiends, etc ⬇⬇
  187.  
  188. div#hSub {
  189. font-family: monospace;
  190. color: **PASTE HEXCODE HERE**;
  191. background: **PASTE HEXCODE HERE**;
  192. border: solid 2px **PASTE HEXCODE HERE**;
  193. }
  194.  
  195. ⬇⬇ this is to customize the mp3 player itself, i believe..? ⬇⬇
  196.  
  197. audio {
  198. /* border: solid 1px **PASTE HEXCODE HERE**; */
  199. /* padding: 2px; */
  200. margin-bottom: 0px;
  201. margin-top: 5px;
  202. width: 100%;
  203. height: 30px;
  204. /* background:**PASTE HEXCODE HERE**; */
  205. outline: none;
  206. margin-bottom: -3px;
  207. }
  208.  
  209. ⬇⬇ this is to customize the.. not sure. I'm assuming the "send" button on the comments? ⬇⬇
  210.  
  211. button {
  212. width: max-content;
  213. color: red;
  214. background: **PASTE HEXCODE HERE**;
  215. border: solid 1px **PASTE HEXCODE HERE**;
  216. }
  217.  
  218. ⬇⬇ this is to customize the comment box where you type in your comments ⬇⬇
  219.  
  220. #commentInput {
  221. width: calc( 100% - 6px );
  222. margin: 0;
  223. margin-top: 10px;
  224. background: **PASTE HEXCODE HERE**;
  225. height: 100px;
  226. border: solid 1px **PASTE HEXCODE HERE**;
  227. }
  228.  
  229. ⬇⬇ this is to change the background color on your blog posts ⬇⬇
  230.  
  231. .blog {
  232. background-color: **PASTE HEXCODE HERE**;
  233. padding: 15px;
  234. }
  235.  
  236. ⬇⬇ this is to change the friend count color. Like, the text that says "13" or "100" or however many friends you have ⬇⬇
  237.  
  238. .fwiendCount {
  239. color: **PASTE HEXCODE HERE**;
  240. }
  241.  
  242. ⬇⬇ heres the website I used to customize my curser ⬇⬇
  243.  
  244. https://www.cursors-4u.com/
  245.  
  246. **aaaand that should be all. I hope this helped! feel free to change up any of this code to what you like.**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement