diff options
Diffstat (limited to 'src/style.css')
| -rw-r--r-- | src/style.css | 39 |
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 |
