31 lines
413 B
SCSS
31 lines
413 B
SCSS
* {
|
|
all: unset;
|
|
}
|
|
|
|
window {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.works {
|
|
background-color: rgba(30, 30, 30, 0.9);
|
|
border-radius: 10px;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
button {
|
|
font-size: 18px;
|
|
padding: 6px 10px;
|
|
border-radius: 6px;
|
|
transition: all 0.2s ease;
|
|
min-width: 30px;
|
|
color: #666;
|
|
|
|
&.0 {
|
|
color: #444;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
}
|
|
}
|