-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (62 loc) · 1.06 KB
/
Copy pathstyles.css
File metadata and controls
71 lines (62 loc) · 1.06 KB
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
.scaling-svg {
user-select: none;
overflow: visible;
max-height: 75%;
max-width: 80%;
margin-top: 2vh;
margin-bottom: 2vh;
display: block;
/* outline: 1px solid red; */
}
.hex {
overflow: visible;
stroke: black;
stroke-width: 0.75;
}
.hex:hover {
fill: rgb(90%, 90%, 90%);
}
.hex:active {
fill: rgb(80%, 80%, 80%);
}
.state {
font: 9px sans-serif;
dominant-baseline: middle;
text-anchor: middle;
stroke: none;
fill: black;
}
.text {
font-size: 2vmin;
font-family: Arial, Helvetica, sans-serif;
}
.frame {
position:relative;
max-width: 80vw;
max-height: 50vh;
/* padding: 1vmin; */
border: 2px solid #202020;
border-radius: 5px;
}
.centered {
margin-left:auto;
margin-right:auto;
}
.unclickable {
pointer-events: none;
}
.table {
max-width: 50vw;
max-height: 50vh;
border: 2px solid #202020;
border-collapse: collapse;
}
.table th {
font-weight:bold;
padding: 3px;
border: 2px solid #202020;
}
.table td {
border: 2px solid #202020;
padding: 3px;
}