-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
164 lines (135 loc) · 2.36 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
* {
margin: 0;
padding: 0;
border: 0;
border-collapse: collapse;
}
body {
font: 11pt sans-serif;
text-align: left;
background-color: #fafafa;
}
#main {
position: relative;
width: 951px;
margin: 0 auto 0 auto;
}
h1 {
margin: 20px 0 20px 0;
font-family: "Lucida Grande", "Trebuchet MS", sans-serif;
color: rgb(139,115,115);
font-size: 36pt;
text-shadow: 0 0 10px rgba(139,115,115,0.5);
}
h1 span.light {
font-weight: lighter;
color: rgb(86, 144, 86);
text-shadow: 0 0 10px rgba(86, 144, 86, 0.5);
}
p {
line-height: 1.3;
padding-bottom: 10px;
}
a {
text-decoration: none;
color: rgb(86, 144, 86);
}
a:visited {
color: rgb(139,115,115);
}
a:hover {
text-decoration: underline;
}
#overview {
width: 380px;
margin: 20px 40px 0 0;
float: left;
line-height: 1.5;
}
svg {
margin-top: 20px;
}
th, td {
padding: 2px;
}
.clickable {
cursor: pointer;
border-bottom: 1px dashed;
}
.chord path {
fill-opacity: .67;
stroke: #000;
stroke-width: .5px;
}
g, path {
transition: opacity 0.4s;
}
div#chose {
margin-bottom: 5px;
}
div#chose span {
background-color: rgb(115,132,115);
padding: 10px 10px 5px 10px;
color: #fafafa;
border-radius: 10px 10px 0 0;
text-decoration: underline;
cursor: pointer
}
div#chose span.inactive {
background-color: rgb(139,115,115);
}
#strategies, #ownResultMatrix {
background-color: rgb(115,132,115);
padding: 10px;
}
#strategies.hidden, #ownResultMatrix.hidden {
display: none;
}
textarea {
background-color: rgb(127, 127, 127);
margin: 10px 0 10px 0;
width: 886px;
border: 1px solid rgb(221, 221, 221);
padding: 5px;
font: 8pt sans-serif;
line-height: 2;
}
textarea.faulty {
border: 1px solid rgb(214,39,40);
}
input {
border: 1px solid rgb(221, 221, 221);
background-color: rgb(127, 127, 127);
line-height: 2;
width: 40px;
text-align: right;
}
h2 {
margin: 40px 0 10px 0;
}
li {
margin-left: 50px;
}
#footer {
padding: 10px;
background-color: rgb(115,132,115);
padding-bottom: 20px;
text-align: right;
color: rgb(221, 221, 221);
}
#strategies a, #ownResultMatrix a, #footer a {
color: rgb(221, 221, 221);
}
#calculatedResultMatrix {
font: 8pt sans-serif;
line-height: 2;
background-color: rgb(127, 127, 127);
width: 896px;
border: 1px solid rgb(221, 221, 221);
}
#calculatedResultMatrix td {
text-align: center;
}
#calculatedResultMatrix tbody tr:hover {
background-color: rgb(221, 221, 221);
}