blob: 3f704b1b4ae7291c5d2cc4f9338da7790ec20333 (
plain)
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
|
/* Colors {{{ */
#container {
border: 1px dashed black;
}
header {
background-color: black;
border-bottom: 5px dotted maroon;
}
.title {
background-color: blue;
color: white;
border: 1px solid black;
}
.subtitle {
background-color: red;
color: white;
border: 1px solid black;
}
.dedication {
background-color: yellow;
color: black;
border: 1px solid black;
}
.epigraph {
background-color: yellow;
color: blue;
}
.content {
background-color: purple;
color: white;
border: 1px solid black;
}
nav {
border: 1px solid black;
}
/* }}} */
header {
position: relative;
max-width: 39em;
margin: auto;
}
.dedication {
text-align: left;
}
.epigraph {
border: 1px solid black;
text-align: right;
}
#dedepi { text-align: right; }
.dedication,.epigraph {
vertical-align: bottom;
display: inline-block;
margin: 0 1%;
width: 47%;
}
.epigraph p { margin: 0; padding: 0; }
header::after {
content: " ";
display: inline-block;
clear: both;
height: 0px;
width: 100%;
}
|