mirror of https://github.com/Trivernis/whooshy.git
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.
32 lines
525 B
Sass
32 lines
525 B
Sass
@import ../vars
|
|
@import ../mixins
|
|
|
|
#content
|
|
display: grid
|
|
grid-template: 25% 50% 25% / 25% 50% 25%
|
|
height: 100%
|
|
width: 100%
|
|
position: absolute
|
|
top: 0
|
|
left: 0
|
|
|
|
#info
|
|
@include gridPosition(1, 2, 2, 3)
|
|
margin: auto
|
|
text-align: center
|
|
|
|
h1, p, a
|
|
margin: auto
|
|
text-align: center
|
|
|
|
#bingo-button
|
|
background-color: $secondary
|
|
height: 100%
|
|
width: 50vh
|
|
border-radius: 25rem
|
|
margin: auto
|
|
@include gridPosition(2, 3, 2, 3)
|
|
|
|
#bingo-button:hover
|
|
background-color: mix($secondary, $primary, 75%)
|