-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (83 loc) · 1.29 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
@import url('https://fonts.googleapis.com/css?family=Quattrocento+Sans:400,700');
body {
font-family: 'Quattrocento Sans', sans-serif;
margin: 0;
}
h1, h2, h3, h4 {
font-weight: 700;
}
h1 {
margin-top: 50px;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
}
nav {
height: 50px;
padding-top: 5px;
background-color: #222;
font-size: 28px;
text-align: center;
color: #FFF;
}
footer {
margin-bottom: 20px;
text-align: center;
}
a, a:hover {
text-decoration: none;
}
a.home-link {
color: #FFF;
}
a.article-link {
color: #446CB3;
}
a.article-link:hover {
color: #2E569B;
}
span.button {
font-weight: 700;
color: #446CB3;
}
.centerpiece {
margin-top: 20px;
margin-bottom: 20px;
}
.all-projects {
display: none;
}
.image {
width: 100%;
height: auto;
}
.article-text {
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.date-section {
margin-top: 10px;
margin-bottom: 10px;
}
.date-section p {
margin-bottom: 0;
text-transform: uppercase;
}
.credit {
margin-bottom: 0;
font-weight: 700;
}
@media screen and (min-width: 768px) {
.article-text {
padding-left: 0;
}
.featured:first-of-type {
padding-right: 20px;
border-right: 1px solid rgba(0,0,0,.1);
}
.featured:last-of-type {
padding-left: 20px;
}
}