-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
67 lines (57 loc) · 868 Bytes
/
css.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
body {
font-family: sans-serif;
font-weight: bold;
}
.but0 {
background: #ff0000;
border: 2px solid #000000;
border-radius: 50%;
/* display: block; */
height: 0.75vh;
margin: auto;
width: 0.75vh;
}
.but1 {
background: #00ff00;
border: 2px solid #000000;
border-radius: 50%;
cursor: pointer;
/* display: block; */
height: 0.75vh;
margin: auto;
width: 0.75vh;
}
.but:hover {
background: #262626;
}
table {
/* border: none; */
/* border-collapse: collapse; */
border-spacing: 0;
margin: auto;
text-align: center;
}
td, th {
height: 2vh;
/* padding: 5px; */
width: 2vh;
}
td.nc {
text-align: left;
width: 6vh;
}
.c0 {
background-color: white;
border: thin solid black;
}
.c1 {
background-color: black;
border: thin solid black;
}
.c2 {
background-color: lightgrey;
border: thin solid black;
}
.vt {
transform: rotate(270deg);
}