diff options
Diffstat (limited to 'test/css')
-rw-r--r-- | test/css/common.css | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/test/css/common.css b/test/css/common.css deleted file mode 100644 index 3f704b1..0000000 --- a/test/css/common.css +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | /* Colors {{{ */ | ||
2 | #container { | ||
3 | border: 1px dashed black; | ||
4 | } | ||
5 | header { | ||
6 | background-color: black; | ||
7 | border-bottom: 5px dotted maroon; | ||
8 | } | ||
9 | .title { | ||
10 | background-color: blue; | ||
11 | color: white; | ||
12 | border: 1px solid black; | ||
13 | } | ||
14 | .subtitle { | ||
15 | background-color: red; | ||
16 | color: white; | ||
17 | border: 1px solid black; | ||
18 | } | ||
19 | .dedication { | ||
20 | background-color: yellow; | ||
21 | color: black; | ||
22 | border: 1px solid black; | ||
23 | } | ||
24 | .epigraph { | ||
25 | background-color: yellow; | ||
26 | color: blue; | ||
27 | } | ||
28 | .content { | ||
29 | background-color: purple; | ||
30 | color: white; | ||
31 | border: 1px solid black; | ||
32 | } | ||
33 | nav { | ||
34 | border: 1px solid black; | ||
35 | } | ||
36 | /* }}} */ | ||
37 | header { | ||
38 | position: relative; | ||
39 | max-width: 39em; | ||
40 | margin: auto; | ||
41 | } | ||
42 | .dedication { | ||
43 | text-align: left; | ||
44 | } | ||
45 | .epigraph { | ||
46 | border: 1px solid black; | ||
47 | text-align: right; | ||
48 | } | ||
49 | #dedepi { text-align: right; } | ||
50 | .dedication,.epigraph { | ||
51 | vertical-align: bottom; | ||
52 | display: inline-block; | ||
53 | margin: 0 1%; | ||
54 | width: 47%; | ||
55 | } | ||
56 | .epigraph p { margin: 0; padding: 0; } | ||
57 | header::after { | ||
58 | content: " "; | ||
59 | display: inline-block; | ||
60 | clear: both; | ||
61 | height: 0px; | ||
62 | width: 100%; | ||
63 | } | ||