furatto 0.0.1

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.
Files changed (118) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +29 -0
  5. data/Rakefile +1 -0
  6. data/furatto.gemspec +21 -0
  7. data/lib/furatto.rb +16 -0
  8. data/lib/furatto/engine.rb +6 -0
  9. data/lib/furatto/version.rb +3 -0
  10. data/vendor/assets/fonts/fontawesome/FontAwesome.otf +0 -0
  11. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  12. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.svg +399 -0
  13. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
  14. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  15. data/vendor/assets/fonts/meteocons-webfont.eot +0 -0
  16. data/vendor/assets/fonts/meteocons-webfont.svg +81 -0
  17. data/vendor/assets/fonts/meteocons-webfont.ttf +0 -0
  18. data/vendor/assets/fonts/meteocons-webfont.woff +0 -0
  19. data/vendor/assets/images/icheck/aero.png +0 -0
  20. data/vendor/assets/images/icheck/aero@2x.png +0 -0
  21. data/vendor/assets/images/icheck/blue.png +0 -0
  22. data/vendor/assets/images/icheck/blue@2x.png +0 -0
  23. data/vendor/assets/images/icheck/flat.png +0 -0
  24. data/vendor/assets/images/icheck/flat@2x.png +0 -0
  25. data/vendor/assets/images/icheck/green.png +0 -0
  26. data/vendor/assets/images/icheck/green@2x.png +0 -0
  27. data/vendor/assets/images/icheck/grey.png +0 -0
  28. data/vendor/assets/images/icheck/grey@2x.png +0 -0
  29. data/vendor/assets/images/icheck/orange.png +0 -0
  30. data/vendor/assets/images/icheck/orange@2x.png +0 -0
  31. data/vendor/assets/images/icheck/pink.png +0 -0
  32. data/vendor/assets/images/icheck/pink@2x.png +0 -0
  33. data/vendor/assets/images/icheck/purple.png +0 -0
  34. data/vendor/assets/images/icheck/purple@2x.png +0 -0
  35. data/vendor/assets/images/icheck/red.png +0 -0
  36. data/vendor/assets/images/icheck/red@2x.png +0 -0
  37. data/vendor/assets/images/icheck/yellow.png +0 -0
  38. data/vendor/assets/images/icheck/yellow@2x.png +0 -0
  39. data/vendor/assets/images/icons/customize-icon150.png +0 -0
  40. data/vendor/assets/images/icons/flexible-icon.png +0 -0
  41. data/vendor/assets/images/icons/github-128-black.png +0 -0
  42. data/vendor/assets/images/icons/iphone-icon150.png +0 -0
  43. data/vendor/assets/images/icons/lock-icon128.png +0 -0
  44. data/vendor/assets/images/icons/rocket-icon128.png +0 -0
  45. data/vendor/assets/images/icons/rocket-icon150.png +0 -0
  46. data/vendor/assets/images/icons/screen-icon.png +0 -0
  47. data/vendor/assets/images/icons/screens-icon.png +0 -0
  48. data/vendor/assets/images/icons/screens2-icon.png +0 -0
  49. data/vendor/assets/images/next.png +0 -0
  50. data/vendor/assets/images/previous.png +0 -0
  51. data/vendor/assets/images/themes.gif +0 -0
  52. data/vendor/assets/images/toggle.png +0 -0
  53. data/vendor/assets/javascripts/dropdown.js +169 -0
  54. data/vendor/assets/javascripts/furatto.js +15 -0
  55. data/vendor/assets/javascripts/jpanel.js +547 -0
  56. data/vendor/assets/javascripts/jquery.avgrund.js +127 -0
  57. data/vendor/assets/javascripts/jquery.dropkick-1.0.0.js +400 -0
  58. data/vendor/assets/javascripts/jquery.icheck.js +462 -0
  59. data/vendor/assets/javascripts/jquery.tagsinput.js +354 -0
  60. data/vendor/assets/javascripts/jquery.toolbar.js +242 -0
  61. data/vendor/assets/javascripts/legacy.js +140 -0
  62. data/vendor/assets/javascripts/picker.date.js +957 -0
  63. data/vendor/assets/javascripts/picker.js +785 -0
  64. data/vendor/assets/javascripts/picker.time.js +651 -0
  65. data/vendor/assets/javascripts/rainbow-custom.min.js +13 -0
  66. data/vendor/assets/javascripts/responsive-tables.js +67 -0
  67. data/vendor/assets/javascripts/responsiveslides.js +391 -0
  68. data/vendor/assets/javascripts/tooltip.js +353 -0
  69. data/vendor/assets/stylesheets/furatto.scss +101 -0
  70. data/vendor/assets/stylesheets/furatto/_alerts.scss +81 -0
  71. data/vendor/assets/stylesheets/furatto/_base.scss +187 -0
  72. data/vendor/assets/stylesheets/furatto/_buttons.scss +100 -0
  73. data/vendor/assets/stylesheets/furatto/_code.scss +66 -0
  74. data/vendor/assets/stylesheets/furatto/_date_picker.date.scss +266 -0
  75. data/vendor/assets/stylesheets/furatto/_date_picker.scss +158 -0
  76. data/vendor/assets/stylesheets/furatto/_date_picker.time.scss +122 -0
  77. data/vendor/assets/stylesheets/furatto/_dropdown.scss +261 -0
  78. data/vendor/assets/stylesheets/furatto/_font-awesome-ie7.scss +1953 -0
  79. data/vendor/assets/stylesheets/furatto/_fonts.scss +614 -0
  80. data/vendor/assets/stylesheets/furatto/_footer.scss +44 -0
  81. data/vendor/assets/stylesheets/furatto/_forms.scss +290 -0
  82. data/vendor/assets/stylesheets/furatto/_grid.scss +56 -0
  83. data/vendor/assets/stylesheets/furatto/_images.scss +44 -0
  84. data/vendor/assets/stylesheets/furatto/_labels.scss +43 -0
  85. data/vendor/assets/stylesheets/furatto/_layout.scss +0 -0
  86. data/vendor/assets/stylesheets/furatto/_left_navbar.scss +100 -0
  87. data/vendor/assets/stylesheets/furatto/_mixins.scss +283 -0
  88. data/vendor/assets/stylesheets/furatto/_modal.scss +103 -0
  89. data/vendor/assets/stylesheets/furatto/_nav.scss +106 -0
  90. data/vendor/assets/stylesheets/furatto/_navbar.scss +187 -0
  91. data/vendor/assets/stylesheets/furatto/_pagination.scss +158 -0
  92. data/vendor/assets/stylesheets/furatto/_responsive-1200px-min.scss +21 -0
  93. data/vendor/assets/stylesheets/furatto/_responsive-767px-max.scss +82 -0
  94. data/vendor/assets/stylesheets/furatto/_responsive-768px-979px.scss +23 -0
  95. data/vendor/assets/stylesheets/furatto/_responsive_navbar.scss +184 -0
  96. data/vendor/assets/stylesheets/furatto/_responsive_tables.scss +28 -0
  97. data/vendor/assets/stylesheets/furatto/_responsiveslides.scss +202 -0
  98. data/vendor/assets/stylesheets/furatto/_select.scss +191 -0
  99. data/vendor/assets/stylesheets/furatto/_tables.scss +90 -0
  100. data/vendor/assets/stylesheets/furatto/_tags.scss +107 -0
  101. data/vendor/assets/stylesheets/furatto/_toolbars.scss +116 -0
  102. data/vendor/assets/stylesheets/furatto/_tooltips.scss +143 -0
  103. data/vendor/assets/stylesheets/furatto/_typography.scss +266 -0
  104. data/vendor/assets/stylesheets/furatto/_variables.scss +628 -0
  105. data/vendor/assets/stylesheets/furatto/_vrt_navbar.scss +61 -0
  106. data/vendor/assets/stylesheets/furatto/icheck/_aero.scss +64 -0
  107. data/vendor/assets/stylesheets/furatto/icheck/_all.scss +20 -0
  108. data/vendor/assets/stylesheets/furatto/icheck/_blue.scss +64 -0
  109. data/vendor/assets/stylesheets/furatto/icheck/_flat.scss +64 -0
  110. data/vendor/assets/stylesheets/furatto/icheck/_green.scss +64 -0
  111. data/vendor/assets/stylesheets/furatto/icheck/_grey.scss +64 -0
  112. data/vendor/assets/stylesheets/furatto/icheck/_orange.scss +64 -0
  113. data/vendor/assets/stylesheets/furatto/icheck/_pink.scss +64 -0
  114. data/vendor/assets/stylesheets/furatto/icheck/_purple.scss +64 -0
  115. data/vendor/assets/stylesheets/furatto/icheck/_red.scss +64 -0
  116. data/vendor/assets/stylesheets/furatto/icheck/_yellow.scss +64 -0
  117. data/vendor/assets/stylesheets/normalize.scss +403 -0
  118. metadata +162 -0
