jekyll-bootflat 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (149) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +62 -0
  4. data/_includes/footer.html +63 -0
  5. data/_includes/head.html +14 -0
  6. data/_includes/header.html +37 -0
  7. data/_layouts/default.html +17 -0
  8. data/_layouts/page.html +14 -0
  9. data/_layouts/post.html +5 -0
  10. data/_sass/_bootflat.scss +41 -0
  11. data/_sass/_bootstrap.scss +56 -0
  12. data/_sass/_font-awesome.scss +18 -0
  13. data/_sass/_overrides.scss +1 -0
  14. data/_sass/_syntax-highlighting.scss +71 -0
  15. data/_sass/bootflat/_accordion.scss +76 -0
  16. data/_sass/bootflat/_alert.scss +75 -0
  17. data/_sass/bootflat/_breadcrumb.scss +121 -0
  18. data/_sass/bootflat/_button.scss +205 -0
  19. data/_sass/bootflat/_button_group.scss +133 -0
  20. data/_sass/bootflat/_calendar.scss +134 -0
  21. data/_sass/bootflat/_checkbox_radio.scss +67 -0
  22. data/_sass/bootflat/_dropdown.scss +122 -0
  23. data/_sass/bootflat/_footer.scss +82 -0
  24. data/_sass/bootflat/_form.scss +212 -0
  25. data/_sass/bootflat/_global.scss +239 -0
  26. data/_sass/bootflat/_jumbotron.scss +84 -0
  27. data/_sass/bootflat/_label_badge.scss +65 -0
  28. data/_sass/bootflat/_list.scss +188 -0
  29. data/_sass/bootflat/_media_list.scss +26 -0
  30. data/_sass/bootflat/_modal.scss +39 -0
  31. data/_sass/bootflat/_navbar.scss +216 -0
  32. data/_sass/bootflat/_pager.scss +42 -0
  33. data/_sass/bootflat/_pagination.scss +59 -0
  34. data/_sass/bootflat/_panel.scss +169 -0
  35. data/_sass/bootflat/_pill.scss +45 -0
  36. data/_sass/bootflat/_popover.scss +50 -0
  37. data/_sass/bootflat/_pricing.scss +139 -0
  38. data/_sass/bootflat/_progress.scss +42 -0
  39. data/_sass/bootflat/_selecter.scss +258 -0
  40. data/_sass/bootflat/_stepper.scss +79 -0
  41. data/_sass/bootflat/_tab.scss +179 -0
  42. data/_sass/bootflat/_thumbnail.scss +43 -0
  43. data/_sass/bootflat/_timeline.scss +189 -0
  44. data/_sass/bootflat/_toggle.scss +94 -0
  45. data/_sass/bootflat/_tooltip.scss +42 -0
  46. data/_sass/bootflat/_typography.scss +127 -0
  47. data/_sass/bootflat/_well.scss +43 -0
  48. data/_sass/bootstrap/_alerts.scss +73 -0
  49. data/_sass/bootstrap/_badges.scss +68 -0
  50. data/_sass/bootstrap/_breadcrumbs.scss +28 -0
  51. data/_sass/bootstrap/_button-groups.scss +244 -0
  52. data/_sass/bootstrap/_buttons.scss +168 -0
  53. data/_sass/bootstrap/_carousel.scss +270 -0
  54. data/_sass/bootstrap/_close.scss +36 -0
  55. data/_sass/bootstrap/_code.scss +69 -0
  56. data/_sass/bootstrap/_component-animations.scss +37 -0
  57. data/_sass/bootstrap/_dropdowns.scss +216 -0
  58. data/_sass/bootstrap/_forms.scss +617 -0
  59. data/_sass/bootstrap/_glyphicons.scss +307 -0
  60. data/_sass/bootstrap/_grid.scss +84 -0
  61. data/_sass/bootstrap/_input-groups.scss +171 -0
  62. data/_sass/bootstrap/_jumbotron.scss +54 -0
  63. data/_sass/bootstrap/_labels.scss +66 -0
  64. data/_sass/bootstrap/_list-group.scss +130 -0
  65. data/_sass/bootstrap/_media.scss +66 -0
  66. data/_sass/bootstrap/_mixins.scss +40 -0
  67. data/_sass/bootstrap/_modals.scss +150 -0
  68. data/_sass/bootstrap/_navbar.scss +662 -0
  69. data/_sass/bootstrap/_navs.scss +242 -0
  70. data/_sass/bootstrap/_normalize.scss +424 -0
  71. data/_sass/bootstrap/_pager.scss +54 -0
  72. data/_sass/bootstrap/_pagination.scss +89 -0
  73. data/_sass/bootstrap/_panels.scss +271 -0
  74. data/_sass/bootstrap/_popovers.scss +131 -0
  75. data/_sass/bootstrap/_print.scss +101 -0
  76. data/_sass/bootstrap/_progress-bars.scss +87 -0
  77. data/_sass/bootstrap/_responsive-embed.scss +35 -0
  78. data/_sass/bootstrap/_responsive-utilities.scss +179 -0
  79. data/_sass/bootstrap/_scaffolding.scss +161 -0
  80. data/_sass/bootstrap/_tables.scss +234 -0
  81. data/_sass/bootstrap/_theme.scss +291 -0
  82. data/_sass/bootstrap/_thumbnails.scss +38 -0
  83. data/_sass/bootstrap/_tooltip.scss +101 -0
  84. data/_sass/bootstrap/_type.scss +298 -0
  85. data/_sass/bootstrap/_utilities.scss +55 -0
  86. data/_sass/bootstrap/_variables.scss +874 -0
  87. data/_sass/bootstrap/_wells.scss +29 -0
  88. data/_sass/bootstrap/mixins/_alerts.scss +14 -0
  89. data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  90. data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
  91. data/_sass/bootstrap/mixins/_buttons.scss +65 -0
  92. data/_sass/bootstrap/mixins/_center-block.scss +7 -0
  93. data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
  94. data/_sass/bootstrap/mixins/_forms.scss +88 -0
  95. data/_sass/bootstrap/mixins/_gradients.scss +58 -0
  96. data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  97. data/_sass/bootstrap/mixins/_grid.scss +122 -0
  98. data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
  99. data/_sass/bootstrap/mixins/_image.scss +33 -0
  100. data/_sass/bootstrap/mixins/_labels.scss +12 -0
  101. data/_sass/bootstrap/mixins/_list-group.scss +32 -0
  102. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  103. data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  104. data/_sass/bootstrap/mixins/_opacity.scss +8 -0
  105. data/_sass/bootstrap/mixins/_pagination.scss +24 -0
  106. data/_sass/bootstrap/mixins/_panels.scss +24 -0
  107. data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
  108. data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
  109. data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  110. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  111. data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
  112. data/_sass/bootstrap/mixins/_size.scss +10 -0
  113. data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
  114. data/_sass/bootstrap/mixins/_table-row.scss +28 -0
  115. data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  116. data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
  117. data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  118. data/_sass/font-awesome/_animated.scss +34 -0
  119. data/_sass/font-awesome/_bordered-pulled.scss +25 -0
  120. data/_sass/font-awesome/_core.scss +12 -0
  121. data/_sass/font-awesome/_fixed-width.scss +6 -0
  122. data/_sass/font-awesome/_icons.scss +733 -0
  123. data/_sass/font-awesome/_larger.scss +13 -0
  124. data/_sass/font-awesome/_list.scss +19 -0
  125. data/_sass/font-awesome/_mixins.scss +60 -0
  126. data/_sass/font-awesome/_path.scss +15 -0
  127. data/_sass/font-awesome/_rotated-flipped.scss +20 -0
  128. data/_sass/font-awesome/_screen-reader.scss +5 -0
  129. data/_sass/font-awesome/_stacked.scss +20 -0
  130. data/_sass/font-awesome/_variables.scss +744 -0
  131. data/_sass/main.scss +28 -0
  132. data/assets/css/bootflat.css +2557 -0
  133. data/assets/css/bootstrap.min.css +5 -0
  134. data/assets/css/custom_styles.css +7 -0
  135. data/assets/css/font-awesome.min.css +4 -0
  136. data/assets/fonts/FontAwesome.otf +0 -0
  137. data/assets/fonts/fontawesome-webfont.eot +0 -0
  138. data/assets/fonts/fontawesome-webfont.svg +655 -0
  139. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  140. data/assets/fonts/fontawesome-webfont.woff +0 -0
  141. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  142. data/assets/img/glyphicons-halflings-white.png +0 -0
  143. data/assets/img/glyphicons-halflings.png +0 -0
  144. data/assets/js/bootstrap.min.js +7 -0
  145. data/assets/js/custom.js +9 -0
  146. data/assets/js/icheck.min.js +11 -0
  147. data/assets/js/jquery.fs.selecter.min.js +9 -0
  148. data/assets/js/jquery.fs.stepper.min.js +9 -0
  149. metadata +233 -0
