-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (62 loc) · 1.02 KB
/
style.css
File metadata and controls
74 lines (62 loc) · 1.02 KB
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
body {
background-color: #061130;
min-height: 100dvh;
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
}
.buttonSetup {
background-color: #1c4bc4;
color: white;
border-radius: .5rem;
border: 0;
border-color: #1c4bc4;
padding: .5rem;
}
header {
color: white;
justify-content: space-between;
align-items: center;
margin-left: 1rem;
margin-right: 1rem;
}
main {
color: white;
padding: 4rem;
word-spacing: 2px;
flex-grow: 1;
align-items: center;
line-height: 1.5;
}
.doubleSpace {
line-height: 1.8;
}
nav {
gap: 2rem;
align-items: center;
}
footer {
background-color: #Ffffff;
padding: 2rem;
}
.yellow {
color: #FAFD61;
}
/* bottomFooter makes footer halved, adds in change in color */
.bottomFooter {
background-color: #eef3f3;
padding: 2rem;
margin: 0px;
flex-direction: column;
align-items: center;
}
.display-flex {
display: flex;
}
.justify-content {
justify-content: space-evenly;
}
.max-width {
max-width: 20%;
}