mixue

cr autismswag69

Oct 27th, 2022 (edited)
828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. *ELEMENT STYLING*
  2.  
  3. --- MAIN CONTAINER ---
  4. box-shadow: inset -1px -1px #0a0a0a, inset 1px 0px #fff, inset -2px -2px grey, inset 2px 0px #dfdfdf;
  5. box-shadow-top: none;
  6.  
  7. --- MAIN INFO CONTAINER ---
  8. width: 19em;
  9. height: 19em;
  10.  
  11. (mobile)
  12. width: 12.7em;
  13. height: 12.7em;
  14.  
  15. --- POSITIONING FOR MAIN INFO CONTAINER ---
  16. position: absolute;
  17. bottom: 0.6em;
  18. left: 0.7em;
  19.  
  20. (mobile)
  21. bottom: 0.4em;
  22. left: 0.5em;
  23.  
  24. --- NAME TEXT ---
  25. (add this in Text: Highlight)
  26.  
  27. color: white;
  28. font-size: 3em;
  29. background: -webkit-linear-gradient(red, black);
  30. -webkit-background-clip: text;
  31. -webkit-text-stroke: 2px transparent;
  32. animation: blinkingText 1.7s infinite;
  33. letter-spacing: 0.05em;
  34.  
  35. (mobile)
  36. font-size: 2.5em;
  37.  
  38. --- OTHER INFO CONTAINER ---
  39. box-shadow: inset -1px -1px #0a0a0a, inset 1px 0px #fff, inset -2px -2px grey, inset 2px 0px #dfdfdf;
  40. width: 75%;
  41. height: 170px;
  42. z-index: 50;
  43.  
  44. (mobile)
  45. height: 120px;
  46. width: 85%;
  47.  
  48. --- POSITIONING FOR OTHER INFO CONTAINER ---
  49. position: absolute;
  50. bottom: 2.7em;
  51. right: 4.2em;
  52.  
  53. (mobile)
  54. right: 1.8em;
  55. bottom: 1.5em;
  56.  
  57. --- SCROLLBOX TEXT ---
  58. padding: 15px;
  59. border: 1px solid black;
  60. background: white;
  61. margin-left: 13px;
  62. width: 92%;
  63. height: 10em;
  64. overflow: auto;
  65.  
  66. (mobile)
  67. margin-left: 8px;
  68. width: 92%;
  69.  
  70. --- GIF ---
  71. z-index: 60;
  72. position: absolute;
  73. bottom: -2em;
  74. right: -3em;
  75.  
  76. (mobile)
  77. right: -2em;
  78.  
  79.  
  80. *MISCELLANEOUS*
  81.  
  82. --- TITLE 1 ---
  83. <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/98.css">
  84. <div class="window" style="box-shadow:inset -1px -0px #0a0a0a,inset 1px 1px #fff,inset -2px -0px grey,inset 2px 2px #dfdfdf; margin: auto;" >
  85. <div class="title-bar" style="background:linear-gradient(90deg, #fff 0%, #000 100%);">
  86. <div class="title-bar-text">text text text text text text</div>
  87. <div class="title-bar-controls"><button aria-label="Minimize"></button>
  88. <button aria-label="Maximize"></button>
  89. <button aria-label="Close"></button></div></div></div>
  90.  
  91. --- TITLE 2 ---
  92. <style>
  93. .window2 {
  94. background: #C0C0C0;
  95. box-shadow: inset -1px -0px #0a0a0a,inset 1px 1px #fff,inset -2px -0px grey,inset 2px 2px #dfdfdf;
  96. padding:3px;
  97. margin-top: -225px;
  98. margin-left: 70px;
  99. position: absolute;
  100. z-index: 50;
  101. width: 75%;
  102. }
  103.  
  104. @media only screen and (max-width: 600px) {
  105. .window2 {
  106. margin-top: -160px;
  107. margin-left: 26px;
  108. width: 85%;
  109. }
  110. }
  111.  
  112. </style>
  113. <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/98.css">
  114. <div class="window2">
  115. <div class="title-bar" style="background:linear-gradient(90deg, #fff 0%, #000 100%);">
  116. <div class="title-bar-text">text text text text text</div>
  117. <div class="title-bar-controls"><button aria-label="Minimize"></button>
  118. <button aria-label="Maximize"></button>
  119. <a href="#">
  120. <button aria-label="Close"></button></a></div></div></div>
  121.  
  122. --- ALL FONTS ---
  123. <style>
  124. @font-face {
  125. font-family: doll;
  126. src: url(https://dl.dropbox.com/s/qrpc4vyc15nw5wu/brutal-tooth.ttf);
  127. }
  128.  
  129. @font-face {
  130. font-family: dot;
  131. src: url(https://dl.dropbox.com/s/yc748m5thfiveuh/DotGothic16-Regular.ttf);
  132. }
  133. </style>
  134.  
  135. --- BLINKING TEXT ---
  136. <style>
  137. @keyframes blinkingText {
  138.  
  139. 0%{
  140. color: black;
  141. }
  142.  
  143. 30%{
  144. color: red;
  145. }
  146.  
  147. 50%{
  148. color: black;
  149. }
  150.  
  151. 80%{
  152. color: red;
  153. }
  154.  
  155. 100%{
  156. color: black;
  157. }
  158. }
  159. @media only screen and (max-width: 600px)
  160. {
  161. </style>
  162.  
  163. --- BUTTON ---
  164.  
  165. <button><a href="linkurl">Text</a></button>
  166.  
  167. --- LINK ---
  168.  
  169. <style>
  170. body {
  171. }
  172. a {
  173. color: #000;
  174. text-decoration: none;
  175. }
  176. </style>
Advertisement
Add Comment
Please, Sign In to add comment