-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.css
79 lines (69 loc) · 1.2 KB
/
header.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
body {
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
font-size: 16px;
background-color: #ABD2FA;
}
/* Hide when screen gets too small */
@media (max-width: 576px){
#navlist{
display: none;
}
.iconholder span{
display: none;
}
}
header{
background-color: #091540;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
color: white;
box-shadow: 0px -5px 50px 0px rgba(0,0,0,0.75);
padding: 0 2.5rem;
}
li, ul{
display: inline;
margin: 0;
padding: 0;
}
ul{
/* border: 1px solid; */
flex: 1;
max-width: 50%;
display: flex;
justify-content: space-evenly;
}
#logo {
height: 75px;
width: 75px;
}
.icon{
height: 35px;
/* width: 35px; */
}
.iconholder {
/* border: 1px solid white; */
display: flex;
/* height: 60%; */
align-items: center;
justify-content: space-evenly;
flex-direction: column;
}
#iconwrapper{
/* border: 1px solid; */
display: flex;
flex: 1;
max-width: 10%;
justify-content: space-around;
}
a {
color: white;
text-decoration: none;
}
a:hover{
opacity: 0.75;
}