Compare commits

...

4 Commits

Author SHA1 Message Date
Case Duckworth 208e9b1ac2 Consolidate O, O/S rules 2021-02-05 00:08:23 -06:00
Case Duckworth 272f5ba8f8 Change header margins 2021-02-05 00:08:12 -06:00
Case Duckworth 89f11b9e11 Change box-sizing 2021-02-05 00:08:01 -06:00
Case Duckworth 620d29e259 Add some stuff to writing.html 2021-02-05 00:07:43 -06:00
3 changed files with 40 additions and 4 deletions

View File

@ -1 +1,25 @@
writing
I consider myself mostly a writer; it's what I've been trained in and it's what
I'm comfortable with.
@h2 publications
@h3 creative
<dl>
<dt><cite><a href="https://write.as/cues">Write.as Cues</a></cite></dt>
<dd><a href="https://write.as/cues/i-dont-want-to-see-your-eyes-or-your-faces">I don't want to see your eyes or your faces</a></dd>
<dt><cite><a href="https://gnashingteethpublishing.com">Gnashing Teeth</a></cite></dt>
<dd><a href="https://gnashingteethpublishing.com/blog/fever-dreams-by-case-duckworth/">Fever dreams</a></dd>
<dt><cite><a href="https://www.sweettreereview.com/">Sweet Tree Review</a></cite></dt>
<dd><a href="http://www.sweettreereview.com/in-bed-case-duckworth/">In bed</a></dd>
<dd><a href="https://www.sweettreereview.com/sifting-beans-case-duckworth">Sifting beans</a></dd>
<dt><cite><a href="https://nudebrucereview.com/">Nude Bruce Review</a></cite></dt>
<dd><a href="https://issuu.com/nudebrucereview/docs/final_layout_issue_5/84">Time looks up to the sky</a> (p. 84)</dd>
</dl>
@h3 professional

View File

@ -20,8 +20,7 @@ all: $(OUTPUT)
clean:
rm -rf O
O:; mkdir -p O
O/S: O; mkdir -p O/S
O O/S:; mkdir -p $@
O/S/%: S/% O/S
cp $< $@

View File

@ -1,3 +1,5 @@
* { box-sizing: border-box; }
html,body{
font:18px/1.4 serif;
padding:0;
@ -13,7 +15,9 @@ main{
main > :last-child {
border-bottom: 2px solid;
margin-bottom: 2rem;}
margin-top: -1rem;
margin-bottom: 3rem;
}
main > :last-child::after {
content: "\2766";
@ -57,17 +61,20 @@ header a:hover,footer a:hover{
h1,h2,h3,h4,h5,h6 {
font: 1rem sans-serif;
margin: 0;
}
h1 {
text-transform: uppercase;
letter-spacing: 0.2rem;
font-weight: bold;
border-top: 2px solid;
margin: 0.5rem 0 0.8rem 0;
}
h2 {
font-style: italic;
font-weight: bold;
letter-spacing: 1px;
margin: 0.4rem 0 0.6rem 0;
}
h2::before {
content: "\261e"; /* index */
@ -77,18 +84,24 @@ h2::before {
}
h3 {
font-weight: bold;
margin: 0.3rem 0 0.4rem 0;
}
h3::before {
content: "\25ca"; /* lozenge */
position: relative;
font: 18px/1 normal normal;
margin-right: 1rem;
margin: 0 1rem;Web/acdw.net/S/
}
h4,h5,h6 { margin: 0.2rem 0 0.2rem 0; }
h4::before,
h5::before,
h6::before {
content: "\2022"; /* bullet */
margin-right: 1rem;
}
h4::before { margin-left: 2rem; }
h5::before { margin-left: 3rem; }
h6::before { margin-left: 4rem; }
pre,code {
font: 16px/1.2 monospace;