39 lines
791 B
CSS
39 lines
791 B
CSS
section {
|
|
width: 30%;
|
|
/* height: 400px; */
|
|
height: auto;
|
|
padding: 8px;
|
|
margin: 16px;
|
|
background-color: color-mix(in srgb, var(--color-2) 40%, #00000000 60%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
border-radius: 20px;
|
|
margin: 15px;
|
|
transition-duration: 0.25s;
|
|
backdrop-filter: blur(2px);
|
|
box-shadow: 0 0 10px var(--color-2);
|
|
}
|
|
sections {
|
|
width: 90vw;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#colorPicker {
|
|
margin: 6px;
|
|
}
|
|
|
|
@-moz-document url-prefix() {
|
|
section {
|
|
backdrop-filter: blur(0);
|
|
}
|
|
}
|
|
|
|
body[fast] section {
|
|
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
|
|
backdrop-filter: blur(0);
|
|
} |