added placeholder favicon; blockquote style
This commit is contained in:
parent
7ccb524efa
commit
ceb477e51f
12 changed files with 29 additions and 15 deletions
2
serve.sh
2
serve.sh
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
python3 -m http.server -d serve/ 8080
|
python3 -m http.server -d $1 8080
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../assets
|
|
1
site/acl.cool/assets/fonts
Symbolic link
1
site/acl.cool/assets/fonts
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../assets/fonts
|
|
@ -167,11 +167,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--base-font-size: 1.1rem;
|
--base-font-size: 1.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-size: var(--base-font-size);
|
font-size: calc(var(--base-font-size) * 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.font-body-serif body {
|
.font-body-serif body {
|
||||||
|
@ -196,7 +196,7 @@ h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: calc(2.4 * var(--base-font-size));
|
font-size: calc(2.25 * var(--base-font-size));
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
|
|
|
@ -17,5 +17,22 @@ pre {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: rgb(255, 255, 255);
|
background-color: rgb(255, 255, 255);
|
||||||
color: rgb(0.9, 0.8, 0.8);
|
color: rgb(30, 25, 20);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
font-style: italic;
|
||||||
|
border-left: 6px solid black;
|
||||||
|
padding-left: 0.7em;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
blockquote:before {
|
||||||
|
color: black;
|
||||||
|
content: '>';
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote p {
|
||||||
|
display: inline;
|
||||||
|
} */
|
|
@ -1 +0,0 @@
|
||||||
../assets
|
|
BIN
site/ytheleus.org/assets/favicon.png
Normal file
BIN
site/ytheleus.org/assets/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
1
site/ytheleus.org/assets/fonts
Symbolic link
1
site/ytheleus.org/assets/fonts
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../assets/fonts
|
|
@ -1,4 +1,4 @@
|
||||||
# Ytheleus | Well-Understood Programming
|
# Ytheleus│Well-Understood Programming
|
||||||
|
|
||||||
You're at ytheleus.org, home page of the [Ytheleus](yth-name) programming language!
|
You're at ytheleus.org, home page of the [Ytheleus](yth-name) programming language!
|
||||||
|
|
||||||
|
|
3
site/ytheleus.org/yth-name.dj
Normal file
3
site/ytheleus.org/yth-name.dj
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
"Ytheleus" is the second part of a name, "Sisela Ytheleus 1/2", belonging to a spirited type D-4 military drone of the explorer ship "Peace Makes Plenty", a vessel of the Stargazer Clan, part of the Fifth Fleet of the Zetetic Elench - from Iain M. Banks' fifth Culture novel, _Excession_.
|
||||||
|
|
||||||
|
> "One should always be prepared for every eventuality, even if it's getting shafted by a dope with bigger guns."
|
|
@ -1,5 +0,0 @@
|
||||||
<p>"Ytheleus" is the second part of a name, "Sisela Ytheleus 1/2", belonging to a spirited type D-4 military drone of
|
|
||||||
the explorer ship "Peace Makes Plenty", a vessel of the Stargazer Clan, part of the Fifth Fleet of the Zetetic
|
|
||||||
Elench - from Iain M. Banks' fifth Culture novel, <i>Excession</i>.</p>
|
|
||||||
|
|
||||||
<p>"One should always be prepared for every eventuality, even if it's getting shafted by a dope with bigger guns."</p>
|
|
|
@ -5,6 +5,7 @@
|
||||||
<title> <!-- set automatically, see soupault.conf --> </title>
|
<title> <!-- set automatically, see soupault.conf --> </title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="/css/index.css">
|
<link rel="stylesheet" href="/css/index.css">
|
||||||
|
<link rel="icon" type="image/png" href="/assets/favicon.png">
|
||||||
<script>
|
<script>
|
||||||
const class_ = window.devicePixelRatio > 1 ? "font-body-serif" : "font-body-sans";
|
const class_ = window.devicePixelRatio > 1 ? "font-body-serif" : "font-body-sans";
|
||||||
document.documentElement.className = class_;
|
document.documentElement.className = class_;
|
||||||
|
@ -13,8 +14,6 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<!-- your page content will be inserted here,
|
|
||||||
see the default_content_selector option in soupault.conf -->
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue