This commit is contained in:
Vladan Popovic 2024-09-18 02:47:31 +02:00
parent 3e76a70369
commit 7273e90066
5 changed files with 39 additions and 16 deletions

View file

@ -65,8 +65,26 @@ menu li:hover {
cursor: pointer;
}
input.search {
padding: 0.5em;
width: 30em;
}
#content {
display: flex;
align-items: center;
justify-content: center;
}
ul.torrents {
width: 100%;
}
ul.torrents li {
padding: 0.5em;
display: grid;
grid-template-columns: [title] 60% [seed] 8% [leech] 7% [size] 10% [category] 15% [end];
}
ul.torrents li:hover {
background-color: bisque;
}