2022-04-24 03:36:25 +02:00
|
|
|
.widget_nav_menu {
|
2022-04-11 01:06:16 +02:00
|
|
|
.menu-resources-menu-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
2022-04-08 17:19:57 +02:00
|
|
|
ul.menu {
|
|
|
|
list-style: none;
|
2022-04-11 01:06:16 +02:00
|
|
|
text-align: left;
|
|
|
|
li {
|
2022-04-08 17:19:57 +02:00
|
|
|
position: relative;
|
2022-04-11 01:06:16 +02:00
|
|
|
}
|
|
|
|
a {
|
|
|
|
display:block;
|
|
|
|
color: $black;
|
|
|
|
justify-content: left !important;
|
|
|
|
}
|
2022-04-24 03:36:25 +02:00
|
|
|
.is-active > a {
|
|
|
|
background: unset;
|
|
|
|
color: scale-color($anchor-color, $saturation: -50%, $lightness: 50%)
|
|
|
|
}
|
2022-04-11 01:06:16 +02:00
|
|
|
width:auto;
|
|
|
|
li.menu-item-has-children {
|
|
|
|
> a {
|
|
|
|
&:after {
|
2022-04-24 03:36:25 +02:00
|
|
|
display:block;
|
|
|
|
width:0;
|
|
|
|
height:0;
|
|
|
|
border:inset 6px;
|
|
|
|
content:'';
|
|
|
|
border-bottom-width:0;
|
|
|
|
border-top-style:solid;
|
|
|
|
border-color: $anchor-color-alt transparent transparent transparent;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-left: 5px;
|
2022-04-08 18:26:32 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-08 17:19:57 +02:00
|
|
|
ul.sub-menu {
|
|
|
|
list-style: none;
|
2022-04-11 01:06:16 +02:00
|
|
|
background-color: scale-color($anchor-color, $lightness: 98%);
|
|
|
|
position: absolute;
|
|
|
|
left:0%;
|
|
|
|
top:0;
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
2022-04-24 03:36:25 +02:00
|
|
|
width: auto;
|
2022-04-11 01:06:16 +02:00
|
|
|
visibility:hidden;
|
|
|
|
opacity:0;
|
|
|
|
transition: transform 0.5s;
|
|
|
|
transform: translateY(-$global-padding);
|
2022-04-24 03:36:25 +02:00
|
|
|
li.menu-item-has-children {
|
|
|
|
> a {
|
|
|
|
&:after {
|
2022-04-27 13:06:33 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 2px;
|
2022-04-24 03:36:25 +02:00
|
|
|
border-bottom-width: 6px;
|
|
|
|
border-right-width: 0;
|
|
|
|
border-right-style:solid;
|
|
|
|
border-color: transparent transparent transparent $anchor-color-alt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-11 01:06:16 +02:00
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
> a {
|
|
|
|
color: scale-color($anchor-color, $lightness: 50%);
|
|
|
|
&:after {
|
|
|
|
color: scale-color($anchor-color, $lightness: 50%);
|
2022-04-08 17:19:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
> ul.sub-menu {
|
2022-04-11 01:06:16 +02:00
|
|
|
top:100%;
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(0px);
|
2022-04-24 03:36:25 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: scale-color($anchor-color, $lightness: 98%);
|
|
|
|
}
|
2022-04-11 01:06:16 +02:00
|
|
|
ul.sub-menu {
|
|
|
|
top: 0%;
|
|
|
|
left: 100%;
|
2022-04-08 18:26:32 +02:00
|
|
|
}
|
2022-04-08 17:19:57 +02:00
|
|
|
}
|
2022-04-08 03:02:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-24 03:36:25 +02:00
|
|
|
.widget_tag_cloud {
|
|
|
|
position: relative;
|
|
|
|
overflow: visible;
|
|
|
|
margin-left: $global-margin;
|
|
|
|
$tags-background-color: scale-color($anchor-color, $lightness: 95%);
|
|
|
|
a {
|
|
|
|
display: inline;
|
|
|
|
color: $black;
|
|
|
|
&:before, &:after {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h6 {
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
&:before {
|
|
|
|
content: '#tags';
|
|
|
|
color: $primary-color;
|
|
|
|
background-color: $tags-background-color;
|
|
|
|
padding:$global-padding/4 $global-padding/2;
|
|
|
|
}
|
|
|
|
&:hover{
|
|
|
|
.tagcloud {
|
|
|
|
top: 1.6rem;
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(0px);
|
|
|
|
background-color: scale-color($tags-background-color, $alpha: -100%);
|
|
|
|
@include breakpoint(small){
|
|
|
|
width: 80vw;
|
|
|
|
right: -1rem;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
|
|
|
width: 90vw;
|
|
|
|
right: -15vw;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
@include breakpoint(large){
|
|
|
|
width: 90vw;
|
|
|
|
right: -25vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.tagcloud {
|
|
|
|
position: absolute;
|
|
|
|
visibility:hidden;
|
|
|
|
opacity:0;
|
|
|
|
transition: transform 0.5s,background-color 0.5s;
|
|
|
|
transform: translateY(-$global-padding);
|
|
|
|
background-color: $tags-background-color;
|
|
|
|
padding: $global-padding;
|
|
|
|
a {
|
|
|
|
display: inline-block !important;
|
|
|
|
background-color: $tags-background-color;
|
|
|
|
padding:$global-padding/4 $global-padding/2;
|
|
|
|
font-size: $global-font-size * 0.7 !important;
|
|
|
|
&:before {
|
|
|
|
content: '#';
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: $anchor-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-11 01:06:16 +02:00
|
|
|
@include breakpoint(small){
|
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
2022-03-31 11:08:40 +02:00
|
|
|
}
|
|
|
|
@include breakpoint(large){
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|