From 1af2be719cb46feb20b7c2a87ee7fb7821b5749e Mon Sep 17 00:00:00 2001 From: 0x01fe Date: Fri, 8 Mar 2024 16:19:35 -0600 Subject: [PATCH] init --- index.html | 41 +++++++++++++++++++++ index_style.css | 97 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 index.html create mode 100644 index_style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..f71eae4 --- /dev/null +++ b/index.html @@ -0,0 +1,41 @@ + + +
+ + + 0x01fe.net +
+ +
+

0x01fe.net

+

Catchy Right‽

+
+
+ + + + + +
+
+

It's Peaks, Peaks of Yore

+

March 8th, 2024

+

Excuse the awful title please, but it truly is peak. Peaks of Yore has been a more enjoyable title than I could've ever expected. At first glance it seems like a "rage bait" game akin to the likes of Getting Over It With Bennett Foddy or Super Meatboy, but after the first few fundamental courses you realize the controls aren't fighting you, you just haven't mastered them yet.

+
+
+

Post Title

+

foobar

+
+
+

Post Title

+

foobar

+
+
+
+ + diff --git a/index_style.css b/index_style.css new file mode 100644 index 0000000..642a85d --- /dev/null +++ b/index_style.css @@ -0,0 +1,97 @@ +/* Global Settings */ + +body { + font-family: 'Courier New', Courier, monospace; +} + +a { + color: black; + text-decoration: none; +} + +a:hover { + color: hotpink; +} + + + + +/* Other */ + +.header { + text-align: center; + + margin: 10pt; + + border-style: solid; + border-color: #1E2022; + background-color: #F0F5F9; + border-radius: 5pt; +} + +.container { + + display: flex; + flex-direction: row; + + border-style: solid; + border-color: #1E2022; + background-color: #F0F5F9; +} + +.sidebar { + order: 1; + float: left; + + padding: 20pt; + padding-bottom: 25%; + + margin: 15pt; + + border-style: solid; + border-radius: 10px; + border-color: #1E2022; + background-color: #C9D6DF; + + opacity: 0.9; + + /* Text Settings */ + font-weight: bold; + font-family: Arial, Helvetica, sans-serif; + line-height: 30pt; +} + + +.dlog { + order: 2; + flex: 3; + text-align: center; + + display: flex; + flex-direction: column; + + padding: 10pt; + margin: 15pt; + margin-left: 15%; + margin-right: 15%; + + border-style: solid; + border-radius: 10px; + border-color: #1E2022; + background-color: #C9D6DF; +} + +.post { + /* opacity: 0.9; */ + + border: 2px solid #52616B; + border-radius: 10px; + + padding: 10pt; + + margin: 10pt; + margin-left: 20pt; + margin-right: 20pt; + + background-color: #C9D6DF; +}