commit c2f515e6ba736314199c8d2fcb1aa984a37af940 Author: Case Date: Sun Mar 10 23:20:16 2019 -0500 2019-03-10 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..768d0d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +feels +feels/* diff --git a/fragment-1.html b/fragment-1.html new file mode 100644 index 0000000..7969298 --- /dev/null +++ b/fragment-1.html @@ -0,0 +1,31 @@ +

+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 quite hot, +and the people are more ... so. +

+I'm not sure how else to put it. +

+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. +

+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 their youth? +

+How strange they will be to me then. +And how strange will I be to them. +

diff --git a/index.html b/index.html new file mode 100644 index 0000000..e1524e7 --- /dev/null +++ b/index.html @@ -0,0 +1,110 @@ + + + + acdw's house + + + + + + + + + + + +

+
+

+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 quite hot, +and the people are more ... so. +

+I'm not sure how else to put it. +

+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. +

+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 their youth? +

+How strange they will be to me then. +And how strange will I be to them. +

+

+ +
+ + + diff --git a/moon/index.html b/moon/index.html new file mode 100644 index 0000000..d68df8b --- /dev/null +++ b/moon/index.html @@ -0,0 +1,11 @@ + + + moon + + + +

+ The moon is full tonight, long live the moon. +

+ + diff --git a/moon/moon.jpg b/moon/moon.jpg new file mode 100644 index 0000000..97c6503 Binary files /dev/null and b/moon/moon.jpg differ diff --git a/moon/style.css b/moon/style.css new file mode 100644 index 0000000..e7a3708 --- /dev/null +++ b/moon/style.css @@ -0,0 +1,5 @@ +body { + background-color: #c0ffee; + background-image: url('https://tilde.town/~acdw/moon/moon.jpg'); + color: white; +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..6b11efd --- /dev/null +++ b/style.css @@ -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; +}