20 lines
243 B
CSS
20 lines
243 B
CSS
html {
|
|
font-family: sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.Grid {
|
|
border: 1px solid #d9dddd;
|
|
}
|
|
|
|
.GridItemEven,
|
|
.GridItemOdd {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.GridItemEven {
|
|
background-color: #f8f8f0;
|
|
}
|