-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (68 loc) · 1.23 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
*{
margin:0px;
padding:0px;
}
body{
background-color: #51cfef;
text-align: center;
}
h1{
color: #C44536;
}
button:hover{
cursor:pointer;
}
.container{
height:70vh;
display: flex;
justify-content: center;
align-items: center;
}
.game{
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1.5vmin;
}
.box{
font-size: 6vmin;
height: 18vmin;
width: 18vmin;
border-radius: 0.92rem;
border: none;
box-shadow: 0 0 1rem rgba(0,0,0,0.3);
color: #c1121f;
background-color: #bae4f8;
}
#reset-btn{
padding: 1rem;
font-size: 1.25rem;
background-color: #283D3B;
color: #fff;
border: none;
border-radius: 0.4rem;
}
#answer{
margin: 2rem;
font-size: 2rem;
background-image: linear-gradient(125deg, #cd5d1c, #1b7111, #1c25cd, #900be2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#player1,#player2{
height: 10vmin;
width: 14vmin;
padding: 1rem;
font-size: 1.25rem;
background-color: #283D3B;
color: #fff;
border: none;
border-radius: 0.4rem;
margin-bottom: 2rem;
}
#player1{
margin-right: 1rem;
}