blob: 28e976392b716ebbd8e924e13c8950d9e82bfbaf (
plain)
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
|
body {
display: flex;
background-color: white;
}
#instructions {
display: none;
}
#die {
display: none;
}
#errors {
display: none;
}
#nucleotide-selector {
display: none;
}
#genome-list {
width: 100%;
}
#genome-list .initial,
#genome-list .history,
#genome-list .final {
padding-left: 2.5em;
}
#genome-list .initial {
border-bottom: 1px dashed black;
}
#genome-list .final {
border-top: 1px dashed black;
}
.genome {
display: inline-flex;
flex-wrap: wrap;
}
.genome .codon {
display: inline-block;
margin: 0.5ex;
border: 1px solid black;
}
.genome .codon .amino-acid {
border-top: 1px solid black;
text-align: center;
padding-top: 0.5ex;
padding-bottom: 0.5ex;
}
.genome .nucleotide {
display: inline-flex;
height: 2em;
width: 2em;
justify-content: space-around;
align-items: center;
}
.genome .nucleotide.selected {
border: 2px solid black;
}
|