-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages_css.css
54 lines (51 loc) · 1.17 KB
/
packages_css.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
body {
font-family: 'Arial', sans-serif;
margin: 10px auto; /* Combine margin properties */
width: 100%;
height: 80vh;
overflow: auto;
}
h1, h3 {
color: #333;
}
.nav-bar{
display: flex;
flex-flow: row wrap;
width: 100%;
height: 90px;
background-color: #fff;
box-shadow: 3px 3px 10px lightslategray;
align-items: center;
justify-content: center;
position: sticky;
top: 0;
z-index: 1;
}
.logo{
flex: 1;
font-size: 40px;
padding: 20px;
margin-left: 50px;
font-family: Satisfy;
}
ul.menu{
flex: 1;
display: flex;
flex-flow: row wrap;
}
.menu li{
flex: 1;
list-style-type: none;
font-size: 16px;
font-family: "Barlow Condensed";
text-align: center;
}
.menu li a{
text-decoration: none;
color: #000;
text-transform: uppercase;
}
.menu li a:hover{
color: midnightblue;
text-decoration: underline;
}