Advertisement
izuemis

cr kaitric codes

Sep 20th, 2022
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <style>
  2.  
  3. #text04 {
  4. height: 7em;
  5. overflow: auto;
  6. border: 2px double white;
  7. padding: 5px;
  8. }
  9.  
  10. #text02, #text03 {
  11. height: 5em;
  12. border: 2px double white;
  13. overflow: auto;
  14. padding: 5px;
  15. }
  16.  
  17. #container02 > .wrapper {
  18. width: 6em;
  19. border: 2px double #4C647A;
  20. }
  21.  
  22. #container02 {
  23. position: absolute;
  24. right: 1em;
  25. top: 8em;
  26. }
  27.  
  28. #image02 {
  29. position: absolute;
  30. left: -.5em;
  31. top: 1em;
  32. z-index: 2;
  33. -webkit-animation: pop 1s ease-in-out infinite alternate;
  34. animation: pop 1s ease-in-out infinite alternate;
  35. -moz-animation: pop 1s ease-in-out infinite alternate;
  36. }
  37.  
  38. @keyframes pop {
  39. from {
  40. transform:scale(0.95)
  41. }
  42.  
  43. 50% {
  44. transform:scale(1)
  45. }
  46.  
  47. to {
  48. transform:scale(0.95)
  49. }
  50. }
  51.  
  52. @-webkit-keyframes pop {
  53. from {
  54. -webkit-transform:scale(0.95)
  55.  
  56. }
  57.  
  58. 50% {
  59. -webkit-transform:scale(1)
  60.  
  61. }
  62.  
  63. to {
  64. -webkit-transform:scale(0.95)
  65.  
  66. }
  67. }
  68.  
  69. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement