website/public/download.css

38 lines
572 B
CSS
Raw Normal View History

2024-01-18 17:01:30 +00:00
.list {
display: flex;
flex-direction: column;
margin: 15px 0 15px 0;
gap: 10px;
}
.entry {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
background: var(--dark-second);
2024-08-13 21:32:48 +00:00
border: solid 1px var(--bright-second);
2024-01-18 17:01:30 +00:00
padding: 10px;
}
.downloads {
display: flex;
flex-direction: row;
gap: 5px;
}
.entry h1 {
color: var(--bright-main);
font-size: 20px;
}
.entry a, .entry p {
color: var(--bright-main);
font-size: 20px;
text-decoration: none;
}
.entry a:hover {
color: var(--bright-second);
}