Update style.css
Browse files
style.css
CHANGED
@@ -77,7 +77,13 @@ footer {
|
|
77 |
color: white;
|
78 |
}
|
79 |
|
80 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
@media (max-width: 768px) {
|
82 |
header nav ul {
|
83 |
flex-direction: column;
|
@@ -101,15 +107,18 @@ footer {
|
|
101 |
}
|
102 |
}
|
103 |
|
104 |
-
/*
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
}
|
109 |
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
115 |
}
|
|
|
77 |
color: white;
|
78 |
}
|
79 |
|
80 |
+
/* Animasi Fade In */
|
81 |
+
@keyframes fadeIn {
|
82 |
+
0% { opacity: 0; }
|
83 |
+
100% { opacity: 1; }
|
84 |
+
}
|
85 |
+
|
86 |
+
/* Responsive Design untuk Layar Kecil (Mobile) */
|
87 |
@media (max-width: 768px) {
|
88 |
header nav ul {
|
89 |
flex-direction: column;
|
|
|
107 |
}
|
108 |
}
|
109 |
|
110 |
+
/* Efek Halus untuk Tombol dan Links */
|
111 |
+
button, a {
|
112 |
+
cursor: pointer;
|
113 |
+
transition: all 0.3s ease;
|
114 |
}
|
115 |
|
116 |
+
button:hover, a:hover {
|
117 |
+
background-color: #6200ea;
|
118 |
+
color: white;
|
119 |
+
}
|
120 |
+
|
121 |
+
/* Transisi Warna pada Header saat di Hover */
|
122 |
+
header:hover {
|
123 |
+
background-color: #3700b3;
|
124 |
}
|