aboutsummaryrefslogtreecommitdiff
path: root/src/Matrix.css
blob: 18d5a4dda334734f1cec7aada1b9f5632f64a92d (plain) (blame)
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
div.matrix {
    display: inline-block;
}

.matrix div {
    -webkit-transition: background-color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
    user-select: none;
}

.matrixCell div div {
    height: 20px;
    width: 20px;
    margin: 2px;
    display: inline-block;
    cursor: pointer;
}

.smallMatrixCell div div {
    height: 15px;
    width: 15px;
    margin: 1px;
    display: inline-block;
    cursor: pointer;
}

.matrixRow div {
    height: 24px;
    text-align: center;
}

.smallMatrixRow div {
    height: 17px;
    text-align: center;
}