-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
54 lines (48 loc) · 869 Bytes
/
Copy pathcss.css
File metadata and controls
54 lines (48 loc) · 869 Bytes
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
.game{
display: grid;
grid-template-columns: 20rem 6rem 7rem;
align-items: start;
}
#grid {
width: 300px;
height: 300px;
display: grid;
grid-template-columns: repeat(10, 30px);
grid-template-rows: repeat(10, 30px);
background-color: #000;
div{
width:28px;
height: 28px;
border-style: dotted;
border-color: gray;
border: -1px;
background-color: white;
}
}
#tbpontos, th, td, tr{
border-collapse: collapse;
border: 1px solid;
td{
align-items: center;
}
}
.labels{
display: flex;
flex-direction: column;
}
button {
background-color: #fff;
color: #000;
padding: 10px;
font-size: 18px;
}
#pausar, #continuar{
visibility: hidden;
}
#pontos > p{
text-align: left;
font-size: 58px;
font-weight: 900;
color: red;
margin-top: 20px;
}