-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
60 lines (50 loc) · 815 Bytes
/
app.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
*{
margin:0px;
padding:0px;
box-sizing: border-box;
}
.body-text{
display: block;
font-family: "Verdana";
align-items: left;
justify-content: left;
margin-top: 20px;
margin: 20px;
line-height: 1.7;
}
nav{
display: flex;
justify-content: space-around;
align-items: center;
min-height: 8vh;
background-color: DarkSlateGray;
font-family: "Verdana";
}
.nav-links{
display: flex;
justify-content: space-around;
width: 30%;
}
.nav-links li{
list-style: none;
}
.heading{
color: white;
text-transform: uppercase;
letter-spacing: 5px;
font-size: 20px;
}
.nav-links a{
color: white;
text-decoration: none;
letter-spacing: 3px;
font-weight: bold;
font-size: 14px;
padding: 14px 16px;
}
.nav-links li a.active{
color: white;
}
.nav-links li a:hover:not(.active){
color: CadetBlue;
}