From 0ea4cadc00ef6af93feb0fe25abff006abbddefe Mon Sep 17 00:00:00 2001 From: lonkaars Date: Fri, 26 Mar 2021 09:15:19 +0100 Subject: initial commit --- LICENCE | 21 +++++++++++++++++++++ index.html | 29 +++++++++++++++++++++++++++++ style.css | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 109 insertions(+) create mode 100644 LICENCE create mode 100644 index.html create mode 100644 style.css diff --git a/LICENCE b/LICENCE new file mode 100644 index 0000000..3f68009 --- /dev/null +++ b/LICENCE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Loek Le Blansch + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/index.html b/index.html new file mode 100644 index 0000000..0b4b59f --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + Welcome to pipeframe.xyz + + + + +
+

Welcome to pipeframe.xyz

+

+ GitHub followers +

+

+ This is my personal website on which I host some cool things. Most of my projects are hosted on my GitHub. I'm working on a blog, but for now these are the things hosted on here: +

+ + I'm also working on a connect 4 website. This was originally a simple school project, but I decided to go overboard and try to show off as much as I can. It's not finished yet, and has a lot of security issues, but I'm taking it on as my 'summer break project' so that's also going to be hosted on this domain when it's semi-safe to run publicly. +
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..f61ea8e --- /dev/null +++ b/style.css @@ -0,0 +1,59 @@ +:root { + --black: #000000; + --flame: #f46e42; + --lavender-blush: #eee5e9; + --gray-web: #7c7c7c; + --gold-crayola: #efc88b; + + --bg: var(--black); + --fg: var(--lavender-blush); +} + +@media (prefers-color-scheme: light) { + :root { + --flame: #cf5c36; + --gold-crayola: #b5863b; + + --bg: var(--lavender-blush); + --fg: var(--black); + } +} + +body, html { + margin: 0; + padding: 0; + + background-color: var(--bg); + color: var(--fg); + font-family: "Inter", sans-serif; +} + +.centeredpage { + max-width: 700px; + margin: 0 auto; + padding: 0 24px; + + text-align: justify; +} + +h1 { + text-align: center; + font-size: 75px; + font-weight: 700; +} + +a { color: var(--flame); } + +code { + font-family: "JetBrainsMono Nerd Font", "JetBrainsMono", monospace; + color: var(--gold-crayola); +} + +p, ul { + margin: 30px 0; +} + +ul { + line-height: 1.7; +} + -- cgit v1.2.3