From 0cbbeb562fcdcdf63f7fdb038073c9d93ed806f8 Mon Sep 17 00:00:00 2001 From: hippoz Date: Sun, 4 Oct 2020 21:33:26 +0300 Subject: [PATCH] add basic nagivation --- index.html | 23 +++++++++++++++++++++++ style.css | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 59 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..2e7bec1 --- /dev/null +++ b/index.html @@ -0,0 +1,23 @@ + + + + + + hippoz + + + + + + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..e5b4476 --- /dev/null +++ b/style.css @@ -0,0 +1,36 @@ +body { + background: #414141; + font-family: 'Roboto', sans-serif; +} + +.card { + margin: 25px auto; + padding: 20px; + width: 400px; + background: #d1d1d1; + border-radius: 8px; +} + +.navigation-card { + width: 500px; + text-align: center; +} + +.navigation-buttons a { + margin-left: 10px; +} + +.navigation-buttons a:first-child { + margin-left: 0px; +} + +.button-default { + text-decoration: none; + border: 2px solid #818181; + border-radius: 5px; + padding: 5px; + white-space: nowrap; + margin-top: 2px; + margin-bottom: 2px; + color: #818181; +} \ No newline at end of file