Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -94,4 +94,45 @@ button:hover {
|
|
94 |
margin: 20px;
|
95 |
padding: 20px;
|
96 |
border-radius: 8px;
|
97 |
-
display: inline-block;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
margin: 20px;
|
95 |
padding: 20px;
|
96 |
border-radius: 8px;
|
97 |
+
display: inline-block;
|
98 |
+
width: 30%;
|
99 |
+
text-align: left;
|
100 |
+
}
|
101 |
+
|
102 |
+
.step-box h3 {
|
103 |
+
font-size: 22px;
|
104 |
+
color: #333;
|
105 |
+
}
|
106 |
+
|
107 |
+
.step-box p {
|
108 |
+
font-size: 16px;
|
109 |
+
color: #666;
|
110 |
+
}
|
111 |
+
|
112 |
+
/* Responsif - Atur tampilan step-box agar stack secara vertikal pada layar kecil */
|
113 |
+
@media (max-width: 768px) {
|
114 |
+
.step-box {
|
115 |
+
width: 100%;
|
116 |
+
margin: 10px 0;
|
117 |
+
}
|
118 |
+
}
|
119 |
+
|
120 |
+
/* Style untuk Footer */
|
121 |
+
.footer {
|
122 |
+
background-color: #4CAF50;
|
123 |
+
padding: 20px;
|
124 |
+
text-align: center;
|
125 |
+
color: white;
|
126 |
+
font-size: 16px;
|
127 |
+
margin-top: 50px;
|
128 |
+
}
|
129 |
+
|
130 |
+
.footer p {
|
131 |
+
margin: 0;
|
132 |
+
}
|
133 |
+
|
134 |
+
/* Style untuk tombol convert */
|
135 |
+
#convert-btn {
|
136 |
+
display: inline-block;
|
137 |
+
margin-top: 20px;
|
138 |
+
}
|