Advertisement
izuemis

simple pro standard carrd

Sep 5th, 2022
691
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. -- CSS CODES --
  2. 1) set it to hidden head
  3.  
  4. <style>
  5.  
  6. @font-face {
  7. font-family: windows;
  8. src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
  9. }
  10.  
  11. @font-face {
  12. src: url(https://dl.dropbox.com/s/hfc6fjqu9kkxbt5/Sweet%20Creamy.ttf);
  13. font-family: creamy;
  14. }
  15.  
  16. @font-face {
  17. font-family:'antre';
  18. src: url(https://dl.dropbox.com/s/xaspbkonff6y9uf/antre.otf);
  19. }
  20.  
  21. #container01 > .wrapper {
  22. height: 15em;
  23. 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%);
  24. }
  25.  
  26. #container02 > .wrapper {
  27. height: 15em;
  28. 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%);
  29. }
  30.  
  31. #container03 > .wrapper {
  32. height: 15em;
  33. 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%);
  34. }
  35.  
  36. #text01, #text04, #text07 {
  37. font-family:'antre';
  38. color: #d2dcc7;
  39. filter: drop-shadow( 0 1px #a3adad) drop-shadow( 1px 0 #a3adad) drop-shadow( 0 -1px #a3adad) drop-shadow( -1px 0 #a3adad) drop-shadow( 0 2.5px white) drop-shadow( 2.5px 0 white) drop-shadow( 0 -2.5px white) drop-shadow( -2.5px 0 white) drop-shadow(1px 1px 0 rgba(172,172,172,0.6)) drop-shadow(1px 1px 0 rgba(172,172,172,0.6)) drop-shadow( 0 0 2px #a3adad);
  40. }
  41.  
  42. #buttons01 li a {
  43. font-family: creamy;
  44. 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%);
  45. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  46. border: 1px solid black;
  47. }
  48.  
  49. #text02, #text05, #text08 {
  50. height: 11em;
  51. background: rgba(255,255,255,0.8);
  52. border-radius: 10px;
  53. padding: 10px;
  54. font-family: windows;
  55. overflow: auto;
  56. }
  57.  
  58. #text02 mark, #text05 mark, #text08 mark {
  59. background: #a3adad;
  60. border: 1px solid black;
  61. border-radius: 5px;
  62. padding-left: 5px;
  63. padding-right: 5px;
  64. font-family: creamy;
  65. color: white;
  66. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  67. border: 1px solid black;
  68. }
  69.  
  70. #text03 mark, #text06 mark, #text09 mark {
  71. background: white;
  72. border: 1px solid black;
  73. border-radius: 20px;
  74. padding-left: 10px;
  75. padding-right: 10px;
  76. font-family: windows;
  77. }
  78.  
  79. </style>
  80.  
  81. -- ANIMATIONS & POSITIONING --
  82. 1) set it to inline
  83.  
  84. <style>
  85.  
  86. #text01, #text04, #text07 {
  87. z-index: 999;
  88. animation-name: floating;
  89. animation-duration: 3s;
  90. animation-iteration-count: infinite;
  91. animation-timing-function: ease-in-out;
  92. }
  93.  
  94. @keyframes floating {
  95. 0% { transform: translate(0, 0px); }
  96. 50% { transform: translate(0, 15px); }
  97. 100% { transform: translate(0, -0px); }
  98. }
  99.  
  100. #buttons01 {
  101. position: absolute;
  102. left: 4.5em;
  103. bottom: -.25em;
  104. }
  105.  
  106. #text03, #text06, #text09 {
  107. animation:blinkingText 1.2s infinite;
  108. }
  109. @keyframes blinkingText{
  110. 0%{ color: #000000; }
  111. 49%{ color: #000000; }
  112. 60%{ color: white; }
  113. 99%{ color:white; }
  114. 100%{ color: #000000; }
  115. }
  116.  
  117. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement