121 lines
1.8 KiB
CSS
121 lines
1.8 KiB
CSS
body {
|
|
background-image: url('../images/bg.jpg');
|
|
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
|
font-weight: 800;
|
|
}
|
|
|
|
#winner {
|
|
margin: auto;
|
|
width: 50vw;
|
|
height: calc(40em + 30px);
|
|
padding: 0px;
|
|
position: absolute;
|
|
top: 16vh;
|
|
left: 25vw;
|
|
z-index: -5;
|
|
background-color: rgba(0,0,0,.8);
|
|
}
|
|
|
|
#winner div {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
#winner div img {
|
|
display: block;
|
|
}
|
|
|
|
#winner div button {
|
|
display: block;
|
|
margin: 1em;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 50%;
|
|
|
|
background-color: #FFDD57;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
|
|
nav {
|
|
margin: auto;
|
|
display: block;
|
|
min-width: 100%;
|
|
max-height: 200px;
|
|
}
|
|
|
|
nav img {
|
|
margin: auto;
|
|
display: block;
|
|
height: 150px;
|
|
}
|
|
|
|
#wrapper {
|
|
margin: auto;
|
|
width: 50vw;
|
|
padding: 0px;
|
|
position: absolute;
|
|
top: 16vh;
|
|
left: 25vw;
|
|
}
|
|
|
|
#bingoWithJack {
|
|
position: absolute;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
}
|
|
|
|
.bingoField {
|
|
height: 8em;
|
|
flex: 1;
|
|
display: flex;
|
|
background: #ccc;
|
|
line-break: auto;
|
|
border: 3px solid #DB3838;
|
|
background-color: #FADCB6;
|
|
float: left;
|
|
}
|
|
|
|
.bingoText {
|
|
font-size: 1em;
|
|
text-align: center;
|
|
align-self: center;
|
|
margin: auto;
|
|
padding: 0.2em;
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
#wrapper {
|
|
width: 95vw;
|
|
top: 20vh;
|
|
left: 3vw;
|
|
}
|
|
|
|
#winner {
|
|
width: 95vw;
|
|
top: 20vh;
|
|
left: 3vw;
|
|
}
|
|
|
|
.bingoField {
|
|
border: 2px solid #DB3838;
|
|
}
|
|
|
|
.bingoText {
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
|
|
} |