forked from GMOD/jbrowse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsequence.css
124 lines (111 loc) · 2.34 KB
/
sequence.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
table.sequence {
border-collapse: collapse;
}
div.sequence_blur {
/* background: url('img/sequence_blur.png') #eee repeat-x; */
background: #f5f5f5;
background: rgba( 50, 50, 50, 0.16 );
border: 0;
color: #575757;
height: 31px;
font-size: 12px;
text-align: center;
position: relative;
}
.sequence_blur > span {
top: 50%;
position: absolute;
width: 100%;
display: block;
left: 0;
margin-top: -8px;
}
table.sequence .highlighted {
background: #ff0;
}
table.sequence .revcom {
color: red;
}
table.sequence .base, table.sequence > tr, table.translatedSequence > tr, table.translatedSequence {
height: 14px;
line-height: 14px;
}
table.sequence.big .base {
border-right: 1px solid #333;
}
.translatedSequence {
position: relative;
border-width: 0px;
border-collapse: collapse;
overflow: visible;
}
.translatedSequence table {
z-index: 10;
}
.translatedSequence.frame0 {
background-color: #929292;
}
.translatedSequence.frame1 {
background-color: #B0B0B0;
}
.translatedSequence.frame2 {
background-color: #E0E0E0;
}
.translatedSequence td.aminoAcid {
text-align: center;
z-index: 2000;
color: black;
font-family: Courier New,monospace;
font-weight: bold;
text-shadow: white 0px 0px 1px;
}
.translatedSequence.big, .translatedSequence.big td.aminoAcid {
border-right: 1px solid #777;
}
.translatedSequence.frame2 td.aminoAcid {
border-right-color: #979797;
}
.translatedSequence.frame1 td.aminoAcid {
border-right-color: #6d6d6d;
}
.translatedSequence.frame0 td.aminoAcid {
border-right-color: #5f5f5f;
}
.translatedSequence td.aminoAcid_\* {
background-color: #FF0000;
}
.translatedSequence td.aminoAcid_m {
background-color: #00FF00;
}
td.base {
text-align: center;
z-index: 2000;
}
.base {
color: black;
font-family: Courier New,monospace;
font-weight: bold;
text-shadow: white 0px 0px 1px;
}
/* colors for bases must be specified as hex or rgb/hsl strings, no named colors such as 'red' */
.base_n {
background-color: #C6C6C6;
}
.base_a {
background-color: #00BF00;
}
.base_c {
background-color: #4747ff;
}
.base_t {
background-color: #f00;
}
.base_g {
background-color: #d5bb04;
}
.base_reference {
background-color: #bbb;
}
.base_deletion {
background-color: #999;
}