-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpress-website.css
84 lines (75 loc) · 1.28 KB
/
express-website.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
text-decoration: none;
color: initial;
}
nav {
position: fixed;
box-shadow: 1 1;
width: 100%;
height: 5em;
box-shadow: 0 0 20px -15px;
display: flex;
justify-content: space-between;
align-items: center;
background: white;
}
nav div {
margin-left: 5%;
}
nav ul {
height: 100%;
list-style: none;
width: 50%;
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: row;
margin-left: auto;
}
.centered {
width: 100%;
height: 100vh;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
flex-direction: column;
}
.centered h1 {
margin-bottom: 0.2em;
font-size: 4rem;
}
.secondary-section {
width: 100%;
height: 100vh;
background: turquoise;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
flex-direction: column;
}
.secondary-section h2 {
color: white;
margin-bottom: 0.2em;
font-size: 4rem;
}
footer {
height: 10em;
display: flex;
align-items: center;
justify-content: space-around;
}
footer ul {
height: 100%;
list-style: none;
width: 50%;
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: row;
}