This commit is contained in:
ulaulaman 2020-09-19 16:33:43 +02:00
parent 7328dd4e64
commit ba27503776
3 changed files with 101 additions and 0 deletions

View File

@ -0,0 +1,37 @@
.evidenza {
display: flex;
flex-wrap: nowrap;
border-style: solid;
border-color: #f1f1f1;
}
.evidenza > div.up {
width: 94%;
margin: 3%;
text-align: center;
}
.evidenza > div {
width: 23%;
margin: 1%;
}
.titoloevidenza {
background-color: #f1f1f1;
}
.up img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 94%;
padding: 5px;
}
.evidenza > div img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 94%;
padding: 5px;
}

View File

@ -0,0 +1,25 @@
.grid-wrap {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: center;
list-style: none;
}
.grid-item {
flex-basis: 160px;
height: 250px;
padding: 5px;
margin: 10px;
}
.grid-item img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 160px;
}
.grid-wrap ul {
margin-left: 0;
}

View File

@ -0,0 +1,39 @@
div.paleBlueRows {
border: 1px solid #FFFFFF;
width: 100%;
text-align: center;
border-collapse: collapse;
}
.divTable.paleBlueRows .divTableCell, .divTable.paleBlueRows .divTableHead {
border: 1px solid #D0E4F5;
padding: 3px 2px;
}
.divTable.paleBlueRows .divTableBody .divTableCell {
font-size: 15px;
}
.divTable.paleBlueRows .divTableHeading {
background: #1D71B8;
border-bottom: 2px solid #D0E4F5;
}
.divTable.paleBlueRows .divTableHeading .divTableHead {
font-size: 17px;
font-weight: bold;
color: #FFFFFF;
text-align: center;
border-left: 2px solid #D0E4F5;
}
.divTable.paleBlueRows .divTableHeading .divTableHead:first-child {
border-left: none;
}
.paleBlueRows .tableFootStyle {
font-size: 14px;
}
/* DivTable.com */
.divTable{ display: table; }
.divTableRow { display: table-row; }
.divTableHeading { display: table-header-group;}
.divTableCell, .divTableHead { display: table-cell;}
.divTableHeading { display: table-header-group;}
.divTableFoot { display: table-footer-group;}
.divTableBody { display: table-row-group;}