-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (55 loc) · 966 Bytes
/
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
#tablero{
width: 154px;
height: 154px;
display: block;
background-color: whitesmoke;
}
.fila{
display: inline-block;
}
.casilla{
width: 20px;
height: 20px;
border: solid black 1px;
color: transparent;
font-weight: 900;
text-align: center;
font-size: 30px;
}
#dado h1{
height: 30px;
width: 30px;
background-color: burlywood;
border: solid black 1px;
text-align: center;
}
.oculto{
display: none !important;
}
.red{
background-color: red !important;
}
.blue{
background-color: rgb(129, 129, 235) !important;
}
.Tred{
color: red !important;
}
.Tblue{
color: rgb(129, 129, 235) !important;
}
.pivote{
color: black !important;
}
.Ppivote{
color: rgba(0, 0, 0, 0.5) !important;
}
.Pred{
background-color: rgba(255, 0, 0, 0.5) !important;
}
.Pblue{
background-color: rgba(129, 129, 235, 0.5) !important;
}
.black{
background-color: black !important;
}