... | ... | @@ -203,25 +203,25 @@ An example of various conventions. |
|
|
//
|
|
|
// Must only contain `.cell` children.
|
|
|
.grid {
|
|
|
height: 100%;
|
|
|
font-size: 0;
|
|
|
white-space: nowrap;
|
|
|
height : 100%;
|
|
|
font-size : 0;
|
|
|
white-space : nowrap;
|
|
|
}
|
|
|
|
|
|
// Grid cells
|
|
|
//
|
|
|
// No explicit width by default. Extend with `.cell-n` classes.
|
|
|
.cell {
|
|
|
position: relative;
|
|
|
display: inline-block;
|
|
|
overflow: hidden;
|
|
|
box-sizing: border-box;
|
|
|
height: 100%;
|
|
|
padding: 0 10px;
|
|
|
border: 2px solid #333;
|
|
|
vertical-align: top;
|
|
|
white-space: normal;
|
|
|
font-size: 16px;
|
|
|
position : relative;
|
|
|
display : inline-block;
|
|
|
overflow : hidden;
|
|
|
box-sizing : border-box;
|
|
|
height : 100%;
|
|
|
padding : 0 10px;
|
|
|
border : 2px solid #333;
|
|
|
vertical-align : top;
|
|
|
white-space : normal;
|
|
|
font-size : 16px;
|
|
|
}
|
|
|
|
|
|
// Cell states
|
... | ... | |