forked from prose/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.css
102 lines (81 loc) · 1.24 KB
/
site.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
/**
* Site layout and colors
*/
html, body {
background: #6FA8CD;
font-size: 1.2rem;
}
.row, #footer {
background: #ff6633;
}
body, h1, h2, h3, p, .article-summary a, .article-summary a:hover, .article-summary a:visited {
color: #efefef;
}
a, a:hover, a:visited {
color: #333;
}
#footer {
font-size: .8rem;
text-align: right;
}
#header {
width: 100%;
background-color: #333;
}
#footer {
width: 100%;
padding-top: .75rem;
padding-bottom: .75rem;
}
#header .row {
background: none;
}
@media only screen and (min-width: 1000px) {
#footer {
margin-top: 1rem;
}
}
.author {
text-decoration: underline;
}
/**
* generic blog styles
*/
.article-summary {
padding-bottom: .66rem;
margin-bottom: .66rem;
}
.article-summary:last-child {
margin-bottom: 0;
}
.article-splash {
width: 100%;
}
.article-summary-header {
margin-top: 1rem;
}
.article-more-link {
float: right;
margin-top: -1rem;
margin-bottom: 0.5rem;
font-size: 0.8rem;
}
/**
* heatmap styles
*/
.fullscreen {
width: 100%;
min-height: 100%;
}
#map {
height: 400px;
}
#timeline {
background-color: rgba( 55, 55, 55, 0.5);
width: 420px;
height: 200px;
z-index: 1;
position: absolute;
right: 0;
padding-left: .66rem;
}