diff options
author | Case Duckworth | 2015-03-02 21:54:42 -0700 |
---|---|---|
committer | Case Duckworth | 2015-03-02 21:54:42 -0700 |
commit | edae7fa33e230c9a8b0e374f2f921b6292952221 (patch) | |
tree | 62a476612cae5f8830dc465ce8e7a1f43ac436b7 /css | |
parent | Fix src on typewriter pages in Paul (diff) | |
download | autocento-edae7fa33e230c9a8b0e374f2f921b6292952221.tar.gz autocento-edae7fa33e230c9a8b0e374f2f921b6292952221.zip |
Fix basic typography in PAUL
Diffstat (limited to 'css')
-rw-r--r-- | css/_common.css | 4 | ||||
-rw-r--r-- | css/fonts/courier-prime.css | 8 | ||||
-rw-r--r-- | css/paul.css | 29 |
3 files changed, 35 insertions, 6 deletions
diff --git a/css/_common.css b/css/_common.css index 19fdf9d..d7abae2 100644 --- a/css/_common.css +++ b/css/_common.css | |||
@@ -6,8 +6,8 @@ | |||
6 | * vim: fdm=marker | 6 | * vim: fdm=marker |
7 | */ | 7 | */ |
8 | /* Import rules {{{ */ | 8 | /* Import rules {{{ */ |
9 | @import url("./fonts/playfair.css"); | 9 | @import url("fonts/playfair.css"); |
10 | @import url("./fonts/fira.css"); | 10 | @import url("fonts/fira.css"); |
11 | /* @import url("fonts/courier-prime.css"); | 11 | /* @import url("fonts/courier-prime.css"); |
12 | * ^^^^^^ for typewriter pages in Paul */ | 12 | * ^^^^^^ for typewriter pages in Paul */ |
13 | /* }}} */ | 13 | /* }}} */ |
diff --git a/css/fonts/courier-prime.css b/css/fonts/courier-prime.css index 0550e90..0a38383 100644 --- a/css/fonts/courier-prime.css +++ b/css/fonts/courier-prime.css | |||
@@ -4,26 +4,26 @@ | |||
4 | 4 | ||
5 | /* Normal = normal */ | 5 | /* Normal = normal */ |
6 | @font-face { | 6 | @font-face { |
7 | font-family: CourierPrime; | 7 | font-family: "Courier Prime"; |
8 | font-weight: normal; | 8 | font-weight: normal; |
9 | font-style: normal; | 9 | font-style: normal; |
10 | src: url("Courier_Prime.ttf"); | 10 | src: url("Courier_Prime.ttf"); |
11 | } | 11 | } |
12 | @font-face { | 12 | @font-face { |
13 | font-family: CourierPrime; | 13 | font-family: "Courier Prime"; |
14 | font-weight: normal; | 14 | font-weight: normal; |
15 | font-style: italic; | 15 | font-style: italic; |
16 | src: url("Courier_Prime_Italic.ttf"); | 16 | src: url("Courier_Prime_Italic.ttf"); |
17 | } | 17 | } |
18 | /* Bold = bold */ | 18 | /* Bold = bold */ |
19 | @font-face { | 19 | @font-face { |
20 | font-family: CourierPrime; | 20 | font-family: "Courier Prime"; |
21 | font-weight: bold; | 21 | font-weight: bold; |
22 | font-style: normal; | 22 | font-style: normal; |
23 | src: url("Courier_Prime_Bold.ttf"); | 23 | src: url("Courier_Prime_Bold.ttf"); |
24 | } | 24 | } |
25 | @font-face { | 25 | @font-face { |
26 | font-family: CourierPrime; | 26 | font-family: "Courier Prime"; |
27 | font-weight: bold; | 27 | font-weight: bold; |
28 | font-style: italic; | 28 | font-style: italic; |
29 | src: url("Courier_Prime_Bold_Italic.ttf"); | 29 | src: url("Courier_Prime_Bold_Italic.ttf"); |
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 */ | ||
9 | blockquote { | ||
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 | } | ||
18 | blockquote ul { | ||
19 | list-style-type: none; | ||
20 | } | ||
21 | blockquote ul li:before { | ||
22 | content: '- '; | ||
23 | } | ||
24 | |||
25 | /* Emphasis = handwritten */ | ||
26 | em { | ||
27 | font-family: Playfair, sans-serif; | ||
28 | font-style: italic; | ||
29 | } | ||