31 lines
518 B
CSS
31 lines
518 B
CSS
/* pec.css — stili specifici per la pagina PEC */
|
|
|
|
.pec-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.5rem;
|
|
flex-wrap: wrap;
|
|
margin-bottom: .5rem;
|
|
}
|
|
.pec-header h2 { margin: 0; }
|
|
|
|
.pec-filter {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
}
|
|
.pec-filter label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: .35rem;
|
|
font-size: .9rem;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
.pec-filter input[type="checkbox"] {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
cursor: pointer;
|
|
accent-color: #2563eb;
|
|
}
|