-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (56 loc) · 985 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
html {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
canvas {
background-color: black;
width: 40vh;
height: 80vh;
display: block;
margin-left: auto;
margin-right: 0;
touch-action: none;
}
body {
background-color: dimgray;
}
h1 {
font-size: 50;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
color: darkblue;
}
table {
margin-right: auto;
border-collapse: collapse;
width: 25%;
}
tr {
height: 5vh;
}
th {
background-color: rgb(34, 34, 34);
color: white;
}
table, tr, td {
border: 1px solid black;
text-align: center;
}
td {
font-size: 1.25rem;
height: 5vh;
background-color: rgb(170, 170, 170);
}
th {
text-align: center;
}
.flex-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
}