-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.scss
53 lines (48 loc) · 1022 Bytes
/
game.scss
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
@import 'assets/sass/colors';
@import 'assets/sass/buttons';
@import 'assets/sass/cards';
@import 'assets/sass/config';
@import 'assets/sass/screens/gameScreenWide';
@import 'assets/sass/screens/tabletScreen';
@import 'assets/sass/screens/phoneScreen';
@import 'assets/sass/screens/smallerPhoneScreen';
/*
#main-box{
background-image: ;
}
*/
.wrong{
background-color: $darkRed;
color: white;
}
.correct{
background-color: $yellowGreen;
color: white;
}
.wrong, .correct{
display: flex;
justify-content: center;
align-items: center;
transition: all 2s;
transition-property: all;
transition-duration: 2s;
transition-timing-function: $bounceFreeze;
transition-delay: 0s;
font-family: novaFlat, cursive;
outline: none;
}
.scoreButtons{
width: 380px;
height: 65px;
border-radius: 9px;
margin-bottom: 30px;
}
.scoreEntry{
margin-bottom: 25px;
border-radius: 15px;
width: 401px;
height: 70px;
}
.narration{
margin-top: -60px;
}