dollcrds

pro standard cr carrdmestre style

Mar 29th, 2024
448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <style>
  2.  
  3. #text01 {
  4. font-family: windows;
  5. background: white;
  6. border: 1px solid black;
  7. border-radius: 3px 3px 3px 3px;
  8. padding: 3px;
  9. }
  10. #text02 {
  11. font-family: wondermagic;
  12. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  13. filter: drop-shadow(0px 0px 3px #000);
  14. -webkit-animation: pop 1s ease-in-out infinite alternate;
  15. animation: pop 1s ease-in-out infinite alternate;
  16. -moz-animation: pop 1s ease-in-out infinite alternate;
  17. }
  18.  
  19. @keyframes pop {
  20. from {
  21. transform:scale(0.95)
  22. }
  23.  
  24. 50% {
  25. transform:scale(1)
  26. }
  27.  
  28. to {
  29. transform:scale(0.95)
  30. }
  31. }
  32.  
  33. @-webkit-keyframes pop {
  34. from {
  35. -webkit-transform:scale(0.95)
  36.  
  37. }
  38.  
  39. 50% {
  40. -webkit-transform:scale(1)
  41.  
  42. }
  43.  
  44. to {
  45. -webkit-transform:scale(0.95)
  46.  
  47. }
  48. }
  49.  
  50. #text03 {
  51. font-family: windows;
  52. }
  53.  
  54. #container03 > .wrapper {
  55. position: absolute;
  56. z-index: 99;
  57. top: -18.25em;
  58. left: 12em;
  59. }
  60.  
  61. @media only screen and (max-width: 600px) {
  62. #container03 {
  63. top: -0.5em;
  64. }
  65. }
  66.  
  67. #text04, #text05 {
  68. border: 2px solid black;
  69. background: #E1E1E1;
  70. padding: 3px;
  71. border-radius: 5px 5px 5px 5px;
  72. font-family: windows;
  73. width: 12.5em;
  74. overflow-y: scroll;
  75. height: 8em;
  76. position: absolute;
  77. z-index: 9999;
  78. left: 10.5em;
  79. top: 10.5em;
  80. }
  81.  
  82. #text04 mark {
  83. color: blue;
  84. font-size: 1.5em;
  85. }
  86.  
  87. #text05 mark {
  88. color: blue;
  89. font-size: 1.5em;
  90. }
  91. </style>
Advertisement
Add Comment
Please, Sign In to add comment