mirror of
https://github.com/hazemKrimi/touch-programming.git
synced 2026-05-01 18:20:26 +00:00
30 lines
413 B
CSS
30 lines
413 B
CSS
.stats-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
gap: 2rem;
|
|
padding: 1.5rem;
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
background: var(--black);
|
|
}
|
|
|
|
.share {
|
|
all: unset;
|
|
cursor: pointer;
|
|
|
|
background: var(--crimson);
|
|
color: var(--white);
|
|
|
|
border-radius: 0.75rem;
|
|
box-shadow: none;
|
|
|
|
padding: 1rem 2rem;
|
|
font-size: 1.25rem;
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
}
|