diff options
Diffstat (limited to 'style/header.less')
-rw-r--r-- | style/header.less | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/style/header.less b/style/header.less new file mode 100644 index 0000000..9e35e35 --- /dev/null +++ b/style/header.less @@ -0,0 +1,32 @@ +header { + nav { + ul { + float: right; + display: inline-block; + } + + ul li { + display: inline-block; + + a { + padding: 0.5em 1em; + } + + a:hover { + color: white; + background-color: crimson; + text-decoration: none; + } + } + + } + + h1 { + float: left; + font-weight: normal; + text-transform: uppercase; + color: gray; + margin: 0; + } +} + |