-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (102 loc) · 1.89 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
109
110
111
112
113
114
115
116
@font-face {
font-family: 'Digital7';
src: url('fonts/digital-7.ttf') format('truetype');
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
color: white;
}
body {
background-image: url("./bg.jpg");
background-repeat: no-repeat;
background-size: cover;
padding-top: 20px;
max-height: 100vh;
}
.container {
display: grid;
grid-template-columns: 1fr 4fr;
padding-inline: 30px;
padding-top: 150px;
}
.board {
display: grid;
/* grid-template-rows: 1fr 1fr 1fr; */
row-gap: 1em;
}
button {
width: fit-content;
height: fit-content;
text-align: center;
padding-inline: 40px;
padding-block: 15px;
background: white;
font-weight: bolder;
cursor: pointer;
border: none;
color: black;
}
.scores,
.playGround {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 1em;
}
#humanScore,
#computerScore {
font-family: 'Digital7', sans-serif;
font-size: xx-large;
}
.computerScore,
.humanScore {
display: grid;
text-align: center;
justify-content: center;
background-color: black;
align-items: center;
color: wheat;
padding: 35px;
gap: 2em;
}
.playGround>div {
margin-top: 1em;
background-color: wheat;
cursor: pointer;
display: grid;
align-items: center;
justify-content: center;
height: 50px;
color: black;
font: bolder;
}
.divider {
display: grid;
text-align: center;
justify-content: center;
align-items: center;
background-color: gray;
font-size: xx-large;
}
.chancesCount {
display: grid;
gap: 1em;
}
.chancesText {
font-size: x-large;
margin-bottom: .5em;
}
.chance {
background-color: aliceblue;
width: 50px;
padding: 10px;
color: black;
display: grid;
justify-content: center;
align-items: center;
}
.chance1 {
background-color: black;
color: white;
}