-
Notifications
You must be signed in to change notification settings - Fork 0
/
bgame.css
117 lines (116 loc) · 2.06 KB
/
bgame.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
109
110
111
112
113
114
115
116
117
body{
margin:0;
padding:0;
user-select:none;
}
.body {
height:100vh;
width:100vw;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
background-color:#f5f5f5;
}
#game_card{
height:260px;
width:300px;
background-color:#252525;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
min-height:240px;
}
#ans{
background-color:#353535;
height:40px;
border:none;
text-decoration:none;
outline:none;
color:#fff;
border-radius:10px;
text-align:center;
}
#button{
width:200px;
height:50px;
background-color:#000;
margin-top:30px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-weight:bold;
border:none;
}
#button2{
width:200px;
height:50px;
background-color:#000;
border-radius:10px;
margin-bottom:20px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-weight:bold;
min-height:40px;
}
#num{
width:300px;
height:50px;
background-color:#252525;
margin-bottom:20px;
border-radius:10px;
color:#fff;
font-weight:bold;
display:flex;
align-items:center;
justify-content:center;
}
#score{
margin-bottom:20px;
color:#fff;
font-weight:bold;
}
#card{
height:100vh;
width:100vw;
display:flex;
align-items:center;
justify-content:center;
display:none;
background-color:#f5f5f5;
}
.card{
height:360px;
width:300px;
background-color:#252525;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
border-radius:20px;
color:#fff;
}
.card p{
color:#fff;
position:relative;
font-size:20px;
font-weight:bold;
}
#btn{
font-size:20px;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
height:50px;
width:120px;
background-color:#000;
border-radius:8px;
color:#fff;
}