You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
0x40-web/css/hues-r.css

113 lines
1.9 KiB

/* TODO: Fix scrollbar */
.RetroUI {
font-family: 'PetMe64Web';
}
.hues-r-container {
position: absolute;
bottom: 0px;
white-space: nowrap;
font-size: 5pt;
}
.hues-r-container a:link, .hues-r-container a:visited {
display: block;
color: inherit;
text-decoration: none;
overflow: hidden;
}
.hues-r-controls {
display:-webkit-flex;
display:flex;
-webkit-align-items:center;
align-items:center;
position: absolute;
right: 0px;
bottom: 10px;
font-size: 30px;
}
.hues-r-button {
float: left;
cursor: pointer;
text-align: center;
opacity: 0.5;
}
.hues-r-button:hover {
opacity: 1;
}
.hues-r-songs {
font-size: 13px;
margin: 0px -8px;
}
.hues-r-manualmode, .hues-r-automode {
float: none;
clear: both;
}
.hues-r-manualmode {
font-size: 15px;
}
.hues-r-automode {
font-size: 10px;
}
.hues-r-subcontrols {
position: absolute;
right: 0px;
bottom: 40px;
font-size: 25px;
text-align: center;
}
.hues-r-subcontrols > div{
margin: 3px;
cursor: pointer;
opacity: 0.5;
}
.hues-r-subcontrols > div:hover {
opacity: 1;
}
.hues-r-hiderestore {
position: absolute;
bottom: 5px;
right: 5px;
display: none;
font-size: 25px;
cursor: pointer;
opacity: 0.5;
}
.hues-r-hiderestore.hidden {
display: block;
}
.hues-r-hiderestore:hover {
opacity: 1;
}
.hues-r-container, .hues-r-controls, .hues-r-subcontrols {
transform: translateY(0px);
-webkit-transform: translateY(0px);
transition: transform 1s ease-out;
-webkit-transition: -webkit-transform 1s ease-out;
}
.hues-r-container.hidden, .hues-r-controls.hidden, .hues-r-subcontrols.hidden {
transform: translateY(200px);
-webkit-transform: translateY(200px);
}
.hues-r-listcontainer {
position: absolute;
right: 35px;
bottom: 45px;
}