35 lines
652 B
CSS
35 lines
652 B
CSS
/* src/components/BancasWidget.css */
|
|
.bancas-widget-container {
|
|
background-color: #2a2a2e;
|
|
padding: 15px 20px;
|
|
border-radius: 8px;
|
|
max-width: 800px;
|
|
margin: 20px auto;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.bancas-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.bancas-header h4 {
|
|
margin: 0;
|
|
color: white;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.bancas-header select {
|
|
background-color: #3a3a3a;
|
|
color: white;
|
|
border: 1px solid #555;
|
|
border-radius: 4px;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.waffle-chart-container {
|
|
height: 300px;
|
|
font-family: system-ui, sans-serif;
|
|
} |