-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick_menu.css
More file actions
48 lines (42 loc) · 802 Bytes
/
Copy pathquick_menu.css
File metadata and controls
48 lines (42 loc) · 802 Bytes
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
.quick-menu {
position: fixed;
top: 0; /* Adjust the top position as needed to avoid overlapping with header */
right: 0;
width: 250px;
height: 400px;
background-color: #fff;
border: 1px solid #ccc;
padding: 10px;
border-radius: 8px;
display: none;
}
.user-info {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
text-align: center;
}
.user-info img {
/*align-self: center;*/
width: 80px;
height: 80px;
border-radius: 50%;
margin-right: 10px;
}
.username {
font-weight: bold;
margin-bottom: 10px;
}
.quick-menu ul {
list-style: none;
padding: 0;
margin: 0;
}
.quick-menu li {
margin-bottom: 10px;
}
.quick-menu a {
text-decoration: none;
color: #333;
}