2019-03-10 init

This commit is contained in:
Case 2019-03-10 23:20:16 -05:00
commit c2f515e6ba
7 changed files with 222 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
feels
feels/*

31
fragment-1.html Normal file
View File

@ -0,0 +1,31 @@
<p>
I think the skies in Louisiana are maybe the prettiest I've ever seen.
Phoenix's sunsets are beautiful as well,
but for the rest of the day the skies are just a pale blue,
which isn't that interesting.
But here, they're a dynamic canvas:
clouds move and morph with the fluidity of emotion,
breezes play with each other like waves in a surf,
the blue backdrop is somehow deeper, a richer tapestry.
Plus it's not quite as hot as in Phoenix,
though it still does get <em>quite hot</em>,
and the people are more ... <em>so</em>.
</p><p>
I'm not sure how else to put it.
</p><p>
The one thing I miss in this state is the mountains from back home.
I would give anything for them;
they are an indelible part of me
and my very being aches with loss every time I go home
and see them again
and am reminded how they are.
</p><p>
I wonder, sometimes, about my childrens' relationships
with the land.
If they grow up here,
and move to the mountains,
will they miss the lowlands of <em>their</em> youth?
</p><p>
How strange they will be to me then.
And how strange will I be to them.
<p>

110
index.html Normal file
View File

@ -0,0 +1,110 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>acdw's house</title>
<meta charset="utf-8" />
<meta name="author" content="acdw" />
<meta name="viewport"
content="width=device-width,
initial-scale=1.0,
user-scalable=yes" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<table id="site-header">
<tr><td>
<pre id="house">
__
/ \
/ \
------
| ____|
| | ||
| | '||
~~~~~~~~
</pre>
</td>
<td>
<h1>acdw's house</h1>
<h2>in the
<a href="https://tilde.town">
~.town
</a>
</h2>
</td>
</tr>
</table>
<main id="site-content">
<section id="la-story">
<p>
I think the skies in Louisiana are maybe the prettiest I've ever seen.
Phoenix's sunsets are beautiful as well,
but for the rest of the day the skies are just a pale blue,
which isn't that interesting.
But here, they're a dynamic canvas:
clouds move and morph with the fluidity of emotion,
breezes play with each other like waves in a surf,
the blue backdrop is somehow deeper, a richer tapestry.
Plus it's not quite as hot as in Phoenix,
though it still does get <em>quite hot</em>,
and the people are more ... <em>so</em>.
</p><p>
I'm not sure how else to put it.
</p><p>
The one thing I miss in this state is the mountains from back home.
I would give anything for them;
they are an indelible part of me
and my very being aches with loss every time I go home
and see them again
and am reminded how they are.
</p><p>
I wonder, sometimes, about my childrens' relationships
with the land.
If they grow up here,
and move to the mountains,
will they miss the lowlands of <em>their</em> youth?
</p><p>
How strange they will be to me then.
And how strange will I be to them.
<p>
</section>
<section id="links">
<h2>Links</h2>
<ul>
<li><a href="feels">feels</a></li>
<li><a href="https://www.acdw.net">my "real" website</a></li>
<li><a href="https://tilde.town/~troido/cadastre/town.html">town</a></li>
<li><a id="moon" href="moon/">&#127765;</a></li>
<li><a href="https://tilde.town/~loosepoops/">L O O S E P O O P S</a></li>
</ul>
<hr />
<h2>Some of my favorite townies</h2>
<ul>
<li><a href="https://tilde.town/~demophoon/">~demophoon</a></li>
</ul>
</section>
</main>
<footer id="site-footer">
<span class="ring" id="tilde_ring">
<em>a member of the ~ring</em>
(<a href="https://tilde.town/~eeeeeta/ring/join.html">join</a>)
</span>
<span class="ring-links">
<a id="tilde_town_ring" class="tilde_ring_link" href="">
random ~user
</a>
| <a id="random_tildebox" class="tilde_ring_link" href="">
random ~box
</a>
| <a id="tilde_town_ring_next" class="tilde_ring_link" href="">
next ~user</a>
</span>
<script type="text/javascript">
var ringjs = document.createElement('script')
ringjs.src = document.location.protocol
+ '//tilde.town/~login/tilde_ring.js'
document.getElementById('tilde_ring').appendChild(ringjs)
</script>
</footer>
</body>
</html>

11
moon/index.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<head>
<title>moon</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<p>
The moon is full tonight, long live the moon.
</p>
</body>
</html>

BIN
moon/moon.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

5
moon/style.css Normal file
View File

@ -0,0 +1,5 @@
body {
background-color: #c0ffee;
background-image: url('https://tilde.town/~acdw/moon/moon.jpg');
color: white;
}

63
style.css Normal file
View File

@ -0,0 +1,63 @@
html, body {
background-color: #aeaeee;
font-family: monospace;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
flex-flow: column nowrap;
}
#site-header {
background-color: #eeaeee;
table-layout: auto;
}
#house {
background-color: #bb7bbb;
color: #ffffff;
padding-right: 1em;
}
#site-content {
flex: 2;
max-width: 49em;
margin: 2em;
}
#site-footer {
display: flex;
justify-content: space-between;
background-color: #aeeeae;
padding: 0 1em;
}
em {
text-decoration: underline;
font-style: normal;
}
#links h2 {
display: inline;
}
#links h2::after {
content: ": ";
}
#links ul {
margin: 0;
padding: 0;
display: inline;
}
#links li {
display: inline;
}
#links li::after {
content: ", ";
}
#links li:last-child::after {
content: "";
}
#moon {
font-size: 3em;
}