about summary refs log tree commit diff stats
path: root/test/css/common.css
diff options
context:
space:
mode:
Diffstat (limited to 'test/css/common.css')
-rw-r--r--test/css/common.css63
1 files changed, 63 insertions, 0 deletions
diff --git a/test/css/common.css b/test/css/common.css new file mode 100644 index 0000000..3f704b1 --- /dev/null +++ b/test/css/common.css
@@ -0,0 +1,63 @@
1/* Colors {{{ */
2#container {
3 border: 1px dashed black;
4}
5header {
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}
33nav {
34 border: 1px solid black;
35}
36/* }}} */
37header {
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; }
57header::after {
58 content: " ";
59 display: inline-block;
60 clear: both;
61 height: 0px;
62 width: 100%;
63}