oldskool 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/oldskool/version.rb +1 -1
- data/views/index.erb +2 -5
- data/views/layout.erb +30 -14
- metadata +61 -94
- data/public/js/less-1.1.3.min.js +0 -16
- data/public/lib/bootstrap.less +0 -26
- data/public/lib/forms.less +0 -479
- data/public/lib/mixins.less +0 -222
- data/public/lib/patterns.less +0 -1063
- data/public/lib/reset.less +0 -141
- data/public/lib/scaffolding.less +0 -139
- data/public/lib/tables.less +0 -224
- data/public/lib/type.less +0 -187
- data/public/lib/variables.less +0 -60
data/public/lib/variables.less
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
/* Variables.less
|
2
|
-
* Variables to customize the look and feel of Bootstrap
|
3
|
-
* ----------------------------------------------------- */
|
4
|
-
|
5
|
-
|
6
|
-
// Links
|
7
|
-
@linkColor: #0069d6;
|
8
|
-
@linkColorHover: darken(@linkColor, 15);
|
9
|
-
|
10
|
-
// Grays
|
11
|
-
@black: #000;
|
12
|
-
@grayDark: lighten(@black, 25%);
|
13
|
-
@gray: lighten(@black, 50%);
|
14
|
-
@grayLight: lighten(@black, 75%);
|
15
|
-
@grayLighter: lighten(@black, 90%);
|
16
|
-
@white: #fff;
|
17
|
-
|
18
|
-
// Accent Colors
|
19
|
-
@blue: #049CDB;
|
20
|
-
@blueDark: #0064CD;
|
21
|
-
@green: #46a546;
|
22
|
-
@red: #9d261d;
|
23
|
-
@yellow: #ffc40d;
|
24
|
-
@orange: #f89406;
|
25
|
-
@pink: #c3325f;
|
26
|
-
@purple: #7a43b6;
|
27
|
-
|
28
|
-
// Baseline grid
|
29
|
-
@basefont: 13px;
|
30
|
-
@baseline: 18px;
|
31
|
-
|
32
|
-
// Griditude
|
33
|
-
// Modify the grid styles in mixins.less
|
34
|
-
@gridColumns: 16;
|
35
|
-
@gridColumnWidth: 40px;
|
36
|
-
@gridGutterWidth: 20px;
|
37
|
-
@extraSpace: (@gridGutterWidth * 2); // For our grid calculations
|
38
|
-
@siteWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
39
|
-
|
40
|
-
// Color Scheme
|
41
|
-
// Use this to roll your own color schemes if you like (unused by Bootstrap by default)
|
42
|
-
@baseColor: @blue; // Set a base color
|
43
|
-
@complement: spin(@baseColor, 180); // Determine a complementary color
|
44
|
-
@split1: spin(@baseColor, 158); // Split complements
|
45
|
-
@split2: spin(@baseColor, -158);
|
46
|
-
@triad1: spin(@baseColor, 135); // Triads colors
|
47
|
-
@triad2: spin(@baseColor, -135);
|
48
|
-
@tetra1: spin(@baseColor, 90); // Tetra colors
|
49
|
-
@tetra2: spin(@baseColor, -90);
|
50
|
-
@analog1: spin(@baseColor, 22); // Analogs colors
|
51
|
-
@analog2: spin(@baseColor, -22);
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
// More variables coming soon:
|
56
|
-
// - @basefont to @baseFontSize
|
57
|
-
// - @baseline to @baseLineHeight
|
58
|
-
// - @baseFontFamily
|
59
|
-
// - @primaryButtonColor
|
60
|
-
// - anything else? File an issue on GitHub
|