forked from schollz/poetry-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwinkle-twinkle.css
68 lines (56 loc) · 1.03 KB
/
twinkle-twinkle.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
body {
background: #FFF;
color: #111;
font: 18px Baskerville, "Palatino Linotype", "Times New Roman", Times, serif;
text-align: center;
}
div, h1, h2, p {
margin: 0;
padding: 0;
}
#poem {
margin: auto;
padding: 20px 0;
text-align: left;
width: 650px;
}
h1, h2 {
font-weight: normal;
text-align: center;
}
h1 {
font-size: 34px;
line-height: 1.2;
margin-bottom: 10px;
}
h2 {
color: #666;
font-size: 18px;
font-style: italic;
margin-bottom: 30px;
}
p {
line-height: 1.5;
margin-bottom: 15px;
}
/* The magic of selectors begins... */
h2:before {
content: '- ';
}
h2:after {
content: ' -';
}
#poem h2 + p:first-letter {
float: left;
font-size: 38px;
line-height: 1;
margin: 2px 5px 0 0;
}
#poem p:first-line {
font-variant: small-caps;
letter-spacing: 1px;
}
#poem p:last-child {
margin-bottom: 30px;
padding-bottom: 30px;
}