Advertisement
naocrrds

#7 pro carrd tutorial

Jan 29th, 2023
1,024
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. font-family:paris;
  4. src:url(https://dl.dropbox.com/s/9m3jot6yibputqx/Paris.ttf);
  5. }
  6.  
  7. #text04 mark /* mark with heart icon */ {
  8. font-family: paris;
  9. border-radius:3rem;
  10. border:1px solid #707070;
  11. padding-left:13px;
  12. padding-right:13px;
  13. padding-top:1px;
  14. padding-bottom:1px;
  15. background: rgb(255,255,255);
  16. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(214,214,214,1) 100%);
  17. }
  18.  
  19. @keyframes heart{
  20. 0%, 12%, 25%, 50% {
  21. transform: rotate(0deg);
  22. }
  23.  
  24. 55% {
  25. transform: rotate(-2.5deg);
  26. }
  27.  
  28. 65% {
  29. transform: rotate(3.5deg);
  30. }
  31.  
  32. 75% {
  33. transform: rotate(-7deg);
  34. }
  35.  
  36. 95%, 100& {
  37. transform: rotate(0deg);
  38. }}
  39.  
  40. #image02{
  41. position:absolute;
  42. top:-5em;
  43. left:-3em;
  44. z-index:9999;
  45. animation: heart 1.5s ease infinite;
  46. }
  47.  
  48. #container01 > .wrapper /* blog cr rebelde container */ {
  49. border:1px solid #707070;
  50. border-bottom-style: none;
  51. border-top-left-radius:.625rem;
  52. border-top-right-radius:.625rem;
  53. }
  54.  
  55. #container02 > .wrapper /* container with info */{
  56. overflow-x:hidden;
  57. overflow-y:scroll;
  58. height:29em;
  59. border:1px solid #707070;
  60. border-bottom-left-radius:.625rem;
  61. border-bottom-right-radius:.625rem;
  62. }
  63.  
  64. #container03 > .wrapper /* slideshow container and pixel background */{
  65. border:1px solid #707070;
  66. border-top-left-radius:.625rem;
  67. border-top-right-radius:.625rem;
  68. }
  69.  
  70. #container03 {
  71. position:absolute;
  72. top:0px;
  73. left:0px;
  74. }
  75.  
  76. #container04 /* container with buttons */ {
  77. position:absolute;
  78. top:19em;
  79. left:0px;
  80. }
  81.  
  82. #container04 > .wrapper{
  83. border:1px solid #707070;
  84. border-bottom-left-radius:.625rem; border-bottom-right-radius:.625rem; }
  85.  
  86. #slideshow01 {
  87. border:1px solid #707070;
  88. border-radius:.75rem;
  89. }
  90.  
  91. #buttons01 li a {
  92. border:1px solid #707070;
  93. box-shadow: inset 13px 0px 6px -10px #fff, inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
  94. }
  95.  
  96. #text03 mark, #text05 mark, #text06 mark /* info labels */{
  97. border-radius:3rem;
  98. border:1px solid #707070;
  99. padding-left:13px;
  100. padding-right:13px;
  101. padding-top:1px;
  102. padding-bottom:1px;
  103. background: rgb(255,255,255);
  104. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(214,214,214,1) 100%);
  105. }
  106.  
  107. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement