mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
65 lines
1.5 KiB
Plaintext
65 lines
1.5 KiB
Plaintext
.background_selector {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.background_selector_defaults {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
overflow-x: auto;
|
|
|
|
.background_selector_defaults__item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
|
|
width: 10vw;
|
|
height: 300px;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
|
|
margin-right: 20px;
|
|
|
|
background-color: var(--background-color-accent);
|
|
|
|
border-radius: 10px;
|
|
|
|
.background_selector_defaults__item_name {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
.background_selector_defaults__item_preview {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: var(--text-color);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
} |