mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
24 lines
444 B
HTML
24 lines
444 B
HTML
<div class="card">
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Yaseen549 - Tags: card */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
background: transparent;
|
|
border: 2px solid #07ff07;
|
|
box-shadow: 2px 2px 15px #000000 inset;
|
|
text-align: center;
|
|
color: #e8e8e8;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: 'Pacifico';
|
|
}
|
|
|
|
.card:hover {
|
|
color: #07ff07;
|
|
box-shadow: 2px 2px 15px #07ff07 inset;
|
|
}
|
|
|
|
</style>
|