-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (105 loc) · 1.75 KB
/
style.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
header {
width: 100%;
position: fixed;
background-color: black;
align-items: center;
z-index: 1;
border-bottom: 1px solid seashell;
height: 69px;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 22px;
color: seashell;
background-color: black;
margin: 0;
}
a {
color: seashell;
text-decoration: underline;
}
nav {
text-align: right;
flex-grow: 1;
}
nav span {
display: inline-block;
padding: 20px 10px;
}
.logo {
max-height: 50px;
padding-left: 10px;
}
.main {
padding-top: 69px;
opacity: 0.9;
width: 1200px;
margin: auto;
}
h2, h3, h4, h5 {
text-align: center;
}
#mbackground {
background-image: url("img-mission-background.jpg");
height: 700px;
padding-top: 70px;
}
#mbackground .content {
margin: auto;
background-color: black;
width: 100%;
}
.flex-container.locations {
padding-top: 5px;
}
#locations {
background-image: url("img-locations-background.jpg");
height: 500px;
padding-top: 70px;
}
#locations .flex-container {
margin: auto;
width: 1100px;
}
.location {
opacity: 1.0;
padding: 10px;
margin: 5px 20px;
background-color: black;
flex-basis: 280px;
display: flex;
flex-direction: column;
text-align: center;
}
#month {
height: 700px;
width: 1000px;
margin: auto;
padding-top: 70px;
}
.flex-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.item {
padding: 5px;
}
.item img {
height: 200px;
width: 300px;
margin: 10px;
display: block;
}
.item span {
padding: 5px;
font-weight: bold;
text-align: center;
display: block;
}
.cozy {
height: 200px;
}
.copyright {
text-align: left;
}