-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.css
75 lines (73 loc) · 1.38 KB
/
user.css
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
.navTab {
position: absolute;
top:0;
right: 0%;
left: 0%;
width: 100%;
height: 70px;
border: 2px;
margin: 0%;
padding-left: 10px;
padding-right: 10px;
display: flex;
align-items: center;
background-color: #501eda;
color: white;
}
.rightHalf {
display: flex;
align-items: center;
gap: 53px;
text-align: right;
margin-left: auto;
margin-right: 3%;
}
.dot {
height: 25px;
width: 25px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
}
.navTabText {
margin: 0%;
font-size: 18px;
text-decoration: none;
font-weight: bold;
padding-left: 10px;
padding-right: 10px;
color: white;
}
.navTabText:hover{color: rgb(0, 0, 93)}
.dropdown {
position: relative;
display: inline-block;
color: white;
}
.dropdown-content{
display: none;
position: absolute;
background-color: #D9D9D9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
color: white;
}
.dropdown-content a {
text-align: center;
font-size: 18px;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
font-weight: bold;
color: white;
}
.dropdown-content a:hover {background-color: #acacac}
.dropdown:hover .dropdown-content {display: block;}
a {
cursor: pointer;
}
body {
overflow-x: hidden;
}