mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
65 lines
1.4 KiB
HTML
65 lines
1.4 KiB
HTML
<div class="card">
|
|
<div class="card_load"></div>
|
|
<div class="card_load_extreme_title"></div>
|
|
<div class="card_load_extreme_descripion"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by mrhyddenn - Tags: card, placeholder */
|
|
.card {
|
|
width: 190px;
|
|
height: 90px;
|
|
background: #ffff;
|
|
box-shadow: 0 1px 25px rgba(0,0,0,0.2);
|
|
position: absolute;
|
|
transform: translate(-50%, -50%);
|
|
top: 50%;
|
|
left: 50%;
|
|
padding: 12px 10px;
|
|
}
|
|
|
|
.card_load {
|
|
width: 70px;
|
|
height: 70px;
|
|
position: relative;
|
|
float: left;
|
|
background: linear-gradient(120deg, #e5e5e5 30%, #f0f0f0 38%, #f0f0f0
|
|
40%, #e5e5e5 48%);
|
|
border-radius: 50%;
|
|
background-size: 200% 100%;
|
|
background-position: 100% 0;
|
|
animation: load89234 2s infinite;
|
|
}
|
|
|
|
.card_load_extreme_title {
|
|
width: 90px;
|
|
height: 10px;
|
|
position: relative;
|
|
float: right;
|
|
border-radius: 5px;
|
|
background: linear-gradient(120deg, #e5e5e5 30%, #f0f0f0 38%, #f0f0f0
|
|
40%, #e5e5e5 48%);
|
|
background-size: 200% 100%;
|
|
background-position: 100% 0;
|
|
animation: load89234 2s infinite;
|
|
}
|
|
|
|
.card_load_extreme_descripion {
|
|
width: 90px;
|
|
height: 47px;
|
|
position: relative;
|
|
float: right;
|
|
border-radius: 5px;
|
|
background: linear-gradient(120deg, #e5e5e5 30%, #f0f0f0 38%, #f0f0f0
|
|
40%, #e5e5e5 48%);
|
|
margin-top: 10px;
|
|
background-size: 200% 100%;
|
|
background-position: 100% 0;
|
|
animation: load89234 2s infinite;
|
|
}
|
|
|
|
@keyframes load89234 {
|
|
100% {
|
|
background-position: -100% 0;
|
|
}
|
|
}
|
|
</style>
|