fpPS4-Temmie-s-Launcher/App/css/style.css
2022-12-12 15:03:37 -03:00

188 lines
No EOL
3.2 KiB
CSS

/*
Styles.css
*/
html, body {
color: #fff;
overflow: hidden;
user-select: none;
font-family: monospace;
background-color: #000;
text-shadow: 2px 2px 4px #000;
}
input[type='button'], input[type='checkbox'] {
outline: none;
cursor: pointer;
}
input[disabled="disabled"], input[disabled] {
cursor: no-drop;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
border-radius: 4px;
}
::-webkit-scrollbar-track {
border-radius: 4px;
margin: 6px 0px 6px 0px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background: #e7e7e7;
}
::-webkit-scrollbar-thumb:hover {
border-radius: 4px;
background: #f0f0f0;
}
::-webkit-scrollbar-thumb:active {
background: #fff;
border-radius: 4px;
}
/*
Divs
*/
.DIV_LIST {
top: 38px;
left: 0px;
position: absolute;
width: calc(100% - 280px);
height: calc(100% - 286px);
background-image: linear-gradient(146deg, #090f1b, #162a50);
}
.DIV_LOG {
left: 0px;
bottom: 0px;
width: 100%;
height: 248px;
position: absolute;
background-size: auto 50%;
background-position: center;
background-repeat: no-repeat;
background-image: url('../img/logo.png');
}
.DIV_ACTIONS {
top: 0px;
left: 0px;
width: 100%;
height: 22px;
padding: 8px;
position: absolute;
background-image: linear-gradient(45deg, #28467f, #1c325f);
}
.DIV_OPTIONS {
top: 38px;
right: 0px;
padding: 6px;
width: 268px;
position: absolute;
height: calc(100% - 298px);
background-image: linear-gradient(0deg, #162a50, #2a4a86);
}
.DIV_TITLE {
font-size: 28px;
margin-top: 10px;
font-weight: bold;
text-align: center;
margin-bottom: 10px;
}
.DIV_LIST_INTERNAL {
top: 0px;
left: 0px;
width: 100%;
height: 100%;
overflow: auto;
transition: 0.4s;
position: absolute;
background-size: cover;
background-color: #0000;
background-position: center;
background-repeat: no-repeat;
}
.GAME_ENTRY {
margin: 6px;
display: flex;
cursor: pointer;
overflow: hidden;
max-height: 92px;
flex-wrap: nowrap;
border-radius: 6px;
align-items: center;
align-content: center;
width: calc(100% - 12px);
backdrop-filter: blur(4px) invert(0.1);
background-image: linear-gradient(90deg, #3a4b6b82, #0000);
}
.GAME_ENTRY:hover {
box-shadow: 0px 0px 10px #0006;
background-image: linear-gradient(90deg, #3a4b6b82, #3a4b6b82);
}
.GAME_ENTRY:active {
box-shadow: 0px 0px 10px #0006 inset;
backdrop-filter: invert(0.68) blur(6px);
}
.GAME_DETAILS {
cursor: pointer;
width: calc(100% - 88px);
}
.DIV_RUN_BTN {
bottom: 4px;
position: absolute;
width: calc(100% - 12px);
}
/*
Images
*/
.GAME_ICON {
width: 66px;
margin: 6px;
cursor: pointer;
border-radius: 6px;
}
/*
Input
*/
.APP_LOG {
color: #0f0;
height: 100%;
resize: none;
border: none;
cursor: text;
outline: none;
width: calc(100% - 4px);
background-repeat: no-repeat;
text-shadow: 2px 2px 2px #000;
background-image: linear-gradient(180deg, #000000db, #090f1b);
}
.BTN_RUN {
left: 8px;
width: 100%;
bottom: 18px;
height: 50px;
font-size: 18px;
margin-top: 2px;
}
/*
Labels
*/
.LABEL_checkbox {
cursor: pointer;
font-size: 16px;
font-style: italic;
}
.LABEL_emuColor {
color: #fffb8e;
}
.LABEL_gameTtitle {
font-size: 20px;
cursor: pointer;
}
/*
Misc
*/
.none {
display: none;
}