94 lines
1.2 KiB
CSS
94 lines
1.2 KiB
CSS
body {
|
|
background-color: #11111b;
|
|
color: #cdd6f4;
|
|
font-family: sans-serif;
|
|
font-size: large;
|
|
text-align: center;
|
|
}
|
|
|
|
a, a:visited {
|
|
color: #cdd6f4;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: #cdd6f4;
|
|
color: #11111b;
|
|
}
|
|
|
|
div.grid {
|
|
line-height: 0;
|
|
}
|
|
|
|
div.artists ul {
|
|
display: inline-block;
|
|
font-style: italic;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
li.artist a {
|
|
font-style: normal;
|
|
}
|
|
|
|
div.albums {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
div.album {
|
|
display: flex;
|
|
justify-content: center
|
|
}
|
|
|
|
div.album-data {
|
|
padding-left: 30px;
|
|
text-align: left;
|
|
}
|
|
|
|
div.album-meta h3 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
div.album-tracks ul {
|
|
font-family: monospace;
|
|
list-style-type: none;
|
|
margin-top: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li.trackfile a {
|
|
color: #89b4fa;
|
|
}
|
|
li.trackfile a:hover {
|
|
background-color: #89b4fa;
|
|
color: #11111b;
|
|
}
|
|
|
|
a.artist {
|
|
font-style: italic;
|
|
color: #cdd6f4;
|
|
text-decoration: none;
|
|
font-weight: normal;
|
|
}
|
|
a.artist:hover {
|
|
font-style: italic;
|
|
color: #cdd6f4;
|
|
background-color: #11111b;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a.tarball {
|
|
font-family: monospace;
|
|
color: #89b4fa;
|
|
}
|
|
a.tarball:hover {
|
|
font-family: monospace;
|
|
background-color: #89b4fa;
|
|
color: #11111b;
|
|
}
|
|
|
|
footer hr {
|
|
width: 50%
|
|
}
|