Update style.css
Browse files
style.css
CHANGED
@@ -19,9 +19,9 @@ body {
|
|
19 |
background: #ffffff;
|
20 |
border-radius: 15px;
|
21 |
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
22 |
-
padding:
|
23 |
width: 100%;
|
24 |
-
max-width:
|
25 |
}
|
26 |
|
27 |
header h1 {
|
@@ -73,12 +73,18 @@ input {
|
|
73 |
|
74 |
#swapButton {
|
75 |
background-color: #ffffff;
|
76 |
-
color: #
|
77 |
-
border:
|
78 |
-
border-radius: 50%;
|
79 |
-
|
|
|
|
|
|
|
|
|
80 |
cursor: pointer;
|
81 |
font-size: 18px;
|
|
|
|
|
82 |
}
|
83 |
|
84 |
#swapButton:hover {
|
|
|
19 |
background: #ffffff;
|
20 |
border-radius: 15px;
|
21 |
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
22 |
+
padding: 20px;
|
23 |
width: 100%;
|
24 |
+
max-width: 360px; /* Sesuai ukuran contoh */
|
25 |
}
|
26 |
|
27 |
header h1 {
|
|
|
73 |
|
74 |
#swapButton {
|
75 |
background-color: #ffffff;
|
76 |
+
color: #007BFF;
|
77 |
+
border: 2px solid #ccc;
|
78 |
+
border-radius: 50%; /* Bulat sempurna */
|
79 |
+
width: 40px; /* Sesuai contoh */
|
80 |
+
height: 40px; /* Sesuai contoh */
|
81 |
+
display: flex;
|
82 |
+
justify-content: center;
|
83 |
+
align-items: center;
|
84 |
cursor: pointer;
|
85 |
font-size: 18px;
|
86 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
87 |
+
transition: background-color 0.3s ease;
|
88 |
}
|
89 |
|
90 |
#swapButton:hover {
|