diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..28c2567 --- /dev/null +++ b/style.css @@ -0,0 +1,33 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} + +@font-face { + font-family: "OpenSans"; + src: url(/OpenSans-VariableFont_wdth,wght.ttf); +} + +body { + font-family: OpenSans; +} + +header { + text-align: center; +} + +header section { + padding-block: 2em; + font-size: 24px; +} + +header nav a, header nav a:visited { + color: green; + text-decoration: none; +} + +main { + padding-block: 2em; + text-align: center; +} |