mirror of
https://github.com/remvze/moodist.git
synced 2026-01-10 22:20:22 -05:00
27 lines
521 B
CSS
27 lines
521 B
CSS
.playButton {
|
|
position: sticky;
|
|
z-index: 10;
|
|
top: 30px;
|
|
display: flex;
|
|
width: 150px;
|
|
height: 45px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
border-radius: 100px;
|
|
border-top: 2px solid #818cf8;
|
|
border-bottom: 3px solid #4f46e5;
|
|
margin: 0 auto;
|
|
background-color: #6366f1;
|
|
color: var(--color-foreground);
|
|
cursor: pointer;
|
|
font-family: var(--font-heading);
|
|
font-size: var(--font-base);
|
|
line-height: 0;
|
|
outline: none;
|
|
|
|
& span {
|
|
font-size: var(--font-lg);
|
|
}
|
|
}
|