Advertisement
izuemis

2 column carrd css codes

Sep 2nd, 2022
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <style>
  2.  
  3. @font-face {
  4. font-family:paris;
  5. src:url(https://dl.dropbox.com/s/9m3jot6yibputqx/Paris.ttf);
  6. }
  7.  
  8. #slideshow01 {
  9. border: 1px solid #333333;
  10. border-radius: .5em;
  11. }
  12.  
  13. #buttons01 li a {
  14. border: 1px solid #333333;
  15. box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), 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%);
  16. }
  17.  
  18. #container01 > .wrapper {
  19. width: 10em;
  20. height: 8.75em;
  21. border-radius: .5em .5em 0em 0em;
  22. }
  23.  
  24. #container02 > .wrapper {
  25. width: 10em;
  26. border-radius: 0em 0em .5em .5em;
  27. }
  28.  
  29. #container03 > .wrapper {
  30. width: 12em;
  31. border-radius: .5em .5em 0em 0em;
  32. }
  33.  
  34. #container04 > .wrapper {
  35. width: 12em;
  36. height: 14em;
  37. border-radius: 0em 0em .5em .5em;
  38. overflow: auto;
  39. }
  40.  
  41. #text03 mark, #text05 mark, #text06 mark, #text07 mark {
  42. border: 1px solid #333333;
  43. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(209,209,209,1) 99%);
  44. padding-left: 10px;
  45. padding-right: 10px;
  46. border-radius: 20px;
  47. }
  48.  
  49. #text04 mark {
  50. font-family:paris;
  51. border: 1px solid #333333;
  52. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(209,209,209,1) 99%);
  53. padding-left: 10px;
  54. padding-right: 10px;
  55. border-radius: 20px;
  56. }
  57.  
  58. #image02 {
  59. animation: jerk 0.5s infinite;
  60. }
  61.  
  62. @keyframes jerk {
  63. 0% {
  64. transform: rotate(2deg);
  65. }
  66. 50% {
  67. transform: rotate(2deg);
  68. }
  69. 51% {
  70. transform: rotate(-2deg);
  71. }
  72. 100% {
  73. transform: rotate(-2deg);
  74. }
  75. }
  76.  
  77. @media only screen and (max-width: 600px) {
  78. #container04 {
  79. position: absolute;
  80. right: 0em;
  81. top: 1.25em;
  82. }
  83. }
  84.  
  85. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement