-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.css
More file actions
70 lines (58 loc) · 978 Bytes
/
header.css
File metadata and controls
70 lines (58 loc) · 978 Bytes
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
.App-logo {
animation: App-logo-spin infinite 4s alternate;
height: 8rem;
}
.header {
background-color: rgb(187, 187, 187);
padding: 20px;
color: rgb(68, 50, 50);
font-size: 3rem;
}
.App-title {
font-size: 3rem;
margin: 3rem;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
nav {
background-color: #ccc;
display: flex;
align-items: center;
justify-content: space-between;
}
nav a:visited {
color: #000;
}
nav .navWide {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin: 0 2rem;
font-size: 1.5rem;
font-family: 'Oswald', sans-serif;
}
nav .navWide a {
text-decoration: none;
padding: .7rem;
color: #000;
}
nav .navWide a:hover {
color: #422;
padding: .7rem;
border-radius: 4px;
background-color: rgb(255, 255, 255);
}
.subTitle {
margin: 0;
font-size: 1.5rem;
}
nav > div > div > img {
width: 380px;
}