mirror of
https://github.com/remvze/moodist.git
synced 2026-03-06 20:13:13 +08:00
30 lines
578 B
CSS
30 lines
578 B
CSS
.timer {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
padding: 48px 0;
|
|
font-size: var(--font-xlg);
|
|
font-weight: 500;
|
|
background-color: var(--color-neutral-50);
|
|
border: 1px solid var(--color-neutral-200);
|
|
border-radius: 12px;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
bottom: -1px;
|
|
left: 50%;
|
|
width: 75%;
|
|
height: 1px;
|
|
content: '';
|
|
background: linear-gradient(
|
|
90deg,
|
|
transparent,
|
|
var(--color-neutral-400),
|
|
transparent
|
|
);
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|