-
Notifications
You must be signed in to change notification settings - Fork 32
Legacy kite
Hiroki Tani edited this page May 9, 2014
·
1 revision
Light weight & robust layout helper CSS Framework.
<div class="grid">
<div class="grid__cell grid__cell-3">
<p>3</p>
</div>
<div class="grid__cell grid__cell-9">
<p>9</p>
</div>
</div>
The .grid
element is grid-row, the .grid__cell
element is grid-cell.
The .grid__cell
element must be the child of a .grid
.
The .grid__cell
has paddings for side gutter, so you should not style it. You should style inner element.
Default Kite styles are:
- 12 units.
- 20px gutter (
padding-left: 10px; padding-right: 10px
). - 60px columm.
- Fixed 960px container (
($column + $gutter) * $unit
).
You can change these styles. See kite.scss Setting section.
- Latest Stable: Chrome, Safari
We need more tests! ;(
- Preview release
It is inspired by both Griddle and csswizardry-grids.
The MIT License.
Copyright (c) 2014 Hiroki Tani [email protected]