mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
56 lines
1.1 KiB
HTML
56 lines
1.1 KiB
HTML
<div class="stats shadow">
|
|
|
|
<div class="stat">
|
|
<div class="stat-title">Total Page Views</div>
|
|
<div class="stat-value">89,400</div>
|
|
<div class="stat-desc">21% more than last month</div>
|
|
</div>
|
|
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Yaya12085 - Source: https://daisyui.com/components/stat/ - Tags: stats, card, dark */
|
|
.stats {
|
|
display: inline-grid;
|
|
background-color: #111111;
|
|
color: #fff;
|
|
border-radius: 1rem;
|
|
border: 1px solid gray;
|
|
}
|
|
|
|
.shadow {
|
|
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
.stat {
|
|
display: inline-grid;
|
|
width: 100%;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
column-gap: 1rem;
|
|
padding-left: 1.5rem;
|
|
padding-right: 1.5rem;
|
|
padding-top: 1rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.stat-title {
|
|
grid-column-start: 1;
|
|
white-space: nowrap;
|
|
color: rgb(197, 194, 194);
|
|
}
|
|
|
|
.stat-value {
|
|
grid-column-start: 1;
|
|
white-space: nowrap;
|
|
font-size: 2.25rem;
|
|
line-height: 2.5rem;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.stat-desc {
|
|
grid-column-start: 1;
|
|
white-space: nowrap;
|
|
font-size: 0.75rem;
|
|
line-height: 1rem;
|
|
color: rgb(197, 194, 194);
|
|
}
|
|
</style>
|