archetypes
assets
js
scss
templates
_homepage.scss
_navigation.scss
_otherspage.scss
_slider.scss
_buttons.scss
_common.scss
_mixins.scss
_typography.scss
_variables.scss
style.scss
script.js
content
data
i18n
layouts
resources
static
.gitlab-ci.yml
.hugo_build.lock
config.toml
27 lines
392 B
SCSS
27 lines
392 B
SCSS
|
.filter-controls{
|
||
|
li{
|
||
|
cursor: pointer;
|
||
|
transition: .1s ease;
|
||
|
&.active{
|
||
|
font-weight: 600;
|
||
|
color: $primary-color;
|
||
|
}
|
||
|
&:hover{
|
||
|
color: $primary-color;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.tag-list{
|
||
|
a{
|
||
|
display: block;
|
||
|
padding: 5px 10px;
|
||
|
background: $light;
|
||
|
color: $text-color;
|
||
|
&:hover{
|
||
|
background-color: $primary-color;
|
||
|
color: $white;
|
||
|
}
|
||
|
}
|
||
|
}
|