-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (91 loc) · 2.03 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
circle.client {
stroke: #333;
stroke-width: 3px;
fill-opacity: 1;
}
line.client {
stroke: #333;
stroke-width: 3px;
}
line.client[conflict="1"] {
stroke: red;
stroke-width: 12px;
}
.main text.client {
fill: #000;
stroke: none;
font-family: 'Open Sans', sans-serif;
font-weight: bold;
dominant-baseline: middle;
}
.main p.conflicts {
color: white;
background: red;
font-weight: bold;
}
.main p.no-conflicts {
color: white;
background: green;
font-weight: bold;
}
.main #text {
font-size: 13pt;
line-height: 1.3em;
font-size: medium;
line-height: normal;
text-align: justify;
font-family: 'Open Sans', sans-serif;
}
circle.client[color="0"] { fill:#999; }
circle.client[color="1"] { fill:#1b9e77; }
circle.client[color="2"] { fill:#d95f02; }
circle.client[color="3"] { fill:#7570b3; }
circle[color="0"] { fill:#999; }
circle[color="1"] { fill:#1b9e77; }
circle[color="2"] { fill:#d95f02; }
circle[color="3"] { fill:#7570b3; }
circle[color="4"] { fill:#e7298a; }
circle[color="5"] { fill:#e6ab02; }
circle[color="6"] { fill:#66a61e; }
circle[color="7"] { fill:#a6761d; }
circle[color="8"] { fill:#666666; }
.main button.color1 { background-color:#1b9e77; }
.main button.color2 { background-color:#d95f02; }
.main button.color3 { background-color:#7570b3; }
.main button.color4 { background-color:#e7298a; }
.main button.color5 { background-color:#e6ab02; }
.main button.color6 { background-color:#66a61e; }
.main button.color7 { background-color:#a6761d; }
.main button.color8 { background-color:#666666; }
circle[choices] {
fill-opacity: 1;
}
circle {
fill-opacity: 0.5;
}
circle[selected="1"] {
stroke: black;
stroke-width: 3px;
}
line[selected="1"] {
stroke: black;
stroke-width: 2px;
}
line[conflict="1"] {
stroke: red;
stroke-width: 3px;
}
.main button {
font-weight: bold;
margin: .5em;
font-size: 1.5em;
}
.main div.choices button {
padding-right: 1em;
}
.main table.list {
padding-left: 1em;
}
.main table.list td, table.listitem td {
vertical-align: top;
}