-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
63 lines (52 loc) · 853 Bytes
/
Copy pathsite.css
File metadata and controls
63 lines (52 loc) · 853 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
body {
margin-left: 20px;
margin-right: 20px;
font-family: 'Open Sans', 'Lato', Arial, sans-serif;
font-size: 1.0em;
background: #05386B; /* was lightsteelblue */
color: #EDF5E1; /* wasn't specified */
}
/* keep links from changing color */
a {
color: #EDF5E1; /* wasn't specified */
}
.flex-col-container {
display: flex;
flex-flow: row nowrap;
justify-content: space-around;
align-items: flex-start;
align-content: flex-start;
margin-top: 20px;
}
.flex-col2 {
flex-grow: 1;
flex-basis: 50%;
}
.flex-col4 {
flex-grow: 1;
flex-basis: 25%;
}
.flex-col5 {
flex-grow: 1;
flex-basis: 20%;
}
.flex-col6 {
flex-grow: 1;
flex-basis: 16%;
}
.center-text {
text-align: center;
}
.mw-800 {
max-width: 800px;
margin: auto;
}
.pre-wrap {
white-space: pre-wrap;
}
.green-bg {
background: green;
}
#topContainer {
width: 100%;
}