stipe 0.0.2.8 → 0.0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/readme.md +5 -1
- data/stylesheets/stipe/_stipe.scss +37 -0
- data/stylesheets/stipe/toadstool/_design.scss +1 -1
- metadata +1 -1
data/readme.md
CHANGED
@@ -11,9 +11,13 @@ To use the Stipe gem, using Bundler `gem 'stipe'`
|
|
11
11
|
|
12
12
|
Stipe is a Compass Extension, so Compass is set as a depdency. You will need to include `require 'stipe'` in your config.rb file.
|
13
13
|
|
14
|
+
##Sass / Compass
|
15
|
+
**(BLEEDING EDGE ALERT)** Toadstool is using ``3.2.0.alpha.*``
|
16
|
+
For [reasons explained](/Anotheruiguy/toadstool/blob/master/doc-src/exploited-bug.md) please continue using the alpha gem and upgrading to Sass 3.2 will break Toadstool and Stipe.
|
17
|
+
|
14
18
|
# Stipe Changelog
|
15
19
|
|
16
|
-
## 0.0.2.8
|
20
|
+
## 0.0.2.8/0.0.2.9
|
17
21
|
* Updated Toadstool Sass to use better named spaced class for main content block.
|
18
22
|
** Changed .main_content to .toadstool_main_contnet
|
19
23
|
|
@@ -9,5 +9,42 @@ $line: $font_size * 1.5 !default;
|
|
9
9
|
$em: $font_size; // $em ALWAYS == $font-size
|
10
10
|
$line_height: #{$line / $em}em;
|
11
11
|
|
12
|
+
$standard_round_corner: 3 !default; // sets default border radius
|
13
|
+
$standard_corner_width: 1px !default; // sets default border width
|
14
|
+
$standard_border_color: $border_color !default; // sets default border color
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
// Config defaults for ``standard_block_spacing`` mixin
|
19
|
+
// -----------------------------------------------------------------------------
|
20
|
+
$default_block_spacing: 20 !default; // sets margin-bottom
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
// Config defaults for site border style
|
25
|
+
// -----------------------------------------------------------------------------
|
26
|
+
$standard_border_style: solid !default;
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
// Config defaults for ``standard_hr`` mixin
|
31
|
+
// -----------------------------------------------------------------------------
|
32
|
+
$standard_hr_spacing: 40 !default; // sets padding and margin bottom
|
33
|
+
$standard_hr_color: $delta_gray !default;
|
34
|
+
$standard_hr_width: 1px !default;
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
// Config values for all default shadows
|
39
|
+
// -----------------------------------------------------------------------------
|
40
|
+
$h-shadow: 0 !default; // horizontal shadow settings
|
41
|
+
$v-shadow: 2 !default; // vertical shaddow settings
|
42
|
+
$blur: 3 !default; // blur settings
|
43
|
+
|
44
|
+
$inset_color: $shadow_color !default; // for use with ``dual_box_shadow`` mixin
|
45
|
+
$ih-shadow: 0 !default; // inset horizontal shadow settings
|
46
|
+
$iv-shadow: 2 !default; // inset vertical shaddow settings
|
47
|
+
$iblur: 3 !default; // inset blur settings
|
48
|
+
|
12
49
|
@import "stipe/mixins";
|
13
50
|
@import "stipe/extends";
|