Advertisement
izuemis

nemesis crd positioning codes

Sep 7th, 2022
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. <style>
  2.  
  3. #icons01 {
  4. position: relative;
  5. top: .5em;
  6. }
  7.  
  8. #text01 a:hover {
  9. webkit-filter: blur(0.5px);
  10. filter: blur(2px);
  11. text-decoration: none;
  12. }
  13.  
  14. #buttons01 {
  15. z-index: 999;
  16. position: absolute;
  17. right: 1.5em;
  18. bottom: 1em;
  19. }
  20.  
  21. #text01 {
  22. z-index: 999;
  23. position: absolute;
  24. top: -.5em;
  25. left: -.125em;
  26. animation-name: floating;
  27. animation-duration: 3s;
  28. animation-iteration-count: infinite;
  29. animation-timing-function: ease-in-out;
  30. }
  31.  
  32. @keyframes floating {
  33. 0% { transform: translate(0, 0px); }
  34. 50% { transform: translate(0, 15px); }
  35. 100% { transform: translate(0, -0px); }
  36. }
  37.  
  38. #container02 {
  39. z-index: 998;
  40. position: absolute;
  41. left: 1em;
  42. top: 2em;
  43. -webkit-animation: scale-in-hor-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  44. animation: scale-in-hor-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  45. }
  46. /* ----------------------------------------------
  47. * Generated by Animista on 2022-9-7 14:29:39
  48. * Licensed under FreeBSD License.
  49. * See http://animista.net/license for more info.
  50. * w: http://animista.net, t: @cssanimista
  51. * ---------------------------------------------- */
  52.  
  53. /**
  54. * ----------------------------------------
  55. * animation scale-in-hor-left
  56. * ----------------------------------------
  57. */
  58. @-webkit-keyframes scale-in-hor-left {
  59. 0% {
  60. -webkit-transform: scaleX(0);
  61. transform: scaleX(0);
  62. -webkit-transform-origin: 0% 0%;
  63. transform-origin: 0% 0%;
  64. opacity: 1;
  65. }
  66. 100% {
  67. -webkit-transform: scaleX(1);
  68. transform: scaleX(1);
  69. -webkit-transform-origin: 0% 0%;
  70. transform-origin: 0% 0%;
  71. opacity: 1;
  72. }
  73. }
  74. @keyframes scale-in-hor-left {
  75. 0% {
  76. -webkit-transform: scaleX(0);
  77. transform: scaleX(0);
  78. -webkit-transform-origin: 0% 0%;
  79. transform-origin: 0% 0%;
  80. opacity: 1;
  81. }
  82. 100% {
  83. -webkit-transform: scaleX(1);
  84. transform: scaleX(1);
  85. -webkit-transform-origin: 0% 0%;
  86. transform-origin: 0% 0%;
  87. opacity: 1;
  88. }
  89. }
  90.  
  91. @media only screen and (max-width: 600px) {
  92. #buttons01 {
  93. z-index: 999;
  94. position: absolute;
  95. right: 1.125em;
  96. bottom: 1em;
  97. }
  98. }
  99.  
  100. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement