You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bingo/style.css

79 lines
1.2 KiB
CSS

2 years ago
body {
font-family: monospace;
height: 95vh;
width: 95vw;
overflow: hidden;
margin: 0 auto;
user-select: none;
background-color: #222;
color: #ccc;
2 years ago
}
table {
2 years ago
width: 100%;
display: table;
table-layout: fixed;
2 years ago
}
td {
2 years ago
text-align: center;
height: calc(100vh / 6);
transition: background-color ease-out .350s;
border-radius: 40px;
font-size: xx-large;
}
canvas {
pointer-events: none;
}
2 years ago
td:hover {
background-color: blueviolet;
}
2 years ago
2 years ago
td.drawn {
background-color: green;
}
td.center-field {
background-color: green;
2 years ago
}
2 years ago
img {
2 years ago
max-height: calc(100vh / 6);
max-width: calc(100vh / 6);
2 years ago
}
2 years ago
h1, p {
2 years ago
text-align: center;
margin: 5px;
2 years ago
}
2 years ago
p#seeed {
2 years ago
user-select: text;
}
span#copy-permalink, span#refresh-bingo {
cursor: pointer;
}
#winner-message {
display: flex;
position: fixed;
font-size: 3000%;
left: 50%;
top: 100%;
transform: translate(-50%, 0);
text-shadow: 10px 10px 20px black;
color: orange;
transition: all ease-out .75s;
pointer-events: none;
}
#winner-message.won {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
2 years ago
}