43 lines
No EOL
608 B
CSS
43 lines
No EOL
608 B
CSS
|
|
|
|
table.directory {
|
|
width: 100%;
|
|
}
|
|
|
|
table.directory caption {
|
|
text-align: left;
|
|
font-size: 1.5rem;
|
|
|
|
padding-left: 3vmin;
|
|
}
|
|
|
|
table.directory td {
|
|
padding: 0.2rem;
|
|
text-align: left;
|
|
}
|
|
table.directory th {
|
|
padding: 0.2rem;
|
|
text-align: left;
|
|
|
|
padding-bottom: 0.05rem;
|
|
}
|
|
|
|
table.directory tr.entry:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
table.directory tr.entry .entry_title {
|
|
width: 100%;
|
|
}
|
|
|
|
table.directory .entry_update_time {
|
|
display: block;
|
|
width: 12rem;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
table.directory .entry_update_time {
|
|
visibility: hidden;
|
|
display: none;
|
|
}
|
|
} |