aboutsummaryrefslogtreecommitdiff
path: root/src/Grid.css
blob: 620d1144d55621044d9e01ead1760cc3f0b7f987 (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
38
39
40
41
42
43
44
45
46
47
48
49
div.grid {
    display: inline-block;
}


.grid div {
    -webkit-transition: background-color 0.1s ease-out;
    -moz-transition: background-color 0.1s ease-out;
    -o-transition: background-color 0.1s ease-out;
    transition: background-color 0.1s ease-out;
}

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

.gridCell  div div {
    height: 24px;
    width: 24px;
    display: inline-block;
    cursor: pointer;
}

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

.smallGridCell div div {
    height: 17px;
    width: 17px;
    display: inline-block;
    cursor: pointer;
}

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

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