mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
46 lines
760 B
HTML
46 lines
760 B
HTML
<div class="button">
|
|
<a href="#" class="anchor">
|
|
<span>Download CV</span>
|
|
</a>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Codecite - Tags: button */
|
|
.anchor {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
display: inline-block;
|
|
font-family: sans-serif;
|
|
font-weight: 600;
|
|
border-radius: 50px;
|
|
border: 2px solid #ed553b;
|
|
padding: 14px 40px 13px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.anchor:hover {
|
|
color: #4e484a;
|
|
}
|
|
|
|
.button a::before {
|
|
position: absolute;
|
|
content: "";
|
|
z-index: 0;
|
|
background-color: #ed553b;
|
|
left: -5px;
|
|
right: -5px;
|
|
bottom: -5px;
|
|
height: 111%;
|
|
transition: all .3s ease;
|
|
}
|
|
|
|
.button a:hover::before {
|
|
height: 11%;
|
|
}
|
|
|
|
.button span {
|
|
position: relative;
|
|
z-index: 2;
|
|
transition: all .3s ease;
|
|
}
|
|
</style>
|