about summary refs log tree commit diff stats
path: root/css/paul.css
diff options
context:
space:
mode:
authorCase Duckworth2015-03-02 21:54:42 -0700
committerCase Duckworth2015-03-02 21:54:42 -0700
commitedae7fa33e230c9a8b0e374f2f921b6292952221 (patch)
tree62a476612cae5f8830dc465ce8e7a1f43ac436b7 /css/paul.css
parentFix src on typewriter pages in Paul (diff)
downloadautocento-edae7fa33e230c9a8b0e374f2f921b6292952221.tar.gz
autocento-edae7fa33e230c9a8b0e374f2f921b6292952221.zip
Fix basic typography in PAUL
Diffstat (limited to 'css/paul.css')
-rw-r--r--css/paul.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/css/paul.css b/css/paul.css index e69de29..495ecf6 100644 --- a/css/paul.css +++ b/css/paul.css
@@ -0,0 +1,29 @@
1/* BUILDINGS OUT OF AIR: PAUL IN THE WOODS
2 * project stylesheet
3 */
4
5@import url("fonts/courier-prime.css");
6@import url("fonts/playfair.css");
7
8/* Blockquote = typewriter */
9blockquote {
10 font-family: "Courier Prime", Courier, monospace;
11 font-size: 10pt;
12 border: 1px solid black;
13 max-width: 30em;
14 margin: auto;
15 padding: 0 1em;
16 text-align: left;
17}
18blockquote ul {
19 list-style-type: none;
20}
21blockquote ul li:before {
22 content: '- ';
23}
24
25/* Emphasis = handwritten */
26em {
27 font-family: Playfair, sans-serif;
28 font-style: italic;
29}