Modifiche minime

This commit is contained in:
ulaulaman 2020-12-29 16:28:12 +01:00
parent 6fd53df087
commit 1815a53f38
1 changed files with 17 additions and 14 deletions

View File

@ -5,16 +5,20 @@ div.blueTable {
text-align: left; text-align: left;
border-collapse: collapse; border-collapse: collapse;
} }
.divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead { .divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead {
border: 1px solid #AAAAAA; border: 1px solid #AAAAAA;
padding: 3px 2px; padding: 3px 2px;
} }
.divTable.blueTable .divTableBody .divTableCell { .divTable.blueTable .divTableBody .divTableCell {
font-size: 13px; font-size: 13px;
} }
.divTable.blueTable .divTableRow:nth-child(even) { .divTable.blueTable .divTableRow:nth-child(even) {
background: #D0E4F5; background: #D0E4F5;
} }
.divTable.blueTable .divTableHeading { .divTable.blueTable .divTableHeading {
background: #1C6EA4; background: #1C6EA4;
background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%); background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
@ -22,6 +26,7 @@ div.blueTable {
background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%); background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
border-bottom: 2px solid #444444; border-bottom: 2px solid #444444;
} }
.divTable.blueTable .divTableHeading .divTableHead { .divTable.blueTable .divTableHeading .divTableHead {
font-size: 15px; font-size: 15px;
font-weight: bold; font-weight: bold;
@ -29,6 +34,7 @@ div.blueTable {
text-align: center; text-align: center;
border-left: 2px solid #D0E4F5; border-left: 2px solid #D0E4F5;
} }
.divTable.blueTable .divTableHeading .divTableHead:first-child { .divTable.blueTable .divTableHeading .divTableHead:first-child {
border-left: none; border-left: none;
} }
@ -43,12 +49,15 @@ div.blueTable {
background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%); background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
border-top: 2px solid #444444; border-top: 2px solid #444444;
} }
.blueTable .tableFootStyle { .blueTable .tableFootStyle {
font-size: 14px; font-size: 14px;
} }
.blueTable .tableFootStyle .links { .blueTable .tableFootStyle .links {
text-align: right; text-align: right;
} }
.blueTable .tableFootStyle .links a{ .blueTable .tableFootStyle .links a{
display: inline-block; display: inline-block;
background: #1C6EA4; background: #1C6EA4;
@ -56,26 +65,20 @@ div.blueTable {
padding: 2px 8px; padding: 2px 8px;
border-radius: 5px; border-radius: 5px;
} }
.blueTable.outerTableFooter { .blueTable.outerTableFooter {
border-top: none; border-top: none;
} }
.blueTable.outerTableFooter .tableFootStyle { .blueTable.outerTableFooter .tableFootStyle {
padding: 3px 5px; padding: 3px 5px;
} }
/* DivTable.com */ /* DivTable.com */
.divTable{ display: table; } .divTable{ display: table; }
.divTableRow { display: table-row; } .divTableRow { display: table-row; }
.divTableHeading { display: table-header-group;} .divTableHeading { display: table-header-group; }
.divTableCell, .divTableHead { display: table-cell;} .divTableCell, .divTableHead { display: table-cell; }
.divTableHeading { display: table-header-group;} .divTableHeading { display: table-header-group; }
.divTableFoot { display: table-footer-group;} .divTableFoot { display: table-footer-group; }
.divTableBody { display: table-row-group;} .divTableBody { display: table-row-group; }
/* citazioni */
#cit::before { content: open-quote; }
#cit::after { content: close-quote; }
#cit {
quotes: "«" "»" "" "";
font-style: italic;
}