@@ -0,0 +1,21 @@
1
+ /*------------------------------------*\
2
+ $RESPONSIVE - 1200
3
+ \*------------------------------------*/
4
+ /**
5
+ * Responsive structural styling based on bootstrap.
6
+ * http://twitter.github.io/bootstrap/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ @media (min-width: 1200px) {
12
+
13
+ // Fixed grid
14
+ @include grid-core($gridColumnWidth1200, $gridGutterWidth1200);
15
+
16
+ // Fluid grid
17
+ @include grid-fluid($fluidGridColumnWidth1200, $fluidGridGutterWidth1200);
18
+
19
+ // Input grid
20
+ @include grid-input($gridColumnWidth1200, $gridGutterWidth1200);
21
+ }
@@ -0,0 +1,82 @@
1
+ /*------------------------------------*\
2
+ $RESPONSIVE - 767
3
+ \*------------------------------------*/
4
+ /**
5
+ * Responsive structural styling based on bootstrap.
6
+ * http://twitter.github.io/bootstrap/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ @media (max-width: 767px) {
12
+
13
+ // Padding to set content in a bit
14
+ body {
15
+ padding-left: 20px;
16
+ padding-right: 20px;
17
+ }
18
+ // Negative indent the now static "fixed" navbar
19
+ .navbar-fixed-top,
20
+ .navbar-fixed-bottom,
21
+ .navbar-static-top {
22
+ /*margin-left: -20px;*/
23
+ margin-right: -20px;
24
+ }
25
+ // Remove padding on container given explicit padding set on body
26
+ .container-fluid {
27
+ padding: 0;
28
+ }
29
+
30
+ // TYPOGRAPHY
31
+ // ----------
32
+ // Reset horizontal dl
33
+ .dl-horizontal {
34
+ dt {
35
+ float: none;
36
+ clear: none;
37
+ width: auto;
38
+ text-align: left;
39
+ }
40
+ dd {
41
+ margin-left: 0;
42
+ }
43
+ }
44
+
45
+ // GRID & CONTAINERS
46
+ // -----------------
47
+ // Remove width from containers
48
+ .container {
49
+ width: auto;
50
+ }
51
+ // Fluid rows
52
+ .row-fluid {
53
+ width: 100%;
54
+ }
55
+ // Undo negative margin on rows and thumbnails
56
+ .row,
57
+ .thumbnails {
58
+ margin-left: 0;
59
+ }
60
+ .thumbnails > li {
61
+ float: none;
62
+ margin-left: 0; // Reset the default margin for all li elements when no .span* classes are present
63
+ }
64
+ // Make all grid-sized elements block level again
65
+ [class*="span"],
66
+ .uneditable-input[class*="span"], // Makes uneditable inputs full-width when using grid sizing
67
+ .row-fluid [class*="span"] {
68
+ float: none;
69
+ display: block;
70
+ width: 100%;
71
+ margin-left: 0;
72
+ @include box-sizing(border-box);
73
+ }
74
+ .span12,
75
+ .row-fluid .span12 {
76
+ width: 100%;
77
+ @include box-sizing(border-box);
78
+ }
79
+ .row-fluid [class*="offset"]:first-child {
80
+ margin-left: 0;
81
+ }
82
+ }
@@ -0,0 +1,23 @@
1
+ /*------------------------------------*\
2
+ $RESPONSIVE - 767/979
3
+ \*------------------------------------*/
4
+ /**
5
+ * Responsive structural styling based on bootstrap.
6
+ * http://twitter.github.io/bootstrap/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ @media (min-width: 768px) and (max-width: 979px) {
12
+
13
+ // Fixed grid
14
+ @include grid-core($gridColumnWidth768, $gridGutterWidth768);
15
+
16
+ // Fluid grid
17
+ @include grid-fluid($fluidGridColumnWidth768, $fluidGridGutterWidth768);
18
+
19
+ // Input grid
20
+ @include grid-input($gridColumnWidth768, $gridGutterWidth768);
21
+
22
+ // No need to reset .thumbnails here since it's the same $gridGutterWidth
23
+ }
@@ -0,0 +1,184 @@
1
+ /*------------------------------------*\
2
+ $RESPONSIVE NAVBAR
3
+ \*------------------------------------*/
4
+ /**
5
+ * Responsive navbar strcucture.
6
+ *
7
+ * Designed and built @kurenn
8
+ */
9
+
10
+ //Tablets and below
11
+ //------------------------------------
12
+
13
+ @media (max-width: $nav-bar-collapse-width) {
14
+
15
+ /*Unfix top navbar*/
16
+ /*Remove any padding from the body */
17
+
18
+ body {
19
+ padding: 0px;
20
+ }
21
+
22
+ .navbar {
23
+ .menu-trigger {
24
+ float: left;
25
+ display: block;
26
+ /*width: 18px;*/
27
+ /*padding: 7px 10px;*/
28
+ margin-left: 5px;
29
+ margin-right: 5px;
30
+ color: $navbar-text;
31
+ font-size: 50px;
32
+ line-height: $base-line-height;
33
+ padding-top: $base-line-height - 5;
34
+ margin-bottom: 7px; /*compensate the navbar height*/
35
+ }
36
+ }
37
+
38
+ .navbar {
39
+ .navbar-inner {
40
+ padding-left: 0px;
41
+ }
42
+ }
43
+
44
+ //Unfix the navbar
45
+ .navbar-fixed-top,
46
+ .navbar-fixed-bottom {
47
+ position: static;
48
+ }
49
+
50
+ .navbar-fixed-bottom {
51
+ margin-top: $base-line-height;
52
+ }
53
+
54
+ .navbar .container {
55
+ width: auto;
56
+ padding: 0;
57
+ }
58
+
59
+ // Account for brand name
60
+ .navbar .nav .brand {
61
+ display: block;
62
+ /*padding-left: 10px;*/
63
+ /*padding-right: 10px;*/
64
+ /*margin: 0 0 0 -5px;*/
65
+ }
66
+
67
+ // COLLAPSIBLE NAVBAR
68
+ // ------------------
69
+ // Nav collapse clears brand
70
+ .nav-collapse {
71
+ clear: both;
72
+ }
73
+ // Block-level the nav
74
+ .nav-collapse .nav {
75
+ float: none;
76
+ margin: 0 0 ($base-line-height / 2);
77
+ display: none;
78
+ }
79
+ .nav-collapse .nav > li {
80
+ float: none;
81
+ }
82
+
83
+ .nav-collapse .nav > li > a {
84
+ margin-bottom: 2px;
85
+ }
86
+ .nav-collapse .nav > .divider-vertical {
87
+ display: none;
88
+ }
89
+ .nav-collapse .nav .nav-header {
90
+ color: $navbar-text;
91
+ text-shadow: none;
92
+ }
93
+ // Nav and dropdown links in navbar
94
+ .nav-collapse .nav > li > a,
95
+ .nav-collapse .dropdown-menu a {
96
+ padding: 9px 15px;
97
+ font-weight: bold;
98
+ color: $navbar-text;
99
+ /*.border-radius(3px);*/
100
+ }
101
+
102
+ // Buttons
103
+ .nav-collapse .btn {
104
+ padding: 4px 10px 4px;
105
+ font-weight: normal;
106
+ /*.border-radius(@baseBorderRadius);*/
107
+ }
108
+ .nav-collapse .dropdown-menu li + li a {
109
+ margin-bottom: 2px;
110
+ }
111
+ .nav-collapse .nav > li > a:hover,
112
+ .nav-collapse .nav > li > a:focus,
113
+ .nav-collapse .dropdown-menu a:hover,
114
+ .nav-collapse .dropdown-menu a:focus {
115
+ background-color: $navbar-bg-color;
116
+ }
117
+
118
+ .navbar-inverse .nav-collapse .nav > li > a,
119
+ .navbar-inverse .nav-collapse .dropdown-menu a {
120
+ /*color: @navbarInverseLinkColor;*/
121
+ }
122
+ .navbar-inverse .nav-collapse .nav > li > a:hover,
123
+ .navbar-inverse .nav-collapse .nav > li > a:focus,
124
+ .navbar-inverse .nav-collapse .dropdown-menu a:hover,
125
+ .navbar-inverse .nav-collapse .dropdown-menu a:focus {
126
+ /*background-color: @navbarInverseBackground;*/
127
+ }
128
+ // Buttons in the navbar
129
+ .nav-collapse.in .btn-group {
130
+ margin-top: 5px;
131
+ padding: 0;
132
+ }
133
+
134
+ // Dropdowns in the navbar
135
+ .nav-collapse .dropdown-menu {
136
+ position: static;
137
+ top: auto;
138
+ left: auto;
139
+ float: none;
140
+ display: none;
141
+ max-width: none;
142
+ margin: 0 15px;
143
+ padding: 0;
144
+ background-color: transparent;
145
+ border: none;
146
+ /*.border-radius(0);*/
147
+ /*.box-shadow(none);*/
148
+ }
149
+ .nav-collapse .open > .dropdown-menu {
150
+ display: block;
151
+ }
152
+
153
+ .nav-collapse .dropdown-menu:before,
154
+ .nav-collapse .dropdown-menu:after {
155
+ display: none;
156
+ }
157
+ .nav-collapse .dropdown-menu .divider {
158
+ display: none;
159
+ }
160
+ .nav-collapse .nav > li > .dropdown-menu {
161
+ &:before,
162
+ &:after {
163
+ display: none;
164
+ }
165
+ }
166
+
167
+ //STATIC NAVBAR
168
+ //--------------------------------------
169
+ .navbar-static .navbar-inner {
170
+ padding-left: 10px;
171
+ padding-right: 10px;
172
+ }
173
+
174
+ }
175
+
176
+ @media (min-width: $nav-bar-collapse-width-desktop) {
177
+
178
+ // Required to make the collapsing navbar work on regular desktops
179
+ .nav-collapse.collapse {
180
+ height: auto !important;
181
+ overflow: visible !important;
182
+ }
183
+
184
+ }
@@ -0,0 +1,28 @@
1
+ /*------------------------------------*\
2
+ $RESPONSIVE TABLES
3
+ \*------------------------------------*/
4
+ /**
5
+ * Responsive tables strcucture from Zurb Foundation.
6
+ * http://zurb.com/playground/responsive-tables
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ @media only screen and (max-width: 767px) {
12
+
13
+ table.responsive { margin-bottom: 0; }
14
+
15
+ .pinned { position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
16
+ .pinned table { border-right: none; border-left: none; width: 100%; }
17
+ .pinned table th, .pinned table td { white-space: nowrap; }
18
+ .pinned td:last-child { border-bottom: 0; }
19
+
20
+ div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
21
+ div.table-wrapper div.scrollable { margin-left: 35%; }
22
+ div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }
23
+
24
+ table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; }
25
+ table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; }
26
+
27
+ }
28
+
@@ -0,0 +1,202 @@
1
+ /*------------------------------------*\
2
+ $RESPONSIVE SLIDER
3
+ \*------------------------------------*/
4
+ /**
5
+ * Responsive slider strcucture.
6
+ * http://responsiveslides.com/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ .rslides {
12
+ position: relative;
13
+ list-style: none;
14
+ overflow: hidden;
15
+ width: 100%;
16
+ padding: 0;
17
+ margin: 0;
18
+ }
19
+
20
+ .rslides li {
21
+ -webkit-backface-visibility: hidden;
22
+ position: absolute;
23
+ display: none;
24
+ width: 100%;
25
+ left: 0;
26
+ top: 0;
27
+ }
28
+
29
+ .rslides li:first-child {
30
+ position: relative;
31
+ display: block;
32
+ float: left;
33
+ }
34
+
35
+ .rslides img {
36
+ display: block;
37
+ height: auto;
38
+ float: left;
39
+ width: 100%;
40
+ border: 0;
41
+ }
42
+
43
+ .rslides {
44
+ margin: 0 auto;
45
+ }
46
+
47
+ .rslides_container {
48
+ /*margin-bottom: 50px;*/
49
+ position: relative;
50
+ float: left;
51
+ /*width: 100%;*/
52
+ }
53
+
54
+ .centered-btns_nav {
55
+ z-index: 3;
56
+ position: absolute;
57
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
58
+ top: 50%;
59
+ left: 0;
60
+ opacity: 0.7;
61
+ text-indent: -9999px;
62
+ overflow: hidden;
63
+ text-decoration: none;
64
+ height: 61px;
65
+ width: 38px;
66
+ background: transparent url(/assets/themes.gif) no-repeat left top;
67
+ margin-top: -45px;
68
+ }
69
+
70
+ .centered-btns_nav:active {
71
+ opacity: 1.0;
72
+ }
73
+
74
+ .centered-btns_nav.next {
75
+ left: auto;
76
+ background-position: right top;
77
+ right: 0;
78
+ }
79
+
80
+ .transparent-btns_nav {
81
+ z-index: 3;
82
+ position: absolute;
83
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
84
+ top: 0;
85
+ left: 0;
86
+ display: block;
87
+ background: $white; /* Fix for IE6-9 */
88
+ opacity: 0;
89
+ filter: alpha(opacity=1);
90
+ width: 48%;
91
+ text-indent: -9999px;
92
+ overflow: hidden;
93
+ height: 91%;
94
+ }
95
+
96
+ .transparent-btns_nav.next {
97
+ left: auto;
98
+ right: 0;
99
+ }
100
+
101
+ .large-btns_nav {
102
+ z-index: 3;
103
+ position: absolute;
104
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
105
+ opacity: 0.6;
106
+ text-indent: -9999px;
107
+ overflow: hidden;
108
+ top: 0;
109
+ bottom: 0;
110
+ left: 0;
111
+ background: #000 url(/assets/themes.gif) no-repeat left 50%;
112
+ width: 38px;
113
+ }
114
+
115
+ .large-btns_nav:active {
116
+ opacity: 1.0;
117
+ }
118
+
119
+ .large-btns_nav.next {
120
+ left: auto;
121
+ background-position: right 50%;
122
+ right: 0;
123
+ }
124
+
125
+ .centered-btns_nav:focus,
126
+ .transparent-btns_nav:focus,
127
+ .large-btns_nav:focus {
128
+ outline: none;
129
+ }
130
+
131
+ .centered-btns_tabs,
132
+ .transparent-btns_tabs,
133
+ .large-btns_tabs {
134
+ margin-top: 10px;
135
+ text-align: center;
136
+ }
137
+
138
+ .centered-btns_tabs li,
139
+ .transparent-btns_tabs li,
140
+ .large-btns_tabs li {
141
+ display: inline;
142
+ float: none;
143
+ _float: left;
144
+ *float: left;
145
+ margin-right: 5px;
146
+ }
147
+
148
+ .centered-btns_tabs a,
149
+ .transparent-btns_tabs a,
150
+ .large-btns_tabs a {
151
+ text-indent: -9999px;
152
+ overflow: hidden;
153
+ -webkit-border-radius: 15px;
154
+ -moz-border-radius: 15px;
155
+ border-radius: 15px;
156
+ background: #ccc;
157
+ background: rgba(0,0,0, .2);
158
+ display: inline-block;
159
+ _display: block;
160
+ *display: block;
161
+ -webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
162
+ -moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
163
+ box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
164
+ width: 9px;
165
+ height: 9px;
166
+ }
167
+
168
+ .centered-btns_here a,
169
+ .transparent-btns_here a,
170
+ .large-btns_here a {
171
+ background: #222;
172
+ background: rgba(0,0,0, .8);
173
+ }
174
+
175
+ .rslides .caption {
176
+ display: block;
177
+ position: absolute;
178
+ z-index: 2;
179
+ text-shadow: none;
180
+ color: $white !important;
181
+ background: #000;
182
+ background: rgba(0,0,0, .8);
183
+ left: 0;
184
+ right: 0;
185
+ bottom: 0;
186
+ padding: 10px 20px;
187
+ margin: 0;
188
+ max-width: none;
189
+ line-height: 20px;
190
+
191
+ .caption-header {
192
+ color: $white;
193
+ margin: 0;
194
+ margin-bottom: 10px;
195
+ font-size: 25px;
196
+ }
197
+
198
+ .caption-text {
199
+ color: $white;
200
+ font-size: 15px;
201
+ }
202
+ }