aboutsummaryrefslogtreecommitdiff
path: root/src/Grid.css
blob: a9c780237296dbd79e8e2f5dad872b10763c0995 (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
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 {
    height: 20px;
    width: 20px;
    margin: 2px;
    display: inline-block;
}

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

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

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