summaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-07-02 00:26:49 +0100
committerLibravatar cel 🌸 <cel@bunny.garden>2025-07-02 02:07:34 +0100
commit8ae94ec21dbf15dd3192de7ce6417ca7a82cd15a (patch)
tree296f173c8617110aa2004f5084159a9a3245f029 /style.css
downloadlovely.computer-main.tar.gz
lovely.computer-main.tar.bz2
lovely.computer-main.zip
initial commitHEADmain
Diffstat (limited to 'style.css')
-rw-r--r--style.css96
1 files changed, 96 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..ab42486
--- /dev/null
+++ b/style.css
@@ -0,0 +1,96 @@
+* {
+ word-break: break-word;
+ overflow-wrap: break-word;
+}
+
+html {
+ background: #e3dfcd;
+ color: #44392e;
+ font-family: monospace;
+ padding: 0;
+ font-size: 20px;
+}
+
+main {
+ padding: 0 calc(2.5vw + 2px);
+}
+
+body {
+ max-width: 1000px;
+ margin: auto;
+}
+
+header {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+
+header p {
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ text-align: center
+}
+
+#computer-manifesto {
+ max-width: 100vw;
+ overflow: clip;
+}
+
+#on-spiritual-computing {
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+}
+
+header br {
+ margin-top: 10vh;
+}
+
+hr {
+ margin-left: 2.5vw;
+ margin-right: 2.5vw;
+ border-width: 1.5px;
+ border-style: solid;
+ border-color: #44392e;
+}
+
+a {
+ color: #DCDCDC;
+ text-decoration: underline;
+ font-weight: 700;
+}
+
+img {
+ max-width: 80vw;
+}
+
+ol {
+ list-style-type: upper-alpha;
+}
+
+.parts {
+ list-style-type: upper-roman;
+}
+
+#lovely {
+ /* fill: #DCDCDC; */
+ filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(1660%) hue-rotate(349deg) brightness(91%) contrast(84%);
+ height: 150px;
+ position: relative;
+ top: 3px;
+ left: 2px;
+}
+
+h1 {
+ font-size: 64px;
+}
+
+h2 {
+ font-size: 48px;
+}
+
+h3 {
+ font-size: 32px;
+}