diff options
Diffstat (limited to 'css/cover.css')
-rw-r--r-- | css/cover.css | 137 |
1 files changed, 0 insertions, 137 deletions
diff --git a/css/cover.css b/css/cover.css deleted file mode 100644 index f285bf4..0000000 --- a/css/cover.css +++ /dev/null | |||
@@ -1,137 +0,0 @@ | |||
1 | /* vim: fdm=marker | ||
2 | */ | ||
3 | @import url(http://fonts.googleapis.com/css?family=Playfair+Display:400,700,400italic,700italic&subset=latin,latin-ext); | ||
4 | /* Flexboxing {{{ */ | ||
5 | #cover { | ||
6 | position: absolute; | ||
7 | top: 0; | ||
8 | bottom: 0; | ||
9 | left: 0; | ||
10 | right: 0; | ||
11 | display: -webkit-box; | ||
12 | display: -moz-box; | ||
13 | display: -ms-flexbox; | ||
14 | display: -webkit-flex; | ||
15 | display: flex; | ||
16 | -webkit-box-direction: normal; | ||
17 | -moz-box-direction: normal; | ||
18 | -webkit-box-orient: vertical; | ||
19 | -moz-box-orient: vertical; | ||
20 | -webkit-flex-direction: column; | ||
21 | -ms-flex-direction: column; | ||
22 | flex-direction: column; | ||
23 | -webkit-flex-wrap: nowrap; | ||
24 | -ms-flex-wrap: nowrap; | ||
25 | flex-wrap: nowrap; | ||
26 | -webkit-box-pack: center; | ||
27 | -moz-box-pack: center; | ||
28 | -webkit-justify-content: center; | ||
29 | -ms-flex-pack: center; | ||
30 | justify-content: center; | ||
31 | -webkit-align-content: center; | ||
32 | -ms-flex-line-pack: center; | ||
33 | align-content: center; | ||
34 | -webkit-box-align: center; | ||
35 | -moz-box-align: center; | ||
36 | -webkit-align-items: center; | ||
37 | -ms-flex-align: center; | ||
38 | align-items: center; | ||
39 | } | ||
40 | .title { | ||
41 | -webkit-box-ordinal-group: 1; | ||
42 | -moz-box-ordinal-group: 1; | ||
43 | -webkit-order: 0; | ||
44 | -ms-flex-order: 0; | ||
45 | order: 0; | ||
46 | -webkit-box-flex: 0; | ||
47 | -moz-box-flex: 0; | ||
48 | -webkit-flex: 0 1 auto; | ||
49 | -ms-flex: 0 1 auto; | ||
50 | flex: 0 1 auto; | ||
51 | -webkit-align-self: auto; | ||
52 | -ms-flex-item-align: auto; | ||
53 | align-self: auto; | ||
54 | } | ||
55 | .byline { | ||
56 | -webkit-box-ordinal-group: 1; | ||
57 | -moz-box-ordinal-group: 1; | ||
58 | -webkit-order: 0; | ||
59 | -ms-flex-order: 0; | ||
60 | order: 0; | ||
61 | -webkit-box-flex: 0; | ||
62 | -moz-box-flex: 0; | ||
63 | -webkit-flex: 0 1 auto; | ||
64 | -ms-flex: 0 1 auto; | ||
65 | flex: 0 1 auto; | ||
66 | -webkit-align-self: auto; | ||
67 | -ms-flex-item-align: auto; | ||
68 | align-self: auto; | ||
69 | } | ||
70 | .lozenge { | ||
71 | -webkit-box-ordinal-group: 1; | ||
72 | -moz-box-ordinal-group: 1; | ||
73 | -webkit-order: 0; | ||
74 | -ms-flex-order: 0; | ||
75 | order: 0; | ||
76 | -webkit-box-flex: 0; | ||
77 | -moz-box-flex: 0; | ||
78 | -webkit-flex: 0 1 auto; | ||
79 | -ms-flex: 0 1 auto; | ||
80 | flex: 0 1 auto; | ||
81 | -webkit-align-self: auto; | ||
82 | -ms-flex-item-align: auto; | ||
83 | align-self: auto; | ||
84 | } | ||
85 | /* }}} */ | ||
86 | body { | ||
87 | font-family: "Playfair Display", Georgia, serif; | ||
88 | font-weight: 400; | ||
89 | font-size: 100%; | ||
90 | color: #b2d9e5; | ||
91 | } | ||
92 | #cover { | ||
93 | background-image: url('../img/black-streak.jpg'); | ||
94 | background-position: 0 0; | ||
95 | background-size: 100% 100%; | ||
96 | background-repeat: no-repeat; | ||
97 | background-attachment: fixed; | ||
98 | background-clip: border-box; | ||
99 | background-color: black; | ||
100 | } | ||
101 | a { | ||
102 | text-decoration: none; | ||
103 | } | ||
104 | a:link { | ||
105 | color: #b2d9e5; | ||
106 | } | ||
107 | a:visited { | ||
108 | color: #b2b2e5; | ||
109 | } | ||
110 | a:hover { | ||
111 | color: #e5bfb2; | ||
112 | } | ||
113 | a:active { | ||
114 | color: #e5e5b2; | ||
115 | } | ||
116 | li { | ||
117 | list-style: none; | ||
118 | } | ||
119 | .title { | ||
120 | text-transform: uppercase; | ||
121 | text-align: center; | ||
122 | font-size: 1.8em; | ||
123 | letter-spacing: 0.5em; | ||
124 | color: #efefb2; | ||
125 | } | ||
126 | .byline { | ||
127 | font-style: italic; | ||
128 | text-align: center; | ||
129 | font-size: 1.3em; | ||
130 | letter-spacing: 0.2em; | ||
131 | color: #e5bfb2; | ||
132 | } | ||
133 | .lozenge { | ||
134 | text-align: center; | ||
135 | font-size: 1em; | ||
136 | color: #e5bfb2; | ||
137 | } | ||