Advertisement
dollzito

seori stellular code

Jan 25th, 2025 (edited)
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>my web site</title>
  7. </head>
  8.  
  9. <body>
  10. <div class="container">
  11. <div class="left">
  12. <img class="profile" src="https://i.pinimg.com/564x/2b/43/98/2b4398d7926af17f9fb85742557d723f.jpg"/>
  13. <a href="https://x.com/dollzito">My Link</a>
  14. </div>
  15. <div class="textbox"><mark>about</mark> call me nalui or nana! 20 she her & pisces. <br/><br/> <mark>loves</mark> 2seok ♡ coding music anime seori and gameplays. <br/><br/> <mark>to know</mark> selective with follows, mostly rts, often change my account layout. <br/><br/> © dollzito, 2025. all rights reserved</div>
  16. </div>
  17. </body>
  18.  
  19. <style>
  20. @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  21.  
  22. * {
  23. padding: 0;
  24. margin: 0;
  25. box-sizing: border-box;
  26. font-family: "Poppins", sans-serif;
  27. }
  28.  
  29. body {
  30. min-height: 100vh;
  31. background: #ececff;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36.  
  37. .container {
  38. width: 16em;
  39. height: 10em;
  40. background: white;
  41. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.376), inset -10px 0px 6px -10px rgba(66,66,66,0.376), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(66,66,66,0.376);
  42. border-radius: 0.8em;
  43. padding: 12px;
  44. display: flex;
  45. align-items: center;
  46. flex-wrap: wrap;
  47. gap: 12px;
  48. }
  49.  
  50. .left {
  51. display: flex;
  52. flex-direction: column;
  53. gap: 12px;
  54. }
  55.  
  56. .profile {
  57. width: 6em;
  58. height: 6em;
  59. border-radius: 0.5em;
  60. object-fit: cover;
  61. }
  62.  
  63. a {
  64. color: #9d9dca;
  65. font-size: 13px;
  66. font-weight: 500;
  67. text-decoration: none;
  68. text-align: center;
  69. background: linear-gradient(0deg, rgba(226,226,255,1) 0%, rgba(250,250,255,1) 100%);
  70. border: 1px solid #c7c7e1;
  71. border-radius: 0.5em;
  72. padding: 4px;
  73. }
  74.  
  75. a:hover {
  76. color: #ffffff;
  77. background: linear-gradient(0deg, rgba(250,250,255,1) 0%, rgba(226,226,255,1) 100%);
  78. }
  79.  
  80. .textbox {
  81. width: 53%;
  82. height: 100%;
  83. font-size: 11px;
  84. line-height: 1.3;
  85. border: 1px solid #c7c7e1;
  86. border-radius: 0.5em;
  87. padding: 9px;
  88. overflow-y: scroll;
  89. }
  90.  
  91. mark {
  92. color: white;
  93. font-weight: bold;
  94. background: #dadaff;
  95. padding: 0px 5px;
  96. border-radius: 10em;
  97. }
  98. </style>
  99. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement