From 5cf162ab179e9de8c75f2f55ea530344c040b63c Mon Sep 17 00:00:00 2001 From: Nihaal Sharma Date: Sat, 20 May 2023 10:54:38 +0100 Subject: [PATCH] added lots of Shtuff added nice css dark mode adaptation nice respnonsiveness looks good on ios aswell with blue font for --- index.html | 7 +++++++ style.css | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..e3f1926 --- /dev/null +++ b/index.html @@ -0,0 +1,7 @@ + +

inital commit

+

+ this site is hosted with Github Pages! + soon, ill add a directory listing +

+ \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..9f0b891 --- /dev/null +++ b/style.css @@ -0,0 +1,44 @@ +* { + box-sizing: border-box; +} +b{color:#007AFF} +body{ + background-color: #f2f2f2; + color:#333333; + font-family: system-ui; + margin: auto; + overflow-x: hidden; +} +p{ + font-size: 20px; + position: absolute; + top: 50%; + left: 50%; +} +h1{ + font-size: 45px; + font-weight: 800; +} +h2{ + font-size: 30px; + font-weight:300; + margin-top:-38; +} +@media (prefers-color-scheme: dark) { + body { + background-color:#1C1C1E; + color: #f1f1f1; + } + #transaction { + background-color: #191919; + box-shadow: none; + } + p{ + color: #AAAAAA; + } +} +@media screen and (max-width: 600px) { + *{ + width: 100%; + } +} \ No newline at end of file