blob: ffce80ff0d1547620340658bc2e07833b86c4276 (
plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
background-color: #333;
padding: 10px 20px;
position: relative;
top: 0;
font-family: Arial, sans-serif;
}
.navbar > .container {
display: flex;
justify-content: space-between;
padding: 0 0;
}
.nav-left, .nav-right {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
}
.nav-left li, .nav-right li {
margin: 0 15px;
position: relative;
}
.navbar a {
text-decoration: none;
color: white;
font-size: 16px;
padding: 10px 15px;
display: block;
transition: background-color 0.3s;
}
.navbar a:hover {
background-color: #555;
border-radius: 5px;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #444;
min-width: 160px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 5px;
}
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #666;
}
.dropdown:hover .dropdown-content {
display: block;
}
.nav-right .dropdown-content {
right: 0;
}
.logout-form {
margin: 0;
padding: 0;
display: block;
}
.logout-button {
background: none;
border: none;
color: white;
font-size: 16px;
padding: 12px 16px;
text-align: left;
width: 100%;
cursor: pointer;
text-decoration: none;
display: block;
font-family: Arial, sans-serif;
transition: background-color 0.3s;
}
.logout-button:hover {
background-color: #666;
border-radius: 5px;
}
|