-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChoirWebsiteCSS.css
55 lines (38 loc) · 918 Bytes
/
ChoirWebsiteCSS.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
body {
background-color: #f2f2f2; /* #e5e5e5*/
font-family: "Yusei Magic", sans-serif;
}
.container-fluid {
padding: 10px 20px;
justify-content: center;
}
.header {
background-color: #b40000;
padding: 30px 20px;
text-align: center;
}
h1, .subtitle {
color: white;
}
.row {
justify-content: center;
}
#border1 {
background-image: url(border1small.png);
}
#border2 {
background-image: url(border2small.png);
}
.image {
background-repeat: repeat-y;
background-position: top center;
background-size: 75%;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { ... }
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { ... }
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { ... }
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { ... }