2020-10-02 12:32:56 +00:00
|
|
|
@use "colors.sass" as c
|
|
|
|
@use "buttons.sass" as *
|
2020-12-31 12:45:11 +00:00
|
|
|
@use "_dimensions.sass" as dimensions
|
2020-10-02 12:32:56 +00:00
|
|
|
|
|
|
|
.main-nav
|
|
|
|
background-color: c.$bg-accent
|
|
|
|
display: flex
|
|
|
|
padding: 8px
|
|
|
|
box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1)
|
|
|
|
|
2020-12-31 12:45:11 +00:00
|
|
|
+dimensions.thin
|
2020-10-02 12:32:56 +00:00
|
|
|
display: block
|
|
|
|
|
|
|
|
.links
|
|
|
|
display: flex
|
|
|
|
|
2020-12-31 12:45:11 +00:00
|
|
|
+dimensions.thin
|
2020-10-02 12:32:56 +00:00
|
|
|
margin-bottom: 4px
|
|
|
|
padding: 1px
|
|
|
|
|
|
|
|
.link
|
|
|
|
@include button-base
|
|
|
|
text-decoration: none
|
|
|
|
margin: 1px 8px 1px 0px
|
|
|
|
font-size: 20px
|
|
|
|
display: flex
|
|
|
|
align-items: center
|
|
|
|
|
|
|
|
&.home
|
|
|
|
font-weight: bold
|
|
|
|
|
|
|
|
&, &:visited
|
|
|
|
color: #fff
|
|
|
|
|
|
|
|
&:focus, &:hover
|
|
|
|
background-color: c.$bg-accent-x
|
|
|
|
|
|
|
|
.search-form
|
|
|
|
display: flex
|
|
|
|
flex: 1
|
|
|
|
align-items: center
|
|
|
|
|
|
|
|
.search
|
|
|
|
@include button-bg
|
|
|
|
padding: 10px
|
|
|
|
flex: 1
|
|
|
|
margin: 1px
|
|
|
|
|
|
|
|
&:hover, &:focus
|
|
|
|
border: 1px solid c.$edge-grey
|
|
|
|
margin: 0px
|