13 lines
282 B
CSS
13 lines
282 B
CSS
.itemDark {
|
|
background: #23232a;
|
|
border: 1px solid #312e81;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.18);
|
|
color: #e5e7eb;
|
|
transition: box-shadow 0.2s, border 0.2s, background 0.2s;
|
|
}
|
|
.squircle {
|
|
border-radius: 12px;
|
|
-corner-smoothing: antialiased;
|
|
}
|