diff options
Diffstat (limited to 'asset-sources/theme.scss')
-rw-r--r-- | asset-sources/theme.scss | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 8e0f001..610e688 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -1,14 +1,39 @@ +html { + min-height: 100%; +} + body { font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; color: #101010; background: #efefef; + min-height: 100vh; + display: flex; + flex-direction: column; } strong { font-weight: 700; } +#mainContent { + flex: 1; +} + +#siteFooter { + padding-bottom: 20px; +} + +#languageChooser { + display: flex; + + .language-choice { + display: block; + margin-right: 20px; + text-decoration: none; + } +} + .brand-link { text-decoration: none; } |