Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Somewhat mobile-friendly main table

Cette révision appartient à :
bakape 2017-05-06 00:25:46 +03:00
Parent 2571869c24
révision ed53f0a31b

Voir le fichier

@ -100,3 +100,26 @@ div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:nth-of-type
div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:nth-of-type(4){width:19%;}
div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:last-of-type{width:6%;}
tr.torrent-info td.hash,tr.torrent-info td.date{word-wrap:break-word;}
/* Mobile-friendly main table */
@media only screen and (max-width: 700px) {
table, thead, tbody, tr {
display: block;
}
th {
display: none;
}
td {
display: inline-block;
}
td:nth-of-type(1), td:nth-of-type(2) {
display: block;
}
.table > tbody > tr > td {
border: none;
}
}