ukamori

all codes for jibeomcito tut

Jul 9th, 2022 (edited)
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.25 KB | None | 0 0
  1. <!--- CONTAINER WITH IMAGE --->
  2. height: 15em;
  3. width: 12em;
  4. right: 6em;
  5.  
  6. <!--- TEXT IN CONTAINER WITH IMAGE --->
  7. top: 14.5em;
  8.  
  9. <!--- CONTAINER WITH TEXTS DEFAULT --->
  10. height: 15em;
  11. width: 12em;
  12. right: 4.35em;
  13. bottom: -0.01em;
  14. position: absolute;
  15. overflow: auto;
  16.  
  17. <!--- CONTAINER WITH TEXTS MOBILE --->
  18. height: 15em;
  19. width: 12em;
  20. right: -1.5em;
  21. bottom: -0.01em;
  22. position: absolute;
  23. overflow: auto;
  24.  
  25. <!--- INFO TEXTS --->
  26. background: #d3c7e7;
  27. padding: 8px;
  28. border-radius: 0.5em;
  29.  
  30. <!--- MARK/HIGHLIGHT TEXT --->
  31. background: #9B89BA;
  32. padding-left: 5px;
  33. padding-right: 5px;
  34. border-radius: 0.5em;
  35. color: white;
  36. font-family: 'Mali', cursive;
  37.  
  38. <!--- BUTTON --->
  39. border-radius: 70%;
  40. position: relative;
  41. bottom: 16.5em;
  42. left: -14em;
  43.  
  44. <!--- BUTTON FOR MOBILE --->
  45. width: 2.75em;
  46. height: 1.625em;
  47. border-radius: 70%;
  48. left: -13.5em;
  49.  
  50. <!--- BLUR HOVER AND FONT --->
  51. <link rel="preconnect" href="https://fonts.googleapis.com">
  52. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  53. <link href="https://fonts.googleapis.com/css2?family=Mali:wght@700&display=swap" rel="stylesheet">
  54.  
  55. <style>
  56. #buttons01 a {
  57. transition: 0.5s;
  58. }
  59.  
  60. #buttons01 a:hover {
  61. webkit-filter: blur(2px);
  62. filter: blur(2px);
  63. transition: 0.5s;
  64. }
  65. </style>
Add Comment
Please, Sign In to add comment