adding scroll behaviour to presentation mode

This commit is contained in:
2020-04-19 14:57:58 +02:00
committed by smuddy
parent 8bc95552f2
commit cdd0bfec0c
10 changed files with 90 additions and 20 deletions

View File

@@ -25,6 +25,15 @@
}
}
.line {
opacity: 1;
transition: 1000ms all ease-in-out;
&.disabled {
opacity: 0.5;
}
}
.menu {
position: absolute;
right: 0;
@@ -48,8 +57,6 @@
&:hover {
background: #ddd;
}
}
.section {
@@ -70,3 +77,12 @@
.chord {
color: #009;
}
.offset {
position: fixed;
top: 0;
transition: 1000ms all ease-in-out;
}