89 lines
1.5 KiB
CSS
89 lines
1.5 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background: black;
|
|
color: white;
|
|
overflow-x: hidden;
|
|
text-align: center;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
.app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.arrow {
|
|
width:0px;
|
|
height:0px;
|
|
|
|
position: absolute;
|
|
transform: translate(-50%);
|
|
top: 0;
|
|
left: 50%;
|
|
|
|
border-right:15px solid transparent;
|
|
border-top:60px solid gray;
|
|
border-left:15px solid transparent;
|
|
}
|
|
|
|
.spinner {
|
|
width: 60vmin;
|
|
height: 60vmin;
|
|
|
|
position: absolute;
|
|
top: 40px;
|
|
left: 50%;
|
|
|
|
transform-origin: 50% 50%;
|
|
background: darkgray;
|
|
padding: 5px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.spinner-container {
|
|
height: 67vmin;
|
|
min-height: 500px;
|
|
}
|
|
|
|
img.wop {
|
|
width: auto;
|
|
height: 30vh;
|
|
margin: 0 auto;
|
|
display: block;
|
|
}
|
|
|
|
.winner ul {
|
|
padding: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.winner li a {
|
|
font-size: 32px;
|
|
margin: 20px;
|
|
border: 15px solid darkgrey;
|
|
display: inline-block;
|
|
background: darkgrey;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.winner li a img {
|
|
position: relative;
|
|
margin-right: 30px;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|