Advertisement
LeBizu2561

CSS

Sep 22nd, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. <--Produk-->
  2.  
  3. .product {
  4. text-align: center;
  5. margin-bottom: 20px;
  6. }
  7.  
  8. .product h1 {
  9. margin-top: 40px;
  10. color: #181818;
  11. margin-bottom: 50px;
  12. }
  13.  
  14. .product-list {
  15. justify-content: center;
  16. display: flex;
  17. }
  18.  
  19. .col-product {
  20. margin-top: 30px;
  21. margin: 10px;
  22. padding: 10px;
  23. border-radius: 15px;
  24. transition: transform .2s;
  25. }
  26.  
  27. .col-product:hover {
  28. transform: scale(1.1);
  29. }
  30.  
  31. .col-product img {
  32. width: 200px;
  33. border-radius: 50%;
  34. }
  35.  
  36. .col-product p {
  37. padding-top: 10px;
  38. text-align: center;
  39. width: 100%;
  40. background-color: white;
  41. color: #181818;
  42. font-weight: bold;
  43. }
  44.  
  45. <--Form-->
  46.  
  47. .kontak {
  48. color: #181818;
  49. text-align: center;
  50. margin-top: 70px;
  51. margin-bottom: 60px;
  52. }
  53.  
  54. .form-kontak {
  55. width: 100%;
  56. border: none;
  57. border-bottom: 2px solid #181818;
  58. outline: none;
  59. }
  60.  
  61. .row-form {
  62. margin: 20px auto;
  63. width: 50%;
  64. }
  65.  
  66. .col-form h3 {
  67. text-align: left;
  68. margin-top: 20px;
  69. margin-bottom: 10px;
  70. color: #181818;
  71. }
  72.  
  73. .col-form,
  74. .form-kontak h3 {
  75. margin: 10px;
  76. text-align: end;
  77. }
  78.  
  79. .btn-kirim {
  80. margin-top: 40px;
  81. text-align: center;
  82. padding: 10px;
  83. width: 100%;
  84. background-color: white;
  85. color: #181818;
  86. border-radius: 10px;
  87. font-weight: bold;
  88. border: none;
  89. }
  90.  
  91. .btn-kirim:hover {
  92. cursor: pointer;
  93. background-color: #181818;
  94. color: white;
  95. transition: .3s ease-in-out;
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement