Advertisement
ukamori

all codes for jibeomcito tut 3

Aug 7th, 2022 (edited)
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.76 KB | None | 0 0
  1. <!--- TOP CONTAINER --->
  2. border-radius: 0.5em 0.5em 0em 0em;
  3.  
  4.  
  5. <!--- BOTTOM CONTAINER --->
  6. border-radius: 0em 0em 0.5em 0.5em;
  7.  
  8.  
  9. <!--- BUTTONS POSITIONING -->
  10. position: relative;
  11. bottom: 0.25em;
  12. right: 0.5em;
  13.  
  14. <!--- BUTTONS EXPAND ON HOVER --->
  15. <style>
  16. #buttons01 a {
  17. transition: 0.4s;
  18. }
  19.  
  20. #buttons01 a:hover {
  21. letter-spacing: 5px;
  22. transition: 0.4s;
  23. }
  24. </style>
  25.  
  26.  
  27. <!--- CONTAINERS WITH INFO POSITIONING --->
  28. position: absolute;
  29. right: 0.875em;
  30. bottom: 1.875em;
  31.  
  32.  
  33. <!--- TEXT CSS --->
  34. background: #eecebd;
  35. padding: 8px;
  36. border-radius: 0.5em;
  37.  
  38.  
  39. <!--- MALI FONT --->
  40. <link rel="preconnect" href="https://fonts.googleapis.com">
  41. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  42. <link href="https://fonts.googleapis.com/css2?family=Mali:wght@700&display=swap" rel="stylesheet">
  43.  
  44.  
  45. <!--- MARK CSS --->
  46. font-family: 'Mali', cursive;
  47. color: white;
  48. background: #e36464;
  49. padding-left: 10px;
  50. padding-right: 10px;
  51. border-radius: 1em;
  52. font-weight: bold;
  53. line-height: 0;
  54.  
  55. <!--- COLUMN STYLING FIRST CONT --->
  56. <style>
  57. #container04 > .wrapper > .inner > :nth-child(1) {
  58. margin-left: auto;
  59. margin-right: auto;
  60. width: 40%;
  61. height: 14.25em;
  62. overflow: auto;
  63. }
  64. #container04 > .wrapper > .inner > :nth-child(2) {
  65. width: 60%;
  66. margin-left: auto;
  67. margin-right: auto;
  68. }
  69. #container04 {
  70. justify-content: space-between !important;
  71. margin: auto;
  72. }
  73. </style>
  74.  
  75.  
  76. <!--- COLUMN STYLING SECOND CONT --->
  77. <style>
  78. #container04 > .wrapper > .inner > :nth-child(1) {
  79. margin-left: auto;
  80. margin-right: auto;
  81. width: 40%;
  82. height: 14.25em;
  83. overflow: auto;
  84. }
  85. #container04 > .wrapper > .inner > :nth-child(2) {
  86. width: 60%;
  87. margin-left: auto;
  88. margin-right: auto;
  89. }
  90. #container04 {
  91. justify-content: space-between !important;
  92. margin: auto;
  93. }
  94. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement