Advertisement
izuemis

cr jibeomcito #2 css

Oct 3rd, 2022
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. -- FONTS --
  2. <link rel="preconnect" href="https://fonts.googleapis.com">
  3. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  4. <link href="https://fonts.googleapis.com/css2?family=Mali:wght@700&display=swap" rel="stylesheet">
  5.  
  6. -- IMAGE CONTAINER --
  7. height: 15em;
  8. width: 12em;
  9.  
  10. -- CONTAINER W TEXT --
  11. height: 15em;
  12. width: 12em;
  13. overflow: auto;
  14. right: -.5em;
  15. bottom: 0em;
  16. position: absolute;
  17.  
  18. -- TITLE TEXT --
  19. top: 12.6em;
  20.  
  21. -- INFO TEXT --
  22. background: #8da6b6;
  23. padding: 8px;
  24. border-radius: 0.5em;
  25.  
  26. -- HIGHLIGHT TEXT --
  27. background: white;
  28. padding-left: 5px;
  29. padding-right: 5px;
  30. border-radius: 0.5em;
  31. color: #5a8bb5;
  32. font-family: 'Mali', cursive;
  33.  
  34. -- BUTTONS --
  35. border-radius: 70%;
  36. position: relative;
  37. bottom: 2em;
  38. left: -8em;
  39.  
  40. -- BUTTONS BLUR ON HOVER --
  41. #buttons01 a {
  42. transition: 0.5s;
  43. }
  44.  
  45. #buttons01 a:hover {
  46. webkit-filter: blur(2px);
  47. filter: blur(2px);
  48. transition: 0.5s;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement