From 0fe65c416358c8e5ddf209c416e0fe46fb1bf7e9 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Fri, 22 Dec 2017 15:00:09 +0200 Subject: Initial commit --- src/style.css | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/style.css (limited to 'src/style.css') diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..d2738f2 --- /dev/null +++ b/src/style.css @@ -0,0 +1,39 @@ +*, *:before, *:after { + box-sizing: inherit; +} + +html { + font-family: 'Lato', sans-serif; + font-size: 20px; + + background-color: #D9E0D7; + box-sizing: border-box; +} + +body { + border: 0; + + max-width: 600px; + margin-left: auto; + margin-right: auto; + + padding: 1rem; +} + +@media screen and (max-width: 600px) { + body { + text-align: center; + } + + ul { + padding: 0; + } + + li { + list-style: none; + } +} + +a { + color: #570C3D; +} \ No newline at end of file -- cgit v1.3