feat: Change mouse over identifier

This commit is contained in:
sthag 2025-10-25 09:17:58 +02:00
parent b739ddefda
commit 867e96ea0a
2 changed files with 16 additions and 16 deletions

View file

@ -7,7 +7,6 @@ html {
} }
// Sections // Sections
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// body // body
@ -21,7 +20,6 @@ html {
// footer // footer
// Body // Body
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
body { body {
@ -41,7 +39,7 @@ body {
} }
&:hover { &:hover {
.mouse_over { #mouse-overlay {
background-color: transparent !important; background-color: transparent !important;
transition: background-color $duration_basic $timing_basic 0s !important; transition: background-color $duration_basic $timing_basic 0s !important;
} }
@ -50,11 +48,13 @@ body {
// Article // Article
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
article {} article {
}
// Section // Section
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
section {} section {
}
.sec_main_center { .sec_main_center {
width: $width_basic; width: $width_basic;
@ -99,11 +99,11 @@ nav {
aside { aside {
width: $width_aside_basic; width: $width_aside_basic;
&.right+.bside { &.right + .bside {
margin-right: calc(#{$width_aside_basic} + #{$space_basic}); margin-right: calc(#{$width_aside_basic} + #{$space_basic});
} }
&.left+.bside { &.left + .bside {
margin-left: calc(#{$width_aside_basic} + #{$space_basic}); margin-left: calc(#{$width_aside_basic} + #{$space_basic});
} }
@ -152,7 +152,7 @@ aside {
ul.vertical li { ul.vertical li {
margin-bottom: $space_half; margin-bottom: $space_half;
.a_button>i:last-child { .a_button > i:last-child {
margin-left: auto; margin-left: auto;
} }
} }
@ -180,8 +180,8 @@ h2 {
margin: $space_medium 0 $space_small; margin: $space_medium 0 $space_small;
} }
h1+h1, h1 + h1,
h2+h2 { h2 + h2 {
margin-top: 0; margin-top: 0;
} }
@ -212,13 +212,13 @@ h6 {
hgroup { hgroup {
&>h1, & > h1,
&>h2 { & > h2 {
margin-bottom: 0; margin-bottom: 0;
} }
&>p { & > p {
margin-bottom: $space_small; margin-bottom: $space_small;
} }
} }
@ -229,11 +229,11 @@ header {
&.io { &.io {
z-index: map.get($z-indexes, "content-top"); z-index: map.get($z-indexes, "content-top");
&>*:last-child *:last-child { & > *:last-child *:last-child {
margin-right: 0; margin-right: 0;
} }
&>*:first-child *:first-child { & > *:first-child *:first-child {
margin-left: 0; margin-left: 0;
} }

View file

@ -269,7 +269,7 @@
} }
} }
.mouse_over { #mouse-overlay {
@extend %viewport_fixed; @extend %viewport_fixed;
z-index: $z_heaven; z-index: $z_heaven;
transition: background-color $duration_long $timing_basic $duration_long; transition: background-color $duration_long $timing_basic $duration_long;