This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="circle-container"> | |
<div id="circle" class="circle"> | |
<div class="pulsating-ring"></div> | |
<div class="pulsating-ring-two"></div> | |
<div class="pulsating-ring-three"></div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="window-control-container"> | |
<div id="minimize" class="minimize"> | |
<div class="bottom-bar"></div> | |
<div class="top-bar"></div> | |
<div class="left-bar"></div> | |
<div class="right-bar"></div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="canvas"> | |
<div id="mute" class="mute-btn"> | |
<div class="square"></div> | |
<div class="triangle-container"> | |
<div class="triangle"> | |
<div class="triangle-clone-border"></div> | |
</div> | |
</div> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="canvas"> | |
<div class="mute-btn"> | |
<div class="square"></div> | |
<div class="triangle-container"> | |
<div class="triangle"> | |
<div class="triangle-clone-border"></div> | |
</div> | |
</div> | |
<div class="sound-waves"> | |
<div class="wave-1"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="card-container"> | |
<class id="card" class="card no-animation"> | |
<span id="text" class="text no-animation">Hover Me</span> | |
</class> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.canvas { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
width: 400px; | |
height: 400px; | |
background-color: #3FAF82; | |
} | |
.burger-icon { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes donut-spin { | |
0% {transform: rotate(0deg);} | |
100% {transform: rotate(360deg);} | |
} | |
@keyframes donut-spin-reverse { | |
0% {transform: rotate(360deg);} | |
100% {transform: rotate(0deg);} | |
} | |
@keyframes fade { | |
0% {opacity: 1;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes donut-spin { | |
0% { | |
transform: rotate(0deg); | |
} | |
100% { | |
transform: rotate(360deg); | |
} | |
} | |
.donut { | |
display: inline-block; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes bouncing-loader { | |
from { | |
opacity: 1; | |
transform: translateY(0) | |
} | |
to { | |
opacity: 0.1; | |
transform: translateY(-16px) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="table-container"> | |
<div class="table"> | |
<div class="table-head"> | |
<div class="table-row"> | |
<div class="head-mobile">head 1</div> | |
<div class="head-mobile">head 2</div> | |
<div class="head-mobile">head 3</div> | |
<div class="head">head 4</div> | |
<div class="head">head 5</div> | |
<div class="head">head 6</div> |