-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.css
69 lines (55 loc) · 893 Bytes
/
main.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
* {
font-family: sans-serif;
}
body {
background-size: cover;
background-attachment: fixed;
}
body#talks,
body#media {
background-image: url(img/bg/rainway.90.jpg);
}
body#home,
body#contact {
background-image: url(img/bg/tassie.90.jpg);
}
header {
box-shadow: 0px 0px 1em #333333;
z-index: 10;
}
main {
margin-top: 2em;
}
main .card + .card {
margin-top: 1em;
}
.card .card-header h1 {
margin-bottom: 0;
}
.secondary-card .card-header h5 {
font-size: 1rem;
font-weight: 700;
}
#home h1 {
font-size: 2rem;
}
#home h2 {
font-size: 1.25rem;
font-style: italic;
margin-top: .5rem;
}
footer {
margin-top: 2em;
margin-bottom: 1em;
}
footer .card {
background-color: rgba(1,1,1,.5);
color: #ffffff;
}
footer .card p {
text-align: right;
margin-bottom: 0;
}
footer .card p a {
color: #ffffff;
}