mixue

cr ivorbnd

Dec 23rd, 2022 (edited)
849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. --- MAIN CONTAINER ---
  2. box-shadow: inset 13px 0px 6px -10px rgb(184 184 184 / 56%), inset -13px 0px 6px -10px rgb(184 184 184 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(184 184 184 / 38%);
  3. height: 22em;
  4.  
  5. --- CONTAINER with IMAGE & TEXT ---
  6. width: 13.5em;
  7. box-shadow: inset 13px 0px 6px -10px rgb(184 184 184 / 56%), inset -13px 0px 6px -10px rgb(184 184 184 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(184 184 184 / 38%);
  8. border-radius: 1em 0 0 1em;
  9. position: absolute;
  10. right: -1em;
  11. bottom: 6em;
  12.  
  13. --- MAIN IMAGE ---
  14. border-radius: 0.7em 0 0.7em 0;
  15.  
  16. --- NAVIGATION CONTAINER ---
  17. box-shadow: inset 13px 0px 6px -10px rgb(184 184 184 / 56%), inset -13px 0px 6px -10px rgb(184 184 184 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(184 184 184 / 38%);
  18. width: 13.5em;
  19. border-radius: 1em 0 0 1em;
  20. position: absolute;
  21. right: -1em;
  22. bottom: 2.5em;
  23.  
  24. --- LINKS ON HOVER ---
  25. #elementID a:hover {
  26. text-shadow: -1px 0 #000000, 0 1px #000000, 1px 0 #000000, 0 -1px #000000;
  27. }
  28.  
  29. --- CREDITS TEXT ---
  30. position: absolute;
  31. right: 1.5em;
  32. bottom: 1em;
  33.  
  34. (mobile)
  35. left: 17.5em;
  36.  
  37. (Text: Highlight)
  38. box-shadow: inset 13px 0px 6px -10px rgb(184 184 184 / 56%), inset -13px 0px 6px -10px rgb(184 184 184 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(184 184 184 / 38%);
  39. background: #fff;
  40. border-radius: 0.3em;
  41. padding-left: 0.2em;
  42. padding-right: 0.2em;
  43. padding-bottom: 0.1em;
  44. font-family: hearts;
  45.  
  46. --- CONTAINER with GALLERY ---
  47. box-shadow: inset 13px 0px 6px -10px rgb(184 184 184 / 56%), inset -13px 0px 6px -10px rgb(184 184 184 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(184 184 184 / 38%);
  48. width: 13.5em;
  49. border-radius: 0 1em 1em 0;
  50. animation-name: floating;
  51. animation-duration: 3.5s;
  52. animation-iteration-count: infinite;
  53. animation-timing-function: ease-in-out;
  54. z-index: 10;
  55. position: absolute;
  56. left: -1.5em;
  57. bottom: 0.2em;
  58.  
  59. --- FLOAT ---
  60. @keyframes floating {
  61. 0% { transform: translate(0, 0px); }
  62. 50% { transform: translate(0, 15px); }
  63. 100% { transform: translate(0, -0px); }
  64. }
  65.  
  66. --- SCROLLABLE CONTAINER ---
  67. width: 11.7em;
  68. height: 300px;
  69. overflow: auto;
  70. border-radius: 0em 1em 1em 0em;
  71. z-index: 4;
  72. box-shadow: inset 13px 0px 6px -10px rgb(184 184 184 / 56%), inset -13px 0px 6px -10px rgb(184 184 184 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(184 184 184 / 38%);
  73.  
  74. (mobile)
  75. height: 235px;
  76.  
  77. --- POSITION for SCROLLABLE CONTAINER ---
  78. position: absolute;
  79. left: -1.5em;
  80. bottom: 5.2em;
  81.  
  82. --- INFO TEXTS ---
  83. font-family: hearts;
  84. padding-left: 0.2em;
  85. padding-top: 0.5em;
  86.  
  87. (Text: Highlight)
  88. font-family:'Magic';
  89. font-size: 2em;
  90.  
  91. --- ALL FONTS ---
  92. <style>
  93. @font-face {
  94. font-family:'Magic';
  95. src: url(https://dl.dropbox.com/s/fez9i3nk7qelaae/Magic%20Funk.ttf);
  96. }
  97.  
  98. @font-face {
  99. src: url(https://dl.dropbox.com/s/ktlx5w7t8gk42nb/SakeMoru-Regular.ttf);
  100. font-family: moru;
  101. }
  102.  
  103. @font-face {
  104. src: url(https://dl.dropbox.com/s/1479f8x52y3z5u4/rainyhearts.ttf);
  105. font-family: hearts;
  106. }
  107. </style>
  108.  
  109. --- ANIMATION ---
  110. <style>
  111. .scale-up-hor-left {
  112. -webkit-animation: scale-up-hor-left 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  113. animation: scale-up-hor-left 0.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  114. }
  115.  
  116. /* ----------------------------------------------
  117. * Generated by Animista on 2022-12-22 21:49:35
  118. * Licensed under FreeBSD License.
  119. * See http://animista.net/license for more info.
  120. * w: http://animista.net, t: @cssanimista
  121. * ---------------------------------------------- */
  122.  
  123. /**
  124. * ----------------------------------------
  125. * animation scale-up-hor-left
  126. * ----------------------------------------
  127. */
  128. @-webkit-keyframes scale-up-hor-left {
  129. 0% {
  130. -webkit-transform: scaleX(0.4);
  131. transform: scaleX(0.4);
  132. -webkit-transform-origin: 0% 0%;
  133. transform-origin: 0% 0%;
  134. }
  135. 100% {
  136. -webkit-transform: scaleX(1);
  137. transform: scaleX(1);
  138. -webkit-transform-origin: 0% 0%;
  139. transform-origin: 0% 0%;
  140. }
  141. }
  142. @keyframes scale-up-hor-left {
  143. 0% {
  144. -webkit-transform: scaleX(0.4);
  145. transform: scaleX(0.4);
  146. -webkit-transform-origin: 0% 0%;
  147. transform-origin: 0% 0%;
  148. }
  149. 100% {
  150. -webkit-transform: scaleX(1);
  151. transform: scaleX(1);
  152. -webkit-transform-origin: 0% 0%;
  153. transform-origin: 0% 0%;
  154. }
  155. }
  156. </style>
  157.  
Advertisement
Add Comment
Please, Sign In to add comment