Mercurial > wikked
comparison static/css/bootstrap.less @ 101:13249e5ca51c
Big refactor for better database caching:
- Using SQL alchemy instead of raw SQLite.
- Better architecture and internal APIs.
- Fixed some issues where the database was not used correctly.
- Fixed some problems with querying pages.
Got rid of `Makefile`, now using `grunt`.
Now using a custom `Bootstrap` include file.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 05 Nov 2013 08:13:18 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
100:fd6eccb24882 | 101:13249e5ca51c |
---|---|
1 /* | |
2 * Custom includes for Bootstrap, to inject custom variables and skip | |
3 * the components we don't care about. | |
4 */ | |
5 | |
6 // Core variables and mixins | |
7 @import "../bootstrap/less/variables.less"; // Modify this for custom colors, font-sizes, etc | |
8 @import "custom-variables.less"; | |
9 @import "../bootstrap/less/mixins.less"; | |
10 | |
11 // CSS Reset | |
12 @import "../bootstrap/less/reset.less"; | |
13 | |
14 // Grid system and page structure | |
15 @import "../bootstrap/less/scaffolding.less"; | |
16 @import "../bootstrap/less/grid.less"; | |
17 @import "../bootstrap/less/layouts.less"; | |
18 | |
19 // Base CSS | |
20 @import "../bootstrap/less/type.less"; | |
21 @import "../bootstrap/less/code.less"; | |
22 @import "../bootstrap/less/forms.less"; | |
23 @import "../bootstrap/less/tables.less"; | |
24 | |
25 // Components: Buttons & Alerts | |
26 @import "../bootstrap/less/buttons.less"; | |
27 @import "../bootstrap/less/button-groups.less"; | |
28 @import "../bootstrap/less/alerts.less"; // Note: alerts share common CSS with buttons and thus have styles in buttons.less | |
29 | |
30 // Components: Popovers | |
31 @import "../bootstrap/less/modals.less"; | |
32 @import "../bootstrap/less/tooltip.less"; | |
33 @import "../bootstrap/less/popovers.less"; | |
34 | |
35 // Utility classes | |
36 @import "../bootstrap/less/utilities.less"; // Has to be last to override when necessary | |
37 |