From d88782b820b8cb6958bbba2680559cc775e937cf Mon Sep 17 00:00:00 2001 From: jreichmann <34141868+jreichmann@users.noreply.github.com> Date: Fri, 18 May 2018 11:52:14 +0200 Subject: [PATCH] Initial commit: first draft of layout --- dark_theme.css | 4 ++++ index.html | 9 +++++++++ layout.css | 11 +++++++++++ 3 files changed, 24 insertions(+) create mode 100644 dark_theme.css create mode 100644 index.html create mode 100644 layout.css diff --git a/dark_theme.css b/dark_theme.css new file mode 100644 index 0000000..1853be9 --- /dev/null +++ b/dark_theme.css @@ -0,0 +1,4 @@ +html, body { + background-color: black; + color: white; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..f2aff4b --- /dev/null +++ b/index.html @@ -0,0 +1,9 @@ + + + + + +
2018-04-12 12:34:56.345h UTC+1
+ + + diff --git a/layout.css b/layout.css new file mode 100644 index 0000000..7eb5110 --- /dev/null +++ b/layout.css @@ -0,0 +1,11 @@ +html, body { + height: 100%; + width: 100%; + padding: 0; + margin: 0; +} + +#datetime, #weather { + width: 100%; + margin: auto; +}