61 lines
1.1 KiB
CSS
61 lines
1.1 KiB
CSS
* {
|
|
font-family: "Comic Sans MS", cursive ;
|
|
}
|
|
|
|
body {
|
|
background: url('/images/roscoe_tile_rainbow.jpg');
|
|
}
|
|
|
|
button:hover,
|
|
footer img:hover {
|
|
animation: rotater 2s linear infinite;
|
|
}
|
|
|
|
div.page-container,
|
|
div.wah,
|
|
table.music-top10,
|
|
form button,
|
|
form input,
|
|
form textarea,
|
|
div.rosco-leko-gallery > div{
|
|
background-color: #FAF8F6;
|
|
}
|
|
|
|
table.music-top10,
|
|
table.music-top10 tr td {
|
|
border: rgb(250, 122, 110);
|
|
}
|
|
table.music-top10 tr:first-child th {
|
|
border-right: rgb(250, 122, 110);
|
|
border-bottom: rgb(250, 122, 110);
|
|
}
|
|
|
|
table.music-top10 tr:first-child th,
|
|
table.music-top10 tr td:first-child {
|
|
background-color: rgba(250, 110, 210, 0.5);
|
|
}
|
|
|
|
hr,
|
|
div.page-container,
|
|
div.wah,
|
|
form button,
|
|
form input,
|
|
form textarea,
|
|
div.gb-entry,
|
|
div.current-track img,
|
|
div.rosco-leko-gallery > div {
|
|
border: 5px solid transparent;
|
|
border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
|
|
border-image-slice: 1;
|
|
}
|
|
|
|
hr {
|
|
border-bottom: none;
|
|
border-right: none;
|
|
border-left: none;
|
|
}
|
|
|
|
@keyframes rotater {
|
|
0% { transform: rotate(0deg) }
|
|
100% { transform: rotate(360deg) }
|
|
}
|