Files
WoWLoginScreens/assets/css/styles.css
T
2020-10-03 01:05:32 -04:00

200 lines
3.9 KiB
CSS

html, body {
margin: 0;
height: 100%;
overflow: hidden;
}
@font-face{
font-family: 'FRITZQUAD';
src: url('../fonts/FRIZQUAD.TTF');
}
.noSelect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#background {
background-color: #000;
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
transform: translateX(calc((100% - 100vw) / 2));
z-index: -1;
}
#quitButtonContainer {
bottom: 10px;
right: 10px;
position: absolute;
}
#queueBox {
position: fixed;
width: 720px;
}
#queue {
}
#queueTextContainer {
position: fixed;
margin-bottom: 50px;
background-color: transparent;
width: 650px;
height: 110px;
line-height: 50%;
z-index: 2;
}
#dcTextContainer {
position: fixed;
margin-bottom: 25px;
background-color: transparent;
width: 650px;
height: 110px;
line-height: 50%;
z-index: 2;
}
#realmListButton{
margin-top: 95px;
}
#copyrightText {
font-family: 'FRITZQUAD';
font-size: 15px;
text-align: left;
color: #ffc700;
text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 3px #000;
}
#buildDate {
position: fixed;
font-family: 'FRITZQUAD';
font-size: 15px;
text-align: left;
color: #ffc700;
text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 3px #000;
bottom: -8px;
left: 10px;
}
#buildVersion {
position: fixed;
font-family: 'FRITZQUAD';
font-size: 15px;
text-align: left;
color: #ffc700;
text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 3px #000;
bottom: 10px;
left: 10px;
}
.queueText {
font-family: 'FRITZQUAD';
font-size: 22px;
text-align: center;
color: #ffc700;
text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 3px #000, 10px 10px 2px #0000;
}
.button {
font-family: 'FRITZQUAD';
font-size: 23px;
text-align: center;
color: #ffc700;
text-shadow: 0 0 8px #000, 0 0 8px #000, 0 0 8px #000, 0 0 8px #000, 0 0 8px #000;
background: url('../img/ui/buttons/button_idle.png') no-repeat top;
width: 270px;
height: 71px;
border: none;
outline: none;
display: inline-block;
transform: scale(0.8);
filter: drop-shadow(0px 0px 8px #000);
z-index: 2;
}
.button:hover {
font-family: 'FRITZQUAD';
text-align: center;
color: #ffffff;
text-shadow: 0 0 8px #000, 0 0 8px #000, 0 0 8px #000, 0 0 8px #000, 0 0 8px #000;
background: url('../img/ui/buttons/button_hover.png') no-repeat top;
}
.button:active {
font-family: 'FRITZQUAD';
font-size: 22px;
text-align: center;
color: #ffffff;
text-shadow: 0 0 8px #000, 0 0 8px #000, 0 0 8px #000, 0 0 8px #000, 0 0 8px #000;
background: url('../img/ui/buttons/button_pressed.png') no-repeat top;
}
.centered {
min-height: 100vh;
display:flex;
flex-direction: column;
justify-content:center;
align-items:center;
}
.fullWidth
{
display: flex;
align-items:center;
justify-content:center;
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
height: 40px;
z-index: 2;
}
.foreground {
z-index: 1;
}
.xPacButton {
z-index: 1;
position: absolute;
top: -15px;
left: -55px;
width: 633px;
height: 289px;
border: none;
outline: none;
display: inline-block;
background: url('../img/ui/logos/Shadowlands.png') no-repeat top;
background-color: transparent;
transform: scale(0.8);
transition: 0.2s;
filter: drop-shadow(0px 0px 6px #000);
}
.xPacButton:hover {
transform: scale(0.81);
filter: drop-shadow(0px 0px 10px #000);
}
.xPacButton:active {
transform: scale(0.79);
filter: drop-shadow(0px 0px 0px #000);
}