forked from kgashok/makesite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
140 lines (112 loc) · 2.07 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* General */
body {
margin: 0;
line-height: 1.5em;
color: #333333;
font-family: helvetica, arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 0;
line-height: 1.2em;
margin-top: 1em;
}
a:link, a:visited {
color: #0000e0;
text-decoration: none
}
a:hover, a:active {
color: #0000ff;
text-decoration: underline
}
/* Single column layout */
nav section, header section, main, footer section {
max-width: 40em;
margin-left: auto;
margin-right: auto;
padding: 0 0.5em;
}
/* Navigation panel */
nav {
background: #333333;
border-bottom: thin solid #111111;
line-height: 3em;
}
nav a {
margin-right: 1em;
}
nav a:link, nav a:visited {
color: #cccccc;
}
nav a:hover, nav a:active {
color: #ffffff;
text-decoration: none;
}
@media screen and (min-width: 600px) {
nav .links {
float: right;
}
}
/* Footer */
footer {
background: #f0f0f0;
border-top: thin solid #e0e0e0;
margin-top: 2em;
padding: 1em 0;
box-shadow: 0 100vh 0 100vh #f0f0f0;
text-align: center;
}
footer section p {
font-size: 0.8em;
}
footer a {
margin-right: 1em;
}
footer a:last-child {
margin-right: 0;
}
/* Posts */
article {
margin-top: 1em;
margin-bottom: 1em;
}
article h2 a:link, article h2 a:visited,
article h1 a:link, article h1 a:visited,
.more:link, .more:visited {
color: #333333;
}
article h2 a:hover, article h2 a:active,
article h1 a:hover, article h1 a:active,
.more:hover, .more:active {
color: #777777;
}
p.meta {
margin-top: 0;
font-size: 0.8em;
color: #777777;
font-style: italic;
}
p.summary {
margin-top: 0.25em;
margin-bottom: 0.25em;
}
div .more {
margin-top: 0;
font-weight: bold;
}
/* RSS */
.rss {
padding: 0.3em 0.35em;
border-radius: 0.25em;
font-size: 0.75em;
font-weight: bold;
}
.rss:link, .rss:visited, .rss:hover, .rss:active {
color: #ffffff;
text-decoration: none;
}
.rss:link, .rss:visited {
background: #ff6600;
}
.rss:hover, .rss:active {
background: #ff8822;
}