Update style.css
Browse files
style.css
CHANGED
@@ -8,6 +8,7 @@ body {
|
|
8 |
align-items: center;
|
9 |
min-height: 100vh;
|
10 |
background-color: #001d57; /* Latar belakang biru gelap */
|
|
|
11 |
}
|
12 |
|
13 |
.container {
|
@@ -24,8 +25,16 @@ header h1 {
|
|
24 |
text-align: center;
|
25 |
margin-bottom: 20px;
|
26 |
color: #001d57;
|
27 |
-
font-size:
|
28 |
font-weight: bold;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
|
31 |
/* Form Groups */
|
@@ -63,18 +72,19 @@ input:focus, select:focus {
|
|
63 |
#swapButton {
|
64 |
background-color: #87CEFA; /* Biru Langit */
|
65 |
border: none;
|
66 |
-
border-radius:
|
67 |
-
padding:
|
68 |
-
font-size:
|
69 |
color: white;
|
|
|
70 |
cursor: pointer;
|
71 |
-
box-shadow: 0
|
72 |
transition: background-color 0.3s ease, transform 0.2s ease;
|
73 |
}
|
74 |
|
75 |
#swapButton:hover {
|
76 |
background-color: #5faad7; /* Biru Langit Gelap */
|
77 |
-
transform: scale(1.
|
78 |
}
|
79 |
|
80 |
/* Convert Button */
|
@@ -117,3 +127,17 @@ footer {
|
|
117 |
font-size: 14px;
|
118 |
color: rgba(255, 255, 255, 0.8);
|
119 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
align-items: center;
|
9 |
min-height: 100vh;
|
10 |
background-color: #001d57; /* Latar belakang biru gelap */
|
11 |
+
overflow: auto; /* Agar bisa scroll kanan, kiri, atas, dan bawah */
|
12 |
}
|
13 |
|
14 |
.container {
|
|
|
25 |
text-align: center;
|
26 |
margin-bottom: 20px;
|
27 |
color: #001d57;
|
28 |
+
font-size: 24px;
|
29 |
font-weight: bold;
|
30 |
+
text-transform: uppercase;
|
31 |
+
}
|
32 |
+
|
33 |
+
header h2 {
|
34 |
+
text-align: center;
|
35 |
+
font-size: 14px;
|
36 |
+
color: #555;
|
37 |
+
margin-bottom: 20px;
|
38 |
}
|
39 |
|
40 |
/* Form Groups */
|
|
|
72 |
#swapButton {
|
73 |
background-color: #87CEFA; /* Biru Langit */
|
74 |
border: none;
|
75 |
+
border-radius: 8px; /* Tombol persegi panjang bulat */
|
76 |
+
padding: 8px 16px;
|
77 |
+
font-size: 16px;
|
78 |
color: white;
|
79 |
+
font-weight: bold;
|
80 |
cursor: pointer;
|
81 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
82 |
transition: background-color 0.3s ease, transform 0.2s ease;
|
83 |
}
|
84 |
|
85 |
#swapButton:hover {
|
86 |
background-color: #5faad7; /* Biru Langit Gelap */
|
87 |
+
transform: scale(1.05);
|
88 |
}
|
89 |
|
90 |
/* Convert Button */
|
|
|
127 |
font-size: 14px;
|
128 |
color: rgba(255, 255, 255, 0.8);
|
129 |
}
|
130 |
+
|
131 |
+
footer p {
|
132 |
+
margin: 5px 0;
|
133 |
+
color: #ddd;
|
134 |
+
}
|
135 |
+
|
136 |
+
footer a {
|
137 |
+
color: #87cefa;
|
138 |
+
text-decoration: none;
|
139 |
+
}
|
140 |
+
|
141 |
+
footer a:hover {
|
142 |
+
text-decoration: underline;
|
143 |
+
}
|