-
Notifications
You must be signed in to change notification settings - Fork 17
/
style.css
123 lines (109 loc) · 1.89 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
#grid th.included{
background-color:orange;
}
#grid th{
color:white;
background-color:gray;
width:50px;
border:2px solid transparent;
}
#grid th.highlight{
border: 2px solid green;
background-color:green;
}
#grid td{
width:50px;
cursor:pointer;
text-align:center;
font-weight:bold;
border: 1px solid white;
}
#grid .in-path{
background-color:red;
}
#grid .is-last{
background-color:gold;
}
#grid td.highlight-main{
border: 1px solid green !important;
background-color:green;
color:white;
}
#grid td.highlight{
border: 1px solid green !important;
background-color:gold;
}
#grid tr{
height:50px;
}
#alignment {
min-width:250px;
}
#alignment td{
width:30px;
font-weight:bold;
}
label{
float:left;
margin-right:10px;
}
.seq {
width:195px;
float:left;
text-transform: uppercase;
}
.params{
width:70px;
}
#result{
border-left:2px solid black;
padding-left:10px;
}
#tooltip {
display:block;
position: absolute;
z-index: 9000;
border-radius:10px;
color:white;
padding: 5px;
opacity: 0.96;
margin:0;
max-width:600px;
background-color:navy;
color:white;
}
#tooltip h3, #tooltip div, #tooltip p{ margin: 0; text-align:center; }
#tooltip table td{
border:1px solid white;
color:white;
max-width:170px;
padding:5px;
vertical-align:top;
}
td{
background-repeat:no-repeat;
}
#grid td.s {
background-image:url('images/s.png');
border:1px solid black;
}
#grid td.u {
background-image:url('images/u.png');
border:1px solid black;
}
#grid td.d {
background-image:url('images/d.png');
border:1px solid black;
}
#grid td.d.s {
background-image:url('images/ds.png');
}
#grid td.d.u {
background-image:url('images/du.png');
}
#grid td.s.u {
background-image:url('images/su.png');
}
#grid td.d.s.u {
background-image:url('images/dsu.png');
}