This commit is contained in:
Jonas_Jones 2022-11-19 18:11:12 +01:00
parent 1ef09035b8
commit b283560e10
170 changed files with 7729 additions and 7622 deletions

35
navbar-scroll.html Normal file
View file

@ -0,0 +1,35 @@
<style>
#triangle-topleft {
position: absolute;
top: 0;
width: 1px;
height: 1px;
border-top: 200px solid #2e4e4e;
border-right: 100px solid transparent;
transition: 0.1s;
z-index: -1;
}
#triangle-topleft:hover {
border-top: 100px solid #003052;
border-right: 50px solid transparent;
}
#triangle-topleft2 {
width: 0;
height: 0;
border-top: 50px solid red;
border-right: 300px solid transparent;
transition: 0.1s;
}
body {
margin: 0%;
}
</style>
<body>
<div id="triangle-topleft2"></div>
<div id="triangle-topleft"></div>
</body>