summaryrefslogtreecommitdiffstats
path: root/style.css
blob: 1d4f71cd04fa70ea89c3a9d3a20467b4cebf1dd2 (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
* {
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

body {
    background-color: #eee;
}

#instructions {
    background-color: #ddd;
}

#instructions .current {
    background-color: yellow;
}

#die {
    background-color: #fde;
    border: 1px solid #aaa;
}

#die .value {
    text-align: center;
}

#nucleotide-selector {
    background-color: ivory;
    border: 1px solid black;
}

.genome.locked {
    cursor: text
}

.genome>ol {
    border: 1px solid black;
    background-color: white;
}

#nucleotide-selector,
.genome:not(.locked) {
    cursor: pointer;
}

#nucleotide-selector li:hover,
.genome:not(.locked) .nucleotide:hover {
    background-color: orange;
}

.genome .nucleotide.selected,
.genome:not(.locked) .nucleotide.selected:hover {
    background-color: red;
}