@@ -0,0 +1,42 @@
1
+ // Variables
2
+ //------------------------------------------------------
3
+ $paper-background-color: $grass-dark !default;
4
+ $paper-background-color-hover: $grass-light !default;
5
+
6
+ $paper-font-color: $white !default;
7
+ $paper-font-color-disabled: $lightgray-dark !default;
8
+
9
+ // Exports
10
+ //------------------------------------------------------
11
+
12
+ @include exports("pager") {
13
+
14
+ /**
15
+ * pager
16
+ * --------------------------------------------------
17
+ */
18
+ .pager {
19
+
20
+ & li > a,
21
+ & li > span {
22
+ color: $paper-font-color;
23
+ background-color: $paper-background-color;
24
+ border-color: $paper-background-color;
25
+ }
26
+ & li > a:hover,
27
+ & li > a:focus {
28
+ background-color: $paper-background-color-hover;
29
+ border-color: $paper-background-color-hover;
30
+ }
31
+ & .disabled > a,
32
+ & .disabled > a:hover,
33
+ & .disabled > a:focus,
34
+ & .disabled > span {
35
+ color: $paper-font-color-disabled;
36
+ background-color: $paper-font-color;
37
+ border-color: $paper-font-color-disabled;
38
+ }
39
+ }
40
+ }
41
+
42
+
@@ -0,0 +1,59 @@
1
+ // Variables
2
+ //------------------------------------------------------
3
+ $pagination-background-color: $white !default;
4
+ $pagination-background-color-hover: $mediumgray-light !default;
5
+ $pagination-background-color-active: $grass-dark !default;
6
+
7
+ $pagination-font-color: $darkgray-dark !default;
8
+ $pagination-font-color-hover: $white !default;
9
+ $pagination-font-color-disabled: $lightgray-dark !default;
10
+
11
+ // Exports
12
+ //------------------------------------------------------
13
+
14
+ @include exports("pagination") {
15
+
16
+ /**
17
+ * pagination
18
+ * --------------------------------------------------
19
+ */
20
+ .pagination {
21
+
22
+ & > li > a,
23
+ & > li > span {
24
+ color: $pagination-font-color;
25
+ background-color: $pagination-background-color;
26
+ border-color: $pagination-background-color-hover;
27
+ }
28
+ & > li > a:hover,
29
+ & > li > span:hover,
30
+ & > li > a:focus,
31
+ & > li > span:focus {
32
+ color: $pagination-font-color-hover;
33
+ background-color: $pagination-background-color-hover;
34
+ border-color: $pagination-background-color-hover;
35
+ }
36
+ & > .active > a,
37
+ & > .active > span,
38
+ & > .active > a:hover,
39
+ & > .active > span:hover,
40
+ & > .active > a:focus,
41
+ & > .active > span:focus {
42
+ color: $pagination-font-color-hover;
43
+ background-color: $pagination-background-color-active;
44
+ border-color: $pagination-background-color-active;
45
+ }
46
+ & > .disabled > span,
47
+ & > .disabled > span:hover,
48
+ & > .disabled > span:focus,
49
+ & > .disabled > a,
50
+ & > .disabled > a:hover,
51
+ & > .disabled > a:focus {
52
+ color: $pagination-font-color-disabled;
53
+ background-color: $pagination-background-color;
54
+ border-color: $pagination-background-color-hover;
55
+ }
56
+ }
57
+ }
58
+
59
+
@@ -0,0 +1,169 @@
1
+ // Variables
2
+ //------------------------------------------------------
3
+ $panel-normal: $lightgray-dark !default;
4
+ $panel-default: $white !default;
5
+ $panel-primary: $aqua-dark !default;
6
+ $panel-success: $grass-dark !default;
7
+ $panel-danger: $grapefruit-dark !default;
8
+ $panel-warning: $sunflower-dark !default;
9
+ $panel-info: $mint-dark !default;
10
+
11
+ $panel-font-color: $darkgray-dark !default;
12
+
13
+ $panel-background-color: $white !default;
14
+ $panel-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default;
15
+ $panel-radius: 4px !default;
16
+
17
+
18
+ // Exports
19
+ //------------------------------------------------------
20
+
21
+ @include exports("panel") {
22
+
23
+ /**
24
+ * panel
25
+ * --------------------------------------------------
26
+ */
27
+ .panel {
28
+ background-color: $panel-background-color;
29
+ border: none;
30
+ @include radius($type: border-radius, $value: $panel-radius);
31
+ @include box-shadow($value: $panel-shadow);
32
+
33
+ & .list-group {
34
+ @include box-shadow($value: none);
35
+ }
36
+ & .list-group-item:first-child {
37
+ border-top: 1px solid $panel-normal;
38
+ }
39
+
40
+ &-heading {
41
+ @include radius($type: border-radius, $value: $panel-radius $panel-radius 0 0);
42
+ }
43
+ &-title {
44
+ font-size: 14px;
45
+ color: $panel-font-color;
46
+ font-weight: normal;
47
+ }
48
+ &-footer {
49
+ background-color: $panel-normal;
50
+ border-top-color: $panel-normal;
51
+ @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius);
52
+ }
53
+
54
+ @at-root &-default {
55
+ border-color: $panel-normal;
56
+ & > .panel-heading {
57
+ color: $panel-font-color;
58
+ background-color: $panel-normal;
59
+ border-color: $panel-normal;
60
+ }
61
+ }
62
+ @at-root &-primary {
63
+ border-color: $panel-primary;
64
+ & > .panel-heading {
65
+ color: $panel-default;
66
+ background-color: $panel-primary;
67
+ border-color: $panel-primary;
68
+ }
69
+ }
70
+ @at-root &-success {
71
+ border-color: $panel-success;
72
+ & > .panel-heading {
73
+ color: $panel-default;
74
+ background-color: $panel-success;
75
+ border-color: $panel-success;
76
+ }
77
+ }
78
+ @at-root &-info {
79
+ border-color: $panel-info;
80
+ & > .panel-heading {
81
+ color: $panel-default;
82
+ background-color: $panel-info;
83
+ border-color: $panel-info;
84
+ }
85
+ }
86
+ @at-root &-warning {
87
+ border-color: $panel-warning;
88
+ & > .panel-heading {
89
+ color: $panel-default;
90
+ background-color: $panel-warning;
91
+ border-color: $panel-warning;
92
+ }
93
+ }
94
+ @at-root &-danger {
95
+ border-color: $panel-danger;
96
+ & > .panel-heading {
97
+ color: $panel-default;
98
+ background-color: $panel-danger;
99
+ border-color: $panel-danger;
100
+ }
101
+ }
102
+
103
+ @at-root &-primary > &-heading > &-title,
104
+ &-success > &-heading > &-title,
105
+ &-info > &-heading > &-title,
106
+ &-warning > &-heading > &-title,
107
+ &-danger > &-heading > &-title {
108
+ color: $panel-default;
109
+ }
110
+
111
+ & > .list-group:first-child .list-group-item:first-child,
112
+ & > .table:first-child,
113
+ & > .table-responsive:first-child > .table:first-child {
114
+ @include radius($type: border-radius, $value: $panel-radius $panel-radius 0 0);
115
+ }
116
+ & > .list-group:last-child .list-group-item:last-child {
117
+ @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius);
118
+ }
119
+ & > .table:first-child > thead:first-child > tr:first-child td:first-child,
120
+ & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
121
+ & > .table:first-child > tbody:first-child > tr:first-child td:first-child,
122
+ & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
123
+ & > .table:first-child > thead:first-child > tr:first-child th:first-child,
124
+ & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
125
+ & > .table:first-child > tbody:first-child > tr:first-child th:first-child,
126
+ & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
127
+ @include radius($type: border-radius, $value: $panel-radius 0 0 0);
128
+ }
129
+ & > .table:first-child > thead:first-child > tr:first-child td:last-child,
130
+ & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
131
+ & > .table:first-child > tbody:first-child > tr:first-child td:last-child,
132
+ & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
133
+ & > .table:first-child > thead:first-child > tr:first-child th:last-child,
134
+ & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
135
+ & > .table:first-child > tbody:first-child > tr:first-child th:last-child,
136
+ & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
137
+ @include radius($type: border-radius, $value: 0 $panel-radius 0 0);
138
+ }
139
+ & > .table:last-child,
140
+ & > .table-responsive:last-child > .table:last-child {
141
+ @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius);
142
+ }
143
+ & > .table:last-child > tbody:last-child > tr:last-child td:first-child,
144
+ & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
145
+ & > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
146
+ & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
147
+ & > .table:last-child > tbody:last-child > tr:last-child th:first-child,
148
+ & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
149
+ & > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
150
+ & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
151
+ @include radius($type: border-radius, $value: 0 0 0 $panel-radius);
152
+ }
153
+ & > .table:last-child > tbody:last-child > tr:last-child td:last-child,
154
+ & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
155
+ & > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
156
+ & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
157
+ & > .table:last-child > tbody:last-child > tr:last-child th:last-child,
158
+ & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
159
+ & > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
160
+ & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
161
+ @include radius($type: border-radius, $value: 0 0 $panel-radius 0);
162
+ }
163
+ & > &-body + .table,
164
+ & > &-body + .table-responsive {
165
+ border-top-color: $panel-normal;
166
+ }
167
+ }
168
+
169
+ }
@@ -0,0 +1,45 @@
1
+ // Variables
2
+ //------------------------------------------------------
3
+ $pill-background-color: $aqua-dark !default;
4
+ $pill-background-color-hover: $lightgray-dark !default;
5
+ $pill-font-color: $darkgray-dark !default;
6
+ $pill-font-color-active: $white !default;
7
+
8
+
9
+ // Exports
10
+ //------------------------------------------------------
11
+
12
+ @include exports("pill") {
13
+
14
+ /**
15
+ * pill
16
+ * --------------------------------------------------
17
+ */
18
+ .nav-pills {
19
+ & > li.active > a,
20
+ & > li.active > a:hover,
21
+ & > li.active > a:focus {
22
+ color: $pill-font-color-active;
23
+ background-color: $pill-background-color;
24
+ }
25
+ & > li > a {
26
+ color: $pill-background-color;
27
+ }
28
+ & > li > a:hover {
29
+ color: $pill-font-color;
30
+ background-color: $pill-background-color-hover;
31
+ }
32
+ & > .active > a > .badge {
33
+ color: $pill-background-color;
34
+ }
35
+ & .open > a,
36
+ & .open > a:focus,
37
+ & .open > a:hover {
38
+ color: $pill-font-color;
39
+ background-color: $pill-background-color-hover;
40
+ }
41
+ }
42
+
43
+ }
44
+
45
+
@@ -0,0 +1,50 @@
1
+ // Variables
2
+ //------------------------------------------------------
3
+ $popover-background-color: $darkgray-dark !default;
4
+ $popover-font-color: $white !default;
5
+ $popover-title-font-color: $mediumgray-dark !default;
6
+
7
+
8
+ // Exports
9
+ //------------------------------------------------------
10
+
11
+ @include exports("popover") {
12
+
13
+ /**
14
+ * popover
15
+ * --------------------------------------------------
16
+ */
17
+
18
+ .popover {
19
+ background-color: $popover-background-color;
20
+ color: $popover-font-color;
21
+ border-color: $popover-background-color;
22
+
23
+ @at-root &-title {
24
+ padding-bottom: 0;
25
+ font-weight: bold;
26
+ color: $popover-title-font-color;
27
+ background-color: transparent;
28
+ border-bottom: none;
29
+ }
30
+ &.top .arrow,
31
+ &.top .arrow:after {
32
+ border-top-color: $popover-background-color;
33
+ }
34
+ &.right .arrow,
35
+ &.right .arrow:after {
36
+ border-right-color: $popover-background-color;
37
+ }
38
+ &.bottom .arrow,
39
+ &.bottom .arrow:after {
40
+ border-bottom-color: $popover-background-color;
41
+ }
42
+ &.left .arrow,
43
+ &.left .arrow:after {
44
+ border-left-color: $popover-background-color;
45
+ }
46
+ }
47
+
48
+ }
49
+
50
+
@@ -0,0 +1,139 @@
1
+ // Variables
2
+ //------------------------------------------------------
3
+ $pricing-primary: $aqua-light !default;
4
+ $pricing-success: $grass-light !default;
5
+ $pricing-warning: $sunflower-light !default;
6
+
7
+ $pricing-foot-background-color: $lightgray-dark !default;
8
+ $pricing-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default;
9
+ $pricing-shadow-active: 0 0 8px rgba(0, 0, 0, .6) !default;
10
+ $pricing-radius: 4px !default;
11
+
12
+
13
+
14
+
15
+ // Exports
16
+ //------------------------------------------------------
17
+
18
+ @include exports("pricing") {
19
+
20
+ /**
21
+ * pricing
22
+ * --------------------------------------------------
23
+ */
24
+ .pricing {
25
+
26
+ & ul {
27
+ list-style: none;
28
+ padding: 0;
29
+ }
30
+
31
+ & .unit {
32
+ position: relative;
33
+ display: inline-block;
34
+ text-align: center;
35
+ min-width: 250px;
36
+ @include radius($type: border-radius, $value: $pricing-radius);
37
+ @include box-shadow($value: $pricing-shadow);
38
+
39
+ &.active {
40
+ top: 5px;
41
+ margin-left: -36px;
42
+ margin-right: -36px;
43
+ z-index: 1;
44
+ @include box-shadow($value: $pricing-shadow-active);
45
+
46
+ & .price-title h3 {
47
+ font-size: 40px;
48
+ }
49
+ }
50
+ }
51
+
52
+ @media screen and (max-width: 767px) {
53
+ & .unit {
54
+ display: block;
55
+ margin-bottom: 20px;
56
+
57
+ &.active {
58
+ top: 0;
59
+ margin-left: 0;
60
+ margin-right: 0;
61
+
62
+ & .price-title h3 {
63
+ font-size: 30px;
64
+ }
65
+ }
66
+ }
67
+ }
68
+
69
+ & .price-title {
70
+ padding: 20px 20px 10px;
71
+ @include radius($type: border-top-left-radius, $value: $pricing-radius);
72
+ @include radius($type: border-top-right-radius, $value: $pricing-radius);
73
+ color: #FFF;
74
+
75
+ & h3,
76
+ & h3 > p {
77
+ margin: 0;
78
+ }
79
+ }
80
+
81
+ & .price-body {
82
+ padding: 20px 20px 10px;
83
+
84
+ & ul {
85
+ padding-top: 10px;
86
+ }
87
+
88
+ & li {
89
+ margin-bottom: 10px;
90
+ }
91
+
92
+ & h4 {
93
+ margin: 0;
94
+ }
95
+ }
96
+
97
+ & .price-foot {
98
+ padding: 20px;
99
+ @include radius($type: border-bottom-left-radius, $value: $pricing-radius);
100
+ @include radius($type: border-bottom-right-radius, $value: $pricing-radius);
101
+
102
+ background-color: $pricing-foot-background-color;
103
+ }
104
+
105
+ & .price-primary {
106
+ & .price-title {
107
+ background-color: $pricing-primary;
108
+ }
109
+ & .price-body {
110
+ background-color: lighten($pricing-primary, 30%);
111
+ & ul {
112
+ border-top: 1px solid lighten($pricing-primary, 20%);
113
+ }
114
+ }
115
+ }
116
+ & .price-success {
117
+ & .price-title {
118
+ background-color: $pricing-success;
119
+ }
120
+ & .price-body {
121
+ background-color: lighten($pricing-success, 30%);
122
+ & ul {
123
+ border-top: 1px solid lighten($pricing-success, 20%);
124
+ }
125
+ }
126
+ }
127
+ & .price-warning {
128
+ & .price-title {
129
+ background-color: $pricing-warning;
130
+ }
131
+ & .price-body {
132
+ background-color: lighten($pricing-warning, 30%);
133
+ & ul {
134
+ border-top: 1px solid lighten($pricing-warning, 20%);
135
+ }
136
+ }
137
+ }
138
+ }
139
+ }