Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -48,7 +48,7 @@ body {
|
|
48 |
display: flex;
|
49 |
flex-direction: column;
|
50 |
align-items: center;
|
51 |
-
max-width:
|
52 |
margin: 0 auto;
|
53 |
padding: 40px;
|
54 |
border-radius: 12px;
|
@@ -83,22 +83,24 @@ body {
|
|
83 |
}
|
84 |
|
85 |
#swap-btn {
|
86 |
-
background-color: #
|
87 |
color: white;
|
88 |
cursor: pointer;
|
89 |
padding: 12px 20px;
|
90 |
-
border-radius:
|
91 |
border: none;
|
92 |
-
margin: 0 10px;
|
93 |
transition: background-color 0.3s;
|
94 |
font-size: 18px;
|
95 |
display: flex;
|
96 |
justify-content: center;
|
97 |
align-items: center;
|
|
|
|
|
|
|
98 |
}
|
99 |
|
100 |
#swap-btn:hover {
|
101 |
-
background-color: #
|
102 |
}
|
103 |
|
104 |
#convert-btn {
|
@@ -145,7 +147,7 @@ body {
|
|
145 |
background-color: #e0e0e0; /* Gray */
|
146 |
padding: 20px;
|
147 |
margin: 10px;
|
148 |
-
width:
|
149 |
border-radius: 8px;
|
150 |
text-align: center;
|
151 |
}
|
|
|
48 |
display: flex;
|
49 |
flex-direction: column;
|
50 |
align-items: center;
|
51 |
+
max-width: 1000px; /* Perpanjang lebar kontainer */
|
52 |
margin: 0 auto;
|
53 |
padding: 40px;
|
54 |
border-radius: 12px;
|
|
|
83 |
}
|
84 |
|
85 |
#swap-btn {
|
86 |
+
background-color: #006400; /* Dark Green */
|
87 |
color: white;
|
88 |
cursor: pointer;
|
89 |
padding: 12px 20px;
|
90 |
+
border-radius: 50%; /* Bulat */
|
91 |
border: none;
|
|
|
92 |
transition: background-color 0.3s;
|
93 |
font-size: 18px;
|
94 |
display: flex;
|
95 |
justify-content: center;
|
96 |
align-items: center;
|
97 |
+
margin: 0 10px;
|
98 |
+
height: 50px; /* Ukuran Tombol */
|
99 |
+
width: 50px; /* Ukuran Tombol */
|
100 |
}
|
101 |
|
102 |
#swap-btn:hover {
|
103 |
+
background-color: #004d00;
|
104 |
}
|
105 |
|
106 |
#convert-btn {
|
|
|
147 |
background-color: #e0e0e0; /* Gray */
|
148 |
padding: 20px;
|
149 |
margin: 10px;
|
150 |
+
width: 300px; /* Memperbesar kotak */
|
151 |
border-radius: 8px;
|
152 |
text-align: center;
|
153 |
}
|