-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserPage.css
81 lines (81 loc) · 1.38 KB
/
UserPage.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
76
77
78
79
80
81
body,h3,label,a {
font-family: "Raleway", sans-serif;
}
.bouton:hover{
background-color: grey;
}
.bouton{
background-color: #4682B4;
color: white;
border: none;
border-radius: 5px;
padding: 12px 30px;
text-align: center;
text-decoration: none;
font-size: 12px;
font-family: "Raleway";
cursor: pointer;
}
.menu
{
background-color: #00547E;
border-bottom: 4px solid #04A3ED;
width:100%;
height: auto;
padding: 0 0px;
margin: 0px;
z-index: 1;
opacity: 0.9;
float: top;
}
.menu .navbar-nav > .active > a
{
background-color : #04A3ED;
color: white;
font-weight: bold;
}
.menu .navbar-nav > li > a
{
font-size: 13px;
color: white;
padding: 10px 70px;
}
.menu .navbar-nav > li > a:hover
{
background-color: #04A3ED;
}
.dropdown{
padding: 0;
list-style: none;
background: #00547E;
}
.dropdown li{
display: inline-block;
position: relative;
line-height: 21px;
text-align: left;
}
.dropdown li a{
display: block;
padding: 8px 25px;
color: #fff;
text-decoration: none;
}
.dropdown li a:hover{
color: #fff;
background: #04A3ED;
}
ul li ul.dropdown{
min-width: 100%; /* Set width of the dropdown */
background: #00547E;
display: none;
position: absolute;
z-index: 999;
left: 0;
}
ul li:hover ul.dropdown{
display: block; /* Display the dropdown */
}
ul li ul.dropdown li{
display: block;
}