mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
83 lines
No EOL
1.5 KiB
HTML
83 lines
No EOL
1.5 KiB
HTML
<div class="card">
|
|
<button class="red-btn">OPS TEAM</button>
|
|
|
|
<button class="blue-btn">START-UP</button>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by abhusha08 - Tags: flashy, gradient, button, card, hover, hover effect, buttons */
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: lightgrey;
|
|
}
|
|
|
|
.red-btn {
|
|
width: 300px;
|
|
height: 150px;
|
|
margin: 15px;
|
|
background: rgb(255, 0, 0);
|
|
background: rgb(131, 58, 180);
|
|
background: linear-gradient(
|
|
90deg,
|
|
rgba(131, 58, 180, 1) 0%,
|
|
rgba(253, 29, 29, 1) 50%,
|
|
rgba(252, 176, 69, 1) 100%
|
|
);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 0.625em;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
position: relative;
|
|
z-index: 1;
|
|
overflow: hidden;
|
|
}
|
|
.blue-btn {
|
|
width: 300px;
|
|
height: 150px;
|
|
margin: 15px;
|
|
background: rgb(0, 8, 144);
|
|
background: linear-gradient(
|
|
90deg,
|
|
rgba(0, 8, 144, 1) 0%,
|
|
rgba(16, 0, 255, 1) 22%,
|
|
rgba(86, 255, 247, 1) 100%
|
|
);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 0.625em;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
position: relative;
|
|
z-index: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
button:hover {
|
|
color: rgb(0, 0, 0);
|
|
}
|
|
|
|
button:after {
|
|
content: "";
|
|
background: white;
|
|
position: absolute;
|
|
z-index: -1;
|
|
left: -20%;
|
|
right: -20%;
|
|
top: 0;
|
|
bottom: 0;
|
|
transform: skewX(-45deg) scale(0, 1);
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
button:hover:after {
|
|
transform: skewX(-45deg) scale(1, 1);
|
|
-webkit-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
</style>
|
|
|