aboutsummaryrefslogtreecommitdiffstats
path: root/src/style.css
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2017-12-22 15:00:09 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2017-12-22 15:00:54 +0200
commit0fe65c416358c8e5ddf209c416e0fe46fb1bf7e9 (patch)
tree613fbd1fba362a7f0ded9aeda7cdac258d7cbd01 /src/style.css
parent8657d222aea2627188a991633b8aa63a3c0293bd (diff)
Initial commit
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css39
1 files changed, 39 insertions, 0 deletions
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