modified ranking
This commit is contained in:
@@ -13,11 +13,10 @@
|
||||
color: #e5e5e5;
|
||||
}
|
||||
|
||||
.history-table td{
|
||||
color: black;
|
||||
.history-table td {
|
||||
color: black;
|
||||
}
|
||||
|
||||
|
||||
.history-table thead {
|
||||
background: linear-gradient(90deg, #015cb8, #003e79);
|
||||
border-radius: 4px;
|
||||
@@ -40,7 +39,7 @@
|
||||
|
||||
.history-table tbody tr {
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
transition: all 0.30s ease;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 2px 8px #00000045;
|
||||
border-radius: 4px;
|
||||
}
|
||||
@@ -77,12 +76,12 @@
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.total{
|
||||
.total {
|
||||
background-color: #fff;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
.rowTotal{
|
||||
.rowTotal {
|
||||
box-shadow: 0 2px 8px #00000045;
|
||||
}
|
||||
|
||||
@@ -227,7 +226,7 @@
|
||||
padding: 12px 14px;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.08);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.headerCard .label {
|
||||
@@ -245,14 +244,13 @@
|
||||
color: #222;
|
||||
}
|
||||
|
||||
|
||||
/* Sección de texto largo */
|
||||
.sectionCard {
|
||||
background: #f8f8f8;
|
||||
padding: 14px 16px;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 15px;
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.07);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
|
||||
.sectionLabel {
|
||||
@@ -272,3 +270,46 @@
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.year-selector {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.year-selector div {
|
||||
width: min(95%, 1000px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: end;
|
||||
}
|
||||
|
||||
.year-selector label {
|
||||
text-align: end;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.year-selector select {
|
||||
width: 55px;
|
||||
padding: 6px 10px;
|
||||
font-size: 14px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #ccc;
|
||||
background-color: #fff;
|
||||
cursor: pointer;
|
||||
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.year-selector select:hover {
|
||||
border-color: #999;
|
||||
}
|
||||
|
||||
.year-selector select:focus {
|
||||
outline: none;
|
||||
border-color: #4a90e2;
|
||||
box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user