Compare commits

...

3 Commits

Author SHA1 Message Date
Gianluigi a6e51ebefb Update readme 2021-12-04 18:47:38 +01:00
Gianluigi 9d432c0372 A capo 2021-12-04 18:44:37 +01:00
Gianluigi 50177f33ba Update Blog tiddler. Add Articoli per LSB tiddler. 2021-12-04 18:34:44 +01:00
3 changed files with 90 additions and 78 deletions

View File

@ -1,5 +1,4 @@
[Pagina personale](https://ulaulaman.github.io/) realizzata con [TiddlyWiki](https://tiddlywiki.com/) con il [whitespace theme](http://j.d.whitespace.tiddlyspot.com/).
Aggiunta una tabella come *plugin*: [*javascript*](js/TagTable.js) e [*css*](css/blue-table.css)
* 2021.10.23: aggiornato il *tiddlywiki* alla versione 5.2.0 usando il [*TiddlyWiki Upgrade Wizard*](https://tiddlywiki.com/upgrade.html)
[Pagina personale](https://ulaulaman.github.io/) realizzata con [TiddlyWiki](https://tiddlywiki.com/) con il [whitespace theme](http://j.d.whitespace.tiddlyspot.com/).
* 2020.07.16: Aggiunta una tabella come *plugin*: [*javascript*](js/TagTable.js) e [*css*](css/blue-table.css)
* 2021.10.23: Aggiornato il *tiddlywiki* alla versione 5.2.0 usando il [*TiddlyWiki Upgrade Wizard*](https://tiddlywiki.com/upgrade.html)

View File

@ -1,70 +1,80 @@
div.blueTable {
border: 1px solid #1C6EA4;
background-color: #EEEEEE;
width: 100%;
text-align: left;
border-collapse: collapse;
}
.divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
.divTable.blueTable .divTableBody .divTableCell {
font-size: 13px;
}
.divTable.blueTable .divTableRow:nth-child(even) {
background: #D0E4F5;
}
.divTable.blueTable .divTableHeading {
background: #1C6EA4;
background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
border-bottom: 2px solid #444444;
}
.divTable.blueTable .divTableHeading .divTableHead {
font-size: 15px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
.divTable.blueTable .divTableHeading .divTableHead:first-child {
border-left: none;
}
.blueTable .tableFootStyle {
font-size: 14px;
}
.blueTable .tableFootStyle .links {
text-align: right;
}
.blueTable .tableFootStyle .links a{
display: inline-block;
background: #1C6EA4;
color: #FFFFFF;
padding: 2px 8px;
border-radius: 5px;
}
.blueTable.outerTableFooter {
border-top: none;
}
.blueTable.outerTableFooter .tableFootStyle {
padding: 3px 5px;
}
div.blueTable a:link {
color: white;
}
div.blueTable a:visited {
color: white;
}
/* 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;}
div.blueTable {
border: 1px solid #1C6EA4;
background-color: #EEEEEE;
width: 100%;
text-align: left;
border-collapse: collapse;
}
.divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
.divTable.blueTable .divTableBody .divTableCell {
font-size: 13px;
}
.divTable.blueTable .divTableRow:nth-child(even) {
background: #D0E4F5;
}
.divTable.blueTable .divTableHeading {
background: #1C6EA4;
background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
border-bottom: 2px solid #444444;
}
.divTable.blueTable .divTableHeading .divTableHead {
font-size: 15px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
.divTable.blueTable .divTableHeading .divTableHead:first-child {
border-left: none;
}
.blueTable .tableFootStyle {
font-size: 14px;
}
.blueTable .tableFootStyle .links {
text-align: right;
}
.blueTable .tableFootStyle .links a{
display: inline-block;
background: #1C6EA4;
color: #FFFFFF;
padding: 2px 8px;
border-radius: 5px;
}
.blueTable.outerTableFooter {
border-top: none;
}
.blueTable.outerTableFooter .tableFootStyle {
padding: 3px 5px;
}
div.blueTable a:link {
color: white;
}
div.blueTable a:visited {
color: white;
}
/* 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;}

File diff suppressed because one or more lines are too long