-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyleNav.css
107 lines (67 loc) · 1.36 KB
/
styleNav.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
background-color: #96B6C5;
margin-top: 18px;
}
a {
cursor: pointer;
text-decoration: none; /* gets rids of underline*/
color: black; /* or set it to a specific color */
}
.header-main {
width: 100%;
height: 60px;
background-color: #EEE0C9;
display: flex;
justify-content: space-between;
}
.header-main-nav {
width: fit-content;
height: 100%;
/* background-color: orange;*/
}
.header-main-nav ul {
list-style: none;
margin-left: 30px;
}
.header-main-nav ul li {
display: inline;
float: left;
font-size: 20px;
}
.header-main-nav ul li.active a {
font-weight: bold;
color: #000080;
}
.header-main-nav ul li a {
padding: 0 10px;
font-family: 'Futura', sans-serif;
line-height: 40px;
}
.header-main-nav ul li a:hover {
color: #000080;
font-weight: bold;
}
.header-main-logout {
width: fit-content;
height: 100%;
/* background-color: orange;*/
}
.header-main-logout ul {
list-style: none;
margin-right: 30px;
}
.header-main-logout ul li {
display: inline;
float: left;
font-size: 20px;
}
.header-main-logout ul li a {
padding: 0 10px;
font-family: Fira Sans;
/* align-self: center;*/
line-height: 40px;
}
.header-main-logout ul li a:hover {
color: #000080;
font-weight: bold;
}