about summary refs log tree commit diff stats
path: root/css/common.css
diff options
context:
space:
mode:
authorCase Duckworth2015-03-03 22:10:50 -0700
committerCase Duckworth2015-03-03 22:10:50 -0700
commit2d0952a550e9234eb8f2fc807e15b2e7e10ef870 (patch)
treee8d097fd5925799811fdca1ef703a1fe89446f06 /css/common.css
parentFix styles for nav placement (diff)
downloadautocento-2d0952a550e9234eb8f2fc807e15b2e7e10ef870.tar.gz
autocento-2d0952a550e9234eb8f2fc807e15b2e7e10ef870.zip
Navlink changes
Diffstat (limited to 'css/common.css')
-rw-r--r--css/common.css12
1 files changed, 7 insertions, 5 deletions
diff --git a/css/common.css b/css/common.css index c51fe31..50abb87 100644 --- a/css/common.css +++ b/css/common.css
@@ -123,7 +123,7 @@ h2 {
123 margin-top: -0.5em; 123 margin-top: -0.5em;
124 margin-bottom: 1em; 124 margin-bottom: 1em;
125} 125}
126.dedication:before { 126.dedication::before {
127 content: 'for '; 127 content: 'for ';
128 font-style: italic; 128 font-style: italic;
129} 129}
@@ -143,7 +143,7 @@ h2 {
143 font-size: 10pt; 143 font-size: 10pt;
144 font-style: italic; 144 font-style: italic;
145} 145}
146.epigraph-attrib:before { 146.epigraph-attrib::before {
147 content: '– '; 147 content: '– ';
148} 148}
149/* epigraph }}} */ 149/* epigraph }}} */
@@ -153,20 +153,22 @@ nav .nextlink { float: right; text-align: right; }
153/* Properties both types of navlinks share */ 153/* Properties both types of navlinks share */
154nav .prevlink, nav .nextlink { 154nav .prevlink, nav .nextlink {
155 margin: 0 0.5em; 155 margin: 0 0.5em;
156 max-width: 25%; 156 width: 20%;
157 display: block;
157 font-size: 10pt; 158 font-size: 10pt;
158 font-family: "Playfair Display", Georgia, serif; 159 font-family: "Playfair Display", Georgia, serif;
159 font-style: italic; 160 font-style: italic;
160 text-transform: lowercase; 161 text-transform: lowercase;
161 height: 20px; 162 height: 20px;
162 overflow: hidden; 163 overflow: hidden;
164 text-overflow: ellipsis;
163 text-decoration: none; 165 text-decoration: none;
164} 166}
165nav .prevlink:before { 167nav .prevlink::before {
166 content: ' «'; 168 content: ' «';
167 font-style: normal; 169 font-style: normal;
168} 170}
169nav .nextlink:after { 171nav .nextlink::after {
170 content: ' »'; 172 content: ' »';
171 font-style: normal; 173 font-style: normal;
172} 174}