Skip to content

Commit

Permalink
chore: removes ununsed code
Browse files Browse the repository at this point in the history
  • Loading branch information
refusado committed Aug 3, 2023
1 parent 39cb0f0 commit f011ea1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 67 deletions.
64 changes: 0 additions & 64 deletions css/menu/tutorial.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,68 +36,4 @@

#level--home__block-container {
margin-top: 1ex;
}

#scroll-icon {
background-image: -o-radial-gradient(var(--c-dark) 35%, var(--c-light) 40%);
background-image: radial-gradient(var(--c-dark) 35%, var(--c-light) 40%);
width: min(35px, 13vw, 6vh);
height: min(35px, 13vw, 6vh);
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 1px;
outline: 1px solid var(--c-dark);
margin-left: min(2ex, 20vw);
-webkit-box-shadow: 0 10px 80px -8px #000000EE, 0 2px 3px -2px #000000EE;
box-shadow: 0 10px 80px -8px #000000EE, 0 2px 3px -2px #000000EE;
}

#scroll-icon::after {
content: '';
display: block;
width: 30%;
height: 30%;
border-radius: 100px;
background-color: var(--c-blue);
-webkit-animation: scroll 1200ms infinite ease;
animation: scroll 1200ms infinite ease;
}

@-webkit-keyframes scroll {
0% {
-webkit-transform: translatey(85%);
transform: translatey(85%);
opacity: 1;
}
40% {
opacity: 1;
}
100% {
-webkit-transform: translatey(-85%);
transform: translatey(-85%);
opacity: 0;
}
}

@keyframes scroll {
0% {
-webkit-transform: translatey(85%);
transform: translatey(85%);
opacity: 1;
}
40% {
opacity: 1;
}
100% {
-webkit-transform: translatey(-85%);
transform: translatey(-85%);
opacity: 0;
}
}
2 changes: 0 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@
<h1 id="home__title" class="menu__title">Scrollzz</h1>
<div id="tutorial">
<p id="tutorial__description"></p>
<!-- <p id="tutorial__label"><span id="scroll-icon"></span></p> -->

<div class="block-container" id="level--home__block-container">
<span class="block level--home__block" id="b01">
<div class="tile"></div>
Expand Down
2 changes: 1 addition & 1 deletion version.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:root {
--version: '2.1.7';
--version: '2.2.1';
}

0 comments on commit f011ea1

Please sign in to comment.