jellyfishhh

fiveneecss

Jun 14th, 2026 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | Source Code | 0 0
  1. body {
  2. background: #38c7ff;
  3. font-family:consolas;
  4. letter-spacing:1px;
  5. font-size: 14px;
  6. background: linear-gradient(317deg,rgba(56, 199, 255, 1) 0%, rgba(181, 255, 211, 1) 50%, rgba(194, 194, 194, 1) 100%);
  7. }
  8. a {
  9. color: #38c7ff;
  10. font-family:consolas;
  11. letter-spacing:1px;
  12. }
  13. .bias {
  14. position: absolute;
  15. display: block;
  16. top: 600px;
  17. left: 540px;
  18. background-color:rgb(194, 248, 235);
  19. border: 1px solid rgb(107, 107, 107);
  20. padding:30px;
  21. display: inline-block;
  22. align-items: center;
  23. border-radius: 50%;
  24. z-index: 10;
  25. }
  26.  
  27. .parent {
  28. display: grid;
  29. grid-template-columns: repeat(3, 1fr);
  30. grid-template-rows: repeat(3, 1fr);
  31. gap: 8px;
  32. height: 700px;
  33. width: 700px;
  34. position: inline-block;
  35. border: 1px solid black;
  36. padding: 5px;
  37. margin: auto;
  38. background: #ffffff;
  39. z-index: 1;
  40. }
  41.  
  42. .nav {
  43. grid-column: span 3 / span 3;
  44. border: 1px solid rgb(148, 148, 148);
  45. background: #b0e9ff;
  46. background: linear-gradient(90deg, rgb(151, 226, 253) 0%, rgba(189, 255, 190, 1) 100%);
  47. text-align: center;
  48. height: 150px;
  49. width: 700px;
  50. }
  51. h1 {
  52. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  53. font-size: 40px;
  54. color:#bcf3ef;
  55. -webkit-text-stroke: 2px rgba(148, 148, 148, 0.637);
  56. text-shadow:2px 1px 5px #38c7ff;
  57. letter-spacing: 2px;
  58. padding: 3px;
  59. border: 1px solid rgb(148, 148, 148);
  60. background:rgba(189, 255, 190, 1);
  61. }
  62. h1:hover{
  63. text-decoration: underline dotted lightskyblue 3px;
  64. }
  65.  
  66. .link {
  67. text-align: center;
  68. text-decoration: none;
  69. display: inline-block;
  70. margin: 10px;
  71. }
  72. .link img {
  73. transition: all 0.3s ease-out;
  74. position: relative;
  75. z-index: 2;
  76. }
  77. .link:hover img {
  78. transform: scale(1.2, 1.2);
  79. z-index: 9;
  80. }
  81.  
  82. .div3 {
  83. grid-column: span 2 / span 2;
  84. grid-row: span 2 / span 2;
  85. grid-row-start: 2;
  86. background: rgb(209, 243, 255);
  87. border:1px solid rgb(148, 148, 148);
  88. border-radius: 5px;
  89. padding: 2px;
  90. overflow-y: scroll;
  91. scrollbar-color:lightcyan rgb(153, 255, 250);
  92. scrollbar-width: thin;
  93. }
  94.  
  95. .div4 {
  96. grid-row: span 2 / span 2;
  97. grid-column-start: 3;
  98. grid-row-start: 2;
  99. background: lightcyan;
  100. border:1px solid rgb(148, 148, 148);
  101. border-radius: 5px;
  102. padding: 2px;
  103. overflow-y: scroll;
  104. scrollbar-color: lightcyan rgb(153, 255, 250);
  105. scrollbar-width: thin;
  106. }
  107.  
  108. .Diamondbutton{
  109. background:url('images/diamondunclicked.png') no-repeat;
  110. background-size: cover;
  111. cursor:pointer;
  112. height: 70px;
  113. width: 70px;
  114. border: transparent;
  115. }
  116.  
  117. .Diamondbutton:hover
  118. {
  119. background:url('images/diamondclicked.png') no-repeat;
  120. background-size: cover;
  121. }
  122.  
  123. ul{
  124. font-family: monospace;
  125. font-size: 14px;
  126. list-style-image:url('images/diaicon.png');
  127. list-style-type: square;
  128. }
  129.  
  130. h2{
  131. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  132. font-size: 30px;
  133. color:rgba(189, 255, 190, 1);
  134. text-shadow: 2px 1px #38c7ff;
  135. -webkit-text-stroke: 1px rgba(31, 130, 143, 0.637);
  136. letter-spacing: 2px;
  137. padding: 3px;
  138. text-align: center;
  139. }
  140. h3{
  141. font-family: monospace;
  142. font-size: 16px;
  143. text-transform: uppercase;
  144. color: transparent;
  145. padding: 2px;
  146. -webkit-background-clip: text;
  147. background-clip: text;
  148. background-size: 300%;
  149. animation: move 8s ease-out;
  150. background-image: linear-gradient( 68.7deg, rgba(29,173,235,1) 13.2%, rgba(137,149,250,1) 29.8%, rgb(155, 202, 202) 48.9%, rgb(65, 148, 116) 68.2%, rgb(209, 194, 243) 86.4% );
  151. }
  152.  
  153. @keyframes move {
  154. 0%,100%{
  155. background-position: 200% 0%;
  156. }
  157.  
  158. 50%{
  159. background-position: 0% 200%;
  160. }
  161. }
  162. .by {
  163. text-align: center;
  164. position:relative;
  165. font-size: 8px;
  166. color:rgb(0, 150, 150)
  167. }
Tags: CSS layout
Advertisement
Add Comment
Please, Sign In to add comment