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.
30 lines
478 B
Sass
30 lines
478 B
Sass
6 years ago
|
@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
|
||
|
|
||
|
h1, p
|
||
|
margin: auto
|
||
|
|
||
|
#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%)
|