-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
52 lines (46 loc) · 823 Bytes
/
styles.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
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #000000;
color: rgb(144, 0, 0);
text-align: center;
padding: 1rem;
}
.subheader {
background-color: #780000;
padding: 1rem;
text-align: center;
}
main {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 1rem;
}
.column {
flex: 1;
flex-basis: 23%;
margin: 1rem;
padding: 1rem;
border: 1px solid #3b0000;
border-radius: 5px;
background-color: white;
text-align: center;
}
.column img {
width: 100%;
height: auto;
margin-bottom: 1rem;
}
footer {
background-color: #000000;
color: white;
text-align: center;
padding: 1rem;
bottom: 0;
width: 100%;
}