We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce583a9 + 6a8daa5 commit 8984daeCopy full SHA for 8984dae
1 file changed
Official_Website/style.css
@@ -19,6 +19,31 @@ p {
19
flex-direction: row;
20
position: relative;
21
}
22
+/* Add CSS for hover and transitions */
23
+.nav__list {
24
+ display: flex;
25
+ list-style: none;
26
+ padding: 0;
27
+ margin: 0;
28
+}
29
+.nav__item {
30
+ margin-right: 15px;
31
32
+.nav__item a {
33
+ color: #333;
34
+ font-size: 24px;
35
+ transition: color 0.3s, transform 0.3s;
36
37
+.nav__item a:hover {
38
+ color: #007BFF;
39
+ transform: scale(1.2);
40
41
+body.dark-mode .nav__item a {
42
+ color: #fff;
43
44
+body.dark-mode .nav__item a:hover {
45
+ color: #FFD700;
46
47
/* style search container */
48
.search-container {
49
display: flex;
0 commit comments