-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.css
More file actions
86 lines (73 loc) · 1.29 KB
/
Copy pathpost.css
File metadata and controls
86 lines (73 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
}
header {
background: #333;
color: white;
padding: 10px;
}
nav {
position: relative;
}
.nav-item {
display: inline-block;
position: relative;
}
nav a {
color: white;
margin: 0 10px;
text-decoration: none;
padding: 10px;
}
.dropdown {
display: none;
position: absolute;
background: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
top: 100%;
left: 0;
min-width: 150px;
}
.dropdown a {
display: block;
color: #333;
padding: 10px;
text-decoration: none;
}
.dropdown a:hover {
background: #f0f0f0;
}
.content-wrapper {
position: relative;
z-index: 1;
}
main {
padding: 20px;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 10px;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(128, 0, 128, 0.2); /* Light purple with some transparency */
z-index: 0;
opacity: 0;
transition: opacity 0.3s ease;
}
.nav-item:hover .dropdown {
display: block;
}
.nav-item:hover ~ .overlay {
opacity: 1;
z-index: 10;
}