Browse Source

Upload files to 'error_camp_zine_sample'

main
JoanaChicau 3 years ago
parent
commit
852cb52199
  1. 5
      error_camp_zine_sample/distribusi.sh
  2. 89
      error_camp_zine_sample/index.css
  3. 30
      error_camp_zine_sample/intro.md
  4. 42
      error_camp_zine_sample/intro.md.html
  5. 4
      error_camp_zine_sample/md2html.sh

5
error_camp_zine_sample/distribusi.sh

@ -0,0 +1,5 @@
distribusi -t -d . -s index.css
# -t is for thumbnails
# -d is directory
# -s is a style sheet

89
error_camp_zine_sample/index.css

@ -0,0 +1,89 @@
:root {
--color-gray: #858585;
--color-whiteish: #fffff4;
--color-pink: #F557FF;
--color-yellow: #ffff45;
--color-green: #099;
--color-blue: #4a67cf;
--color-orange: #f96163;
font-size: 14.6px;
line-height: 16px;
}
@font-face {
font-family: "Snap" ;
src: url(font/Snap-itmono-1.6-Regular.otf);
}
body{
background-color: var(--color-whiteish);
margin-top: calc(6px + 1em);
font-family: "Snap" ;
color: var(--color-blue);
}
body > a {
position: fixed;
top: 0;
left: 0;
color: var(--color-whiteish);
background-color: var(--color-orange);
width: 100%;
padding: 3px 10px;
}
.filename {
visibility: hidden;
}
h1{
font-size: 5rem;
line-height: 4.5rem;
margin: 2rem 0rem 4rem 0rem;
text-shadow: 0.05em 0.05em 0.05em var(--color-orange);
}
div{
max-width: 520px;
float: left;
margin: 1rem;
padding: 0;
}
.html{
margin:0 3em;
}
li {
list-style: none;
}
.pdf object{
width: 400px;
height: 400px;
}
div#folder{
float:left;
margin-right:2em;
}
.plain,
.unkown-file{
float:right;
clear:right;
}
img, audio {
box-shadow: 0.2em 0.2em 0.5em var(--color-green);
}
figcaption,
.filename{
font-size:small;
color: var(--color-green);
margin:1em;
word-break: break-word;
text-transform: uppercase;
}
a{
font-family: "Snap" ;
word-break: break-word;
color: var(--color-blue);
}
a:visited {
color: var(--color-blue);
}
blockquote{
margin:3em 0;
padding:0;
font-style:italic;
}

30
error_camp_zine_sample/intro.md

@ -0,0 +1,30 @@
# 'er·ror'
* : the quality or state of erring;
* : a deficiency or imperfection in structure or function;
* : the amount of deviation from a standard or specification;
* : mix-up;
<blockquote>
..about the ritual..
* ◌ ...
* ● ...
* ◦ ...
* ● ...
* ○ ...
* ◦ ...
* ● ...
</blockquote>
__Colophon__
Zine generation facilitated by Lucy Cheesman and Joana Chicau
@ Error Camp 2020
_with the help of..._
[distribusi.sh](https://git.vvvvvvaria.org/varia/distribusi) &amp
[md2html.sh using pandoc](https://pandoc.org/demos.html) &amp
[snap font by Morgane Bartoli and Corentin Moussard](https://usemodify.com/fonts/snap-it/)

42
error_camp_zine_sample/intro.md.html

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>intro</title>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
</style>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<h1 id="error">‘er·ror’</h1>
<ul>
<li>: the quality or state of erring;</li>
<li>: a deficiency or imperfection in structure or function;</li>
<li>: the amount of deviation from a standard or specification;</li>
<li>: mix-up;</li>
</ul>
<blockquote>
<p>..about the ritual..</p>
<ul>
<li>◌ …</li>
<li>● …</li>
<li>◦ …</li>
<li>● …</li>
<li>○ …</li>
<li>◦ …</li>
<li>● …</li>
</ul>
</blockquote>
<p><strong>Colophon</strong></p>
<p>Zine generation facilitated by Lucy Cheesman and Joana Chicau @ Error Camp 2020</p>
<p><em>with the help of…</em> <a href="https://git.vvvvvvaria.org/varia/distribusi">distribusi.sh</a> &amp;amp <a href="https://pandoc.org/demos.html">md2html.sh using pandoc</a> &amp;amp <a href="https://usemodify.com/fonts/snap-it/">snap font by Morgane Bartoli and Corentin Moussard</a></p>
</body>
</html>

4
error_camp_zine_sample/md2html.sh

@ -0,0 +1,4 @@
for i in $(find . -name '*.md'); do pandoc -s -t html "${i}" -o "${i}.html"; done
#for i in *.md; do pandoc -s -t html "${i}" -o "${i}.html"; done
Loading…
Cancel
Save