Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -85,12 +85,12 @@ button:hover {
|
|
85 |
margin-top: 20px;
|
86 |
font-size: 20px;
|
87 |
font-weight: bold;
|
88 |
-
color: #333;
|
89 |
-
background-color: #f4f4f4;
|
90 |
padding: 15px;
|
91 |
border-radius: 8px;
|
92 |
text-transform: uppercase;
|
93 |
-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
94 |
}
|
95 |
|
96 |
/* Watermark dengan Copyright */
|
@@ -129,4 +129,23 @@ body::after {
|
|
129 |
button {
|
130 |
font-size: 16px;
|
131 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
}
|
|
|
85 |
margin-top: 20px;
|
86 |
font-size: 20px;
|
87 |
font-weight: bold;
|
88 |
+
color: #333;
|
89 |
+
background-color: #f4f4f4;
|
90 |
padding: 15px;
|
91 |
border-radius: 8px;
|
92 |
text-transform: uppercase;
|
93 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
94 |
}
|
95 |
|
96 |
/* Watermark dengan Copyright */
|
|
|
129 |
button {
|
130 |
font-size: 16px;
|
131 |
}
|
132 |
+
}
|
133 |
+
|
134 |
+
/* Responsif untuk tampilan yang lebih besar (Tablet ke atas) */
|
135 |
+
@media (min-width: 769px) {
|
136 |
+
.container {
|
137 |
+
max-width: 700px; /* Lebar maksimum yang lebih besar untuk tablet dan desktop */
|
138 |
+
}
|
139 |
+
|
140 |
+
h1 {
|
141 |
+
font-size: 2.5rem; /* Ukuran font header lebih besar di desktop */
|
142 |
+
}
|
143 |
+
|
144 |
+
input, select {
|
145 |
+
font-size: 18px; /* Ukuran font lebih besar di desktop */
|
146 |
+
}
|
147 |
+
|
148 |
+
button {
|
149 |
+
font-size: 20px;
|
150 |
+
}
|
151 |
}
|