middleman 0.10.4 → 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/middleman/template/views/stylesheets/site.css.sass +17 -0
- data/middleman.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.10.
|
1
|
+
0.10.5
|
@@ -1,9 +1,26 @@
|
|
1
1
|
@import compass.sass
|
2
2
|
@import blueprint/screen.sass
|
3
3
|
|
4
|
+
!font_color = #2a2a2a
|
5
|
+
!link_color = #0388a6
|
6
|
+
!link_hover_color = #009ce0
|
7
|
+
!link_focus_color = !link_color
|
8
|
+
!link_active_color = !link_color
|
9
|
+
!link_visited_color = !link_color
|
10
|
+
|
11
|
+
!blueprint_font_family = "'Century Gothic', 'Apple Gothic', 'Helvetica Neue', arial, sans-serif"
|
12
|
+
!blueprint_font_size = 13px
|
13
|
+
|
14
|
+
!blueprint_grid_columns = 12
|
15
|
+
!blueprint_grid_width = 60px
|
16
|
+
!blueprint_grid_margin = 20px
|
17
|
+
|
4
18
|
+global-reset
|
5
19
|
+blueprint-typography
|
6
20
|
|
21
|
+
a
|
22
|
+
+link-colors(!link_color, !link_hover_color, !link_focus_color, !link_active_color, !link_visited_color)
|
23
|
+
|
7
24
|
#frame
|
8
25
|
padding: 50px
|
9
26
|
text-align: center
|
data/middleman.gemspec
CHANGED