mixue

cr lobilles 3

Feb 7th, 2023 (edited)
2,577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. * PLEASE CREDIT LOBILLES WHEN REMAKING *
  2.  
  3. --- MAIN CONTAINER ---
  4. #elementID > .wrapper {
  5. padding: 0.3em;
  6. border-radius: 0px 13px 13px 13px;
  7. width: 60%;
  8. right: 7px;
  9. }
  10.  
  11. --- NAME TEXT ---
  12. #elementID {
  13. font-family: 'fenotype';
  14. background: linear-gradient(to top, #828DF5 0%, #FFFFFF 100%);
  15. -webkit-background-clip: text;
  16. -webkit-text-fill-color: transparent;
  17. -webkit-text-stroke: 0.5px #585C82;
  18. -webkit-filter: drop-shadow(0px 0px 1px #656A96);
  19. }
  20.  
  21. --- MAIN IMAGE ---
  22. #elementID .frame {
  23. border-radius: 13px 13px 0px 0px;
  24. }
  25.  
  26. --- SCROLLBOX ---
  27. #elementID{
  28. overflow: auto;
  29. height: 5em;
  30. border-radius: 0px 0px 13px 13px;
  31. border: 1px solid #585C82;
  32. border-top: 0px;
  33. padding: 6px;
  34. background: #FFE6EF;
  35. }
  36.  
  37. #elementID a {
  38. text-decoration-style: dotted;
  39. }
  40.  
  41. --- BUTTONS ---
  42. #elementID li a {
  43. position: relative;
  44. bottom: 3em;
  45. left: 7.8em;
  46. width: 3.4em;
  47. height: 2.6em;
  48. font-family: 'fenotype';
  49. -webkit-text-stroke: 0.6px #656A96;
  50. font-size: 12px;
  51. border: 1px solid #585C82;
  52. padding: 4px;
  53. z-index: 3;
  54. }
  55.  
  56. @media only screen and (max-width: 600px) {
  57. #elementID li a {
  58. position: relative;
  59. bottom: 4em;
  60. left: 8.8em;
  61. font-size: 9px;
  62. width: 3.6em;
  63. line-height: 1.7em;
  64. }
  65. }
  66.  
  67. --- CONTAINER with IMAGE ---
  68. #elementID > .wrapper {
  69. width: 40%;
  70. height: 8.2em;
  71. padding: 0.3em;
  72. background: radial-gradient(circle, #FFFFFF 0%, #828DF5 50%, #FFFFFF 100%);
  73. border-radius: 13px;
  74. animation: blur 1s ease;
  75. position: absolute;
  76. bottom: 4.2em;
  77. right: 0.15em;
  78. }
  79.  
  80. @media only screen and (max-width: 600px) {
  81. #elementID > .wrapper {
  82. height: 8.5em;
  83. bottom: 4.7em;
  84. right: 0.25em;
  85. }
  86. }
  87.  
  88. --- PNG IMAGE ---
  89. #elementID .frame {
  90. position: relative;
  91. top: 10px;
  92. }
  93.  
  94. --- SCROLLABLE CONTAINER ---
  95. #elementID > .wrapper {
  96. width: 40%;
  97. height: 8.2em;
  98. padding: 0.3em;
  99. background: linear-gradient(180deg, #828DF5 0%, #FFFFFF 50%, #828DF5 100%);
  100. border-radius: 13px;
  101. overflow: auto;
  102. animation: blur 1s ease;
  103. position: absolute;
  104. bottom: 4.2em;
  105. right: 0.15em;
  106. }
  107.  
  108. @media only screen and (max-width: 600px) {
  109. #elementID > .wrapper {
  110. height: 8.5em;
  111. bottom: 4.7em;
  112. right: 0.25em;
  113. }
  114. }
  115.  
  116. --- MARK TEXT ---
  117. #elementID, #elementID, #elementID {
  118. font-family: 'fenotype';
  119. -webkit-text-stroke: 0.5px #6E7174;
  120. -webkit-filter: drop-shadow(0px 0px 0.9px #656A96);
  121. background-image: radial-gradient( #585C82 20%, #585C82 20% , transparent 80%);
  122. }
  123.  
  124. --- INFO TEXT ---
  125. #elementID, #elementID, #elementID {
  126. background: white;
  127. border: 1px solid #585C82;
  128. border-radius: 13px;
  129. padding: 0.3em;
  130. }
  131.  
  132.  
  133. --- FONT ---
  134. @font-face {
  135. font-family:fenotype;
  136. src: url(https://dl.dropbox.com/s/18jzmzyoaj2goje/FontsFree-Net-02.10FEN.ttf);
  137. }
  138.  
  139. --- BLUR ANIMATION ---
  140. @keyframes blur {
  141. from {
  142. filter: blur(40px);
  143. }
  144.  
  145. to {
  146. filter: blur(0);
  147. }
  148. }
Advertisement
Add Comment
Please, Sign In to add comment