aboutsummaryrefslogtreecommitdiffstats
path: root/static/styles.css
blob: 9102d3be98449f96ae65d0b4fb809eb731ef175f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bingoCard {
    height: 90vh;
    width: 80vw;
    border: 0.5em solid black;
}

.bingoTile {
    font-size: 24pt;
    border: 2pt double green;
    text-align: center;
}

.bingoTile:hover:not(.locked) {
    border-color: red;
}

.bingoTile:active:not(.locked) {
    border-color: blue;
}