GarGerry commited on
Commit
092fe08
·
verified ·
1 Parent(s): 0ad14e4

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +19 -10
style.css CHANGED
@@ -77,7 +77,13 @@ footer {
77
  color: white;
78
  }
79
 
80
- /* Responsive Design */
 
 
 
 
 
 
81
  @media (max-width: 768px) {
82
  header nav ul {
83
  flex-direction: column;
@@ -101,15 +107,18 @@ footer {
101
  }
102
  }
103
 
104
- /* Animasi Scroll */
105
- @keyframes fadeIn {
106
- 0% { opacity: 0; }
107
- 100% { opacity: 1; }
108
  }
109
 
110
- /* Efek saat halaman di-scroll */
111
- @media (max-width: 768px) {
112
- section {
113
- opacity: 1 !important; /* Pastikan animasi tetap terlihat */
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
  }