compass-bootstrap 0.0.2 → 0.1.0

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.
@@ -1,43 +0,0 @@
1
- /*!
2
- Mixins of bootstrap styles
3
- */
4
-
5
-
6
- /*
7
- * bt-column mixin always MUST be used inside of a .row class, as the bootstap says
8
- */
9
- @mixin bt-column($number) {
10
- $size : 40px * $number + 20px * ($number - 1);
11
- width: $size + 0px;
12
- }
13
-
14
- @mixin bt-btn($from-color,$to-color,$txt-color: default) {
15
- @if $txt-color == default {$txt-color: #ffffff;}
16
- cursor: pointer;
17
- display: inline-block;
18
- background-color: $to-color;
19
- background-repeat: no-repeat;
20
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from($from-color), to(#e6e6e6$to-color));
21
- background-image: -webkit-linear-gradient($from-color, $to-color);
22
- background-image: -moz-linear-gradient($from-color, $to-color);
23
- background-image: -ms-linear-gradient($from-color, $to-color);
24
- background-image: -o-linear-gradient($from-color, $to-color);
25
- background-image: linear-gradient($from-color, $to-color);
26
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=$from-color, endColorstr=$to-color, GradientType=0);
27
- padding: 5px 14px 6px;
28
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
29
- color: $txt-color;
30
- font-size: 13px;
31
- line-height: normal;
32
- border: 1px solid #ccc;
33
- border-bottom-color: #bbb;
34
- -webkit-border-radius: 4px;
35
- -moz-border-radius: 4px;
36
- border-radius: 4px;
37
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
38
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
39
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
40
- -webkit-transition: 0.1s linear all;
41
- -moz-transition: 0.1s linear all;
42
- transition: 0.1s linear all;
43
- }
@@ -1,2 +0,0 @@
1
- // This is where you put the contents of the main stylesheet for the user's project.
2
- // It should import your sass stylesheets and demonstrate how to use them.