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

body {
    display: flex;
    background-color: white;
}

#instructions {
    display: none;
}

#die {
    display: none;
}

#errors {
    display: none;
}

#nucleotide-selector {
    display: none;
}

.genome>ol {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 1ex;
}

.genome .nucleotide {
    display: inline-flex;
    height: 3ex;
    width: 2em;
    justify-content: space-around;
    align-items: center;
}

.genome .nucleotide.selected {
    border: 2px solid black;
}