blob: 28652724cb655429784f97fe0c1eb6684d578699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
The stylesheets we use are based on bootstrap, with some significant changes:
(1) We do not use bootstrap layout. Instead, see superfluid.scss
(2) We do use the fluid grid system of bootstrap, but not the fixed grid system.
For example, this is valid:
<div class="row-fluid">
<div class="span12">
Level 1 of column
<div class="row-fluid">
<div class="span6">Level 2</div>
<div class="span6">Level 2</div>
</div>
</div>
</div>
but <div class="row"> is not supported
we keep the default of twelve columns.
(3) see app/assets/stylesheets/bootstrap.scss for the custom ways we partially include bootstrap.
|