-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (87 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (87 loc) · 1.55 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
:root {
--darkBlue: (#061130);
--lightBlue: (#1C4BC4);
--offWhite: (#F4F6F8);
--yellow: (#FAFD61);
}
body {
display: flex;
flex-direction: column;
height: 100dvh;
background-color: #061130;
}
* {
/* outline: red 1px dotted; */
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header {
background-color: #061130;
}
button {
background-color: unset;
border: unset;
background-color: #1C4BC4;
color: white;
border-radius: 0.5em;
outline: unset;
padding: .5em;
}
.display-flex {
display: flex;
}
.space-between {
justify-content: space-between;
}
.header-links>a {
text-decoration: none;
color: white;
margin-right: 20px;
}
.header-links {
align-items: center;
}
main {
flex-grow: 1;
color: white;
background-color: #061130;
}
img {
width: 100%;
}
.margin-remove {
margin-block-start: unset;
margin-block-end: unset;
}
.main-text-margin {
margin-top: .8em;
margin-bottom: .8em;
}
.width-50 {
width: 50%;
}
.side-margins {
margin-left: 100px;
margin-right: 100px;
}
.justify-center {
justify-content: center;
}
.services-text {
color: #FAFD61;
font-weight: 400;
}
.space-evenly {
justify-content: space-evenly;
}
.footer-links {
background-color: white;
padding: 2em;
}
.footer-blurb {
background-color: #F4F6F8;
text-align: center;
padding: 2em;
}
.footer-p-margin {
margin-top: 1em;
}