-
Notifications
You must be signed in to change notification settings - Fork 299
/
style.css
108 lines (91 loc) · 1.68 KB
/
style.css
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.game-cover {
background: url("http://i1.faceprep.in/prograd-junior/numeron-bg.png") no-repeat;
background-size: cover;
}
body {
font-family: 'Russo One', sans-serif;
color: white;
height: 100vh;
flex-direction: column;
}
.flex-centered {
display: flex;
align-items: center;
justify-content: space-evenly;
}
.game {
background: url("http://i1.faceprep.in/prograd-junior/game-inside-bg.png") no-repeat;
background-size: cover;
}
#logo {
width: 80%;
height: auto;
}
.play {
width: 180px;
cursor: pointer;
}
#numbers {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.number-holder {
background-color: white;
color: black;
width: 25vw;
max-width: 200px;
max-height: 200px;
height: 25vw;
border: 2px solid #EE2689;
}
#instructions {
font-size: 6vw;
}
#numbers * {
font-size: 4vw;
}
#buttons * {
width: 25%;
min-width: 120px;
cursor: pointer;
}
#timer {
width: 10%;
position: absolute;
top: 5vh;
right: 5vh;
font-size: 6vw;
border: 1px solid white;
border-radius: 3px;
}
#game-over-text {
width: 50%;
max-width: 500px;
}
#score-box {
font-size: 6vw;
border: 1px solid white;
padding: 2vw;
}
.operators {
font-size: 3em;
border: 1px solid #ee2689;
padding: 30px;
text-align: center;
background-color: white;
color: black;
margin-right: 100px;
border-radius: 50%;
}
#buttons {
display: flex;
justify-content: space-evenly;
}