From 0eca3a9e223168627919bdb14ce6506d2bf3afe3 Mon Sep 17 00:00:00 2001 From: Nick Forrer Date: Sat, 22 Oct 2022 13:39:40 -0400 Subject: [PATCH] Initial commit --- index.css | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 33 ++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 index.css create mode 100644 index.html diff --git a/index.css b/index.css new file mode 100644 index 0000000..08bf51f --- /dev/null +++ b/index.css @@ -0,0 +1,60 @@ +html { + font-size: 62.5%; + font-family: Verdana, Geneva, Tahoma, sans-serif; +} + +* { + box-sizing: border-box; +} + +body { + font-size: 1.8rem; + line-height: 1.618; + color: #ebdbb2; + background-color: #282828; + padding: 13px; +} + +.header { + text-align: center; + border-bottom: 3px solid #3c3836; +} + +.leftcolumn { + float: left; + width: 100%; +} + +.rightcolumn { + float: left; + width: 25%; + padding-left: 20px; +} + +.fakeimg { + background-color: #aaa; + width: 100%; + padding: 20px; +} + +.row { + max-width: 60em; + margin: auto; +} + +.card { + transition: background-color 0.2s ease-in; + background-color: #282828; + padding: 20px; + margin-top: 20px; +} + +.card:hover { + background-color: #665c5420; +} + +.row:after { + content: ""; + display: table; + clear: both; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..6c3aaf9 --- /dev/null +++ b/index.html @@ -0,0 +1,33 @@ + + + + + nick + + + + +
+

nick

+
+ +
+
+ +
+

TITLE HEADING

+
Title description, Oct 19, 2022
+

Some text...

+
+
+

TITLE HEADING

+
Title description, Sep 9, 2022
+

Some text...

+
+
+
+ + + \ No newline at end of file