faalis 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +339 -0
- data/README.md +45 -0
- data/Rakefile +42 -0
- data/app/assets/fonts/DroidNaskh-Bold.ttf +0 -0
- data/app/assets/fonts/DroidNaskh-Regular.ttf +0 -0
- data/app/assets/fonts/OpenSans-Bold.ttf +0 -0
- data/app/assets/fonts/OpenSans-BoldItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-ExtraBold.ttf +0 -0
- data/app/assets/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Italic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Light.ttf +0 -0
- data/app/assets/fonts/OpenSans-LightItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Regular.ttf +0 -0
- data/app/assets/fonts/OpenSans-Semibold.ttf +0 -0
- data/app/assets/fonts/OpenSans-SemiboldItalic.ttf +0 -0
- data/app/assets/images/faalis/select2-spinner.gif +0 -0
- data/app/assets/images/faalis/select2.png +0 -0
- data/app/assets/images/faalis/select2x2.png +0 -0
- data/app/assets/javascripts/faalis/application.js +20 -0
- data/app/assets/javascripts/faalis/dashboard/angular.js +9 -0
- data/app/assets/javascripts/faalis/dashboard/app.js +75 -0
- data/app/assets/javascripts/faalis/dashboard/application.js.erb +21 -0
- data/app/assets/javascripts/faalis/dashboard/functions.js.erb +91 -0
- data/app/assets/javascripts/faalis/dashboard/init.js +38 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-animate.js +1226 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-gettext.js +202 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-resource.js +578 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-route.js +880 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular.js +20031 -0
- data/app/assets/javascripts/faalis/dashboard/lib/lodash.underscore.js +4893 -0
- data/app/assets/javascripts/faalis/dashboard/lib/ng-grid.js +3260 -0
- data/app/assets/javascripts/faalis/dashboard/lib/ng-quick-date.js +297 -0
- data/app/assets/javascripts/faalis/dashboard/lib/restangular.js +1066 -0
- data/app/assets/javascripts/faalis/dashboard/lib/select2.js +3255 -0
- data/app/assets/javascripts/faalis/dashboard/lib/ui.select2.js +217 -0
- data/app/assets/javascripts/faalis/dashboard/locale/translations.js +5 -0
- data/app/assets/javascripts/faalis/dashboard/modules/anim.js +32 -0
- data/app/assets/javascripts/faalis/dashboard/modules/api.js +32 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/auth.js +34 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/group.js +174 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/profile.js +59 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/user.js +123 -0
- data/app/assets/javascripts/faalis/dashboard/modules/errors.js +47 -0
- data/app/assets/javascripts/faalis/dashboard/modules/filter.js +44 -0
- data/app/assets/javascripts/faalis/dashboard/modules/list-view.js +310 -0
- data/app/assets/javascripts/faalis/dashboard/modules/logs.js +41 -0
- data/app/assets/javascripts/faalis/dashboard/modules/modules.js +50 -0
- data/app/assets/javascripts/faalis/dashboard/modules/nav.js.erb +97 -0
- data/app/assets/javascripts/faalis/dashboard/templates/application.handlebars.erb +42 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/details.handlebars.erb +15 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/index.handlebars.erb +7 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/new.handlebars.erb +39 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/index.handlebars.erb +31 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/users/details.handlebars.erb +15 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/users/index.handlebars.erb +11 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/users/new.handlebars.erb +33 -0
- data/app/assets/javascripts/faalis/dashboard/templates/components/list-view.handlebars.erb +59 -0
- data/app/assets/javascripts/faalis/dashboard/templates/components/model-form.handlebars.erb +3 -0
- data/app/assets/javascripts/faalis/dashboard/templates/modules.handlebars.erb +15 -0
- data/app/assets/javascripts/faalis/dashboard/templates/navigation.handlebars.erb +43 -0
- data/app/assets/javascripts/faalis/dashboard/templates/widgets.handlebars +23 -0
- data/app/assets/javascripts/faalis/dashboard/variables.js.erb +17 -0
- data/app/assets/javascripts/faalis/groups.js +2 -0
- data/app/assets/javascripts/faalis/home.js +2 -0
- data/app/assets/javascripts/faalis/i18n.js +13 -0
- data/app/assets/javascripts/faalis/locale/en.json +27 -0
- data/app/assets/javascripts/faalis/locale/fa.json +27 -0
- data/app/assets/javascripts/faalis/users.js +2 -0
- data/app/assets/stylesheets/faalis/base.css.scss +264 -0
- data/app/assets/stylesheets/faalis/dashboard/dashboard.css.scss +226 -0
- data/app/assets/stylesheets/faalis/dashboard/list_view.css.scss +169 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/application.css +26 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/base.css.scss.erb +28 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/direction.css.scss +38 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/foundation_and_overrides.css.scss +1014 -0
- data/app/assets/stylesheets/faalis/dashboard/ng-grid.css.scss +442 -0
- data/app/assets/stylesheets/faalis/dashboard/ng-quick-date-default-theme.css.scss +20 -0
- data/app/assets/stylesheets/faalis/dashboard/ng-quick-date.css.scss +19 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/application.css +26 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/base.css.scss.erb +31 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/base.css_flymake.scss +25 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/buttons.css.scss.erb +45 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/direction.css.scss +37 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/foundation_and_overrides.css.scss +1014 -0
- data/app/assets/stylesheets/faalis/dashboard/select2.css.scss.erb +618 -0
- data/app/assets/stylesheets/faalis/dashboard/sidebar.css.scss +93 -0
- data/app/assets/stylesheets/faalis/devise.css.scss +34 -0
- data/app/assets/stylesheets/faalis/groups.css +4 -0
- data/app/assets/stylesheets/faalis/home.css.scss +14 -0
- data/app/assets/stylesheets/faalis/ltr/application.css +20 -0
- data/app/assets/stylesheets/faalis/ltr/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/faalis/ltr/foundation_and_overrides.scss.erb +1012 -0
- data/app/assets/stylesheets/faalis/mixins.css.scss +15 -0
- data/app/assets/stylesheets/faalis/rtl/application.css +20 -0
- data/app/assets/stylesheets/faalis/rtl/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/faalis/rtl/foundation_and_overrides.scss.erb +1012 -0
- data/app/assets/stylesheets/faalis/users.css +4 -0
- data/app/assets/stylesheets/faalis/variables.css.scss +102 -0
- data/app/controllers/faalis/api/v1/groups_controller.rb +75 -0
- data/app/controllers/faalis/api/v1/logs_controller.rb +12 -0
- data/app/controllers/faalis/api/v1/permissions_controller.rb +17 -0
- data/app/controllers/faalis/api/v1/profiles_controller.rb +42 -0
- data/app/controllers/faalis/api/v1/users_controller.rb +75 -0
- data/app/controllers/faalis/api_controller.rb +51 -0
- data/app/controllers/faalis/application_controller.rb +34 -0
- data/app/controllers/faalis/dashboard_controller.rb +44 -0
- data/app/controllers/faalis/home_controller.rb +19 -0
- data/app/controllers/faalis/omniauth/callbacks_controller.rb +43 -0
- data/app/helpers/faalis/application_helper.rb +4 -0
- data/app/helpers/faalis/dashboard_helper.rb +5 -0
- data/app/helpers/faalis/groups_helper.rb +4 -0
- data/app/helpers/faalis/home_helper.rb +4 -0
- data/app/helpers/faalis/users_helper.rb +4 -0
- data/app/models/ability.rb +42 -0
- data/app/models/faalis/group.rb +27 -0
- data/app/models/faalis/permission.rb +15 -0
- data/app/models/faalis/user.rb +81 -0
- data/app/views/angularjs_templates/#index.html# +8 -0
- data/app/views/angularjs_templates/auth/groups/details.html +21 -0
- data/app/views/angularjs_templates/auth/groups/index.html +5 -0
- data/app/views/angularjs_templates/auth/groups/new.html +41 -0
- data/app/views/angularjs_templates/auth/index.html +30 -0
- data/app/views/angularjs_templates/auth/profile/edit.html +54 -0
- data/app/views/angularjs_templates/auth/users/details.html +28 -0
- data/app/views/angularjs_templates/auth/users/index.html +6 -0
- data/app/views/angularjs_templates/auth/users/new.html +56 -0
- data/app/views/angularjs_templates/filter/index.html +15 -0
- data/app/views/angularjs_templates/index.html +8 -0
- data/app/views/angularjs_templates/list-view/index.html +81 -0
- data/app/views/angularjs_templates/locale/fa.po +25 -0
- data/app/views/angularjs_templates/locale/templates.pot +24 -0
- data/app/views/angularjs_templates/logs/index.html +6 -0
- data/app/views/angularjs_templates/modules.html +17 -0
- data/app/views/angularjs_templates/nav.html.erb +38 -0
- data/app/views/devise/confirmations/new.html.erb +34 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +44 -0
- data/app/views/devise/passwords/new.html.erb +32 -0
- data/app/views/devise/registrations/edit.html.erb +29 -0
- data/app/views/devise/registrations/new.html.erb +91 -0
- data/app/views/devise/sessions/new.html.erb +98 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +30 -0
- data/app/views/faalis/api/v1/groups/create.json.jbuilder +4 -0
- data/app/views/faalis/api/v1/groups/destroy.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/destroy.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/groups/edit.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/index.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/index.json.jbuilder +6 -0
- data/app/views/faalis/api/v1/groups/new.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/show.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/show.json.jbuilder +5 -0
- data/app/views/faalis/api/v1/groups/update.json.jbuilder +4 -0
- data/app/views/faalis/api/v1/logs/index.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/permissions/index.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/users/create.html.erb +2 -0
- data/app/views/faalis/api/v1/users/create.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/users/destroy.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/users/distroy.html.erb +2 -0
- data/app/views/faalis/api/v1/users/edit.html.erb +2 -0
- data/app/views/faalis/api/v1/users/index.html.erb +2 -0
- data/app/views/faalis/api/v1/users/index.json.jbuilder +4 -0
- data/app/views/faalis/api/v1/users/show.html.erb +2 -0
- data/app/views/faalis/api/v1/users/show.json.jbuilder +2 -0
- data/app/views/faalis/api/v1/users/update.json.jbuilder +1 -0
- data/app/views/faalis/dashboard/index.html.erb +37 -0
- data/app/views/faalis/dashboard/login_required_page.html.erb +5 -0
- data/app/views/faalis/home/index.html.erb +119 -0
- data/app/views/layouts/faalis/application.html.erb +90 -0
- data/app/views/layouts/faalis/dashboard.html.erb +21 -0
- data/config/initializers/devise.rb +28 -0
- data/config/locales/devise.en.yml +59 -0
- data/config/locales/devise.fa.yml +56 -0
- data/config/locales/fa/LC_MESSAGES/faalis.mo +0 -0
- data/config/locales/fa/faalis.po +181 -0
- data/config/locales/fa/messages.mo +0 -0
- data/config/locales/faalis.pot +181 -0
- data/config/routes.rb +36 -0
- data/db/migrate/20131013091000_devise_create_red_base_users.rb +64 -0
- data/db/migrate/20131020124701_create_red_base_groups.rb +9 -0
- data/db/migrate/20131021170923_create_red_base_permissions.rb +10 -0
- data/db/migrate/20131123120422_add_permissions_groups_table.rb +8 -0
- data/db/seeds.rb +15 -0
- data/lib/faalis.rb +30 -0
- data/lib/faalis/active_record.rb +64 -0
- data/lib/faalis/api.rb +61 -0
- data/lib/faalis/api/groups_api.rb +41 -0
- data/lib/faalis/api/permissions_api.rb +24 -0
- data/lib/faalis/api/root.rb +15 -0
- data/lib/faalis/api/users_api.rb +20 -0
- data/lib/faalis/cucumber.rb +25 -0
- data/lib/faalis/cucumber/auth.rb +45 -0
- data/lib/faalis/cucumber/exceptions.rb +40 -0
- data/lib/faalis/cucumber/interaction.rb +43 -0
- data/lib/faalis/cucumber/query.rb +28 -0
- data/lib/faalis/cucumber/urls.rb +76 -0
- data/lib/faalis/dashboard.rb +60 -0
- data/lib/faalis/dashboard/controller.rb +42 -0
- data/lib/faalis/dashboard/module.rb +45 -0
- data/lib/faalis/engine.rb +128 -0
- data/lib/faalis/exceptions.rb +26 -0
- data/lib/faalis/i18n.rb +35 -0
- data/lib/faalis/initialize.rb +7 -0
- data/lib/faalis/omniauth.rb +24 -0
- data/lib/faalis/omniauth/callbacks.rb +58 -0
- data/lib/faalis/plugins.rb +44 -0
- data/lib/faalis/version.rb +22 -0
- data/lib/faalis_plugin.rb +476 -0
- data/lib/generators/faalis/USAGE +8 -0
- data/lib/generators/faalis/angularjs_resource_generator.rb +74 -0
- data/lib/generators/faalis/install_all_generator.rb +38 -0
- data/lib/generators/faalis/install_generator.rb +42 -0
- data/lib/generators/faalis/install_specs_generator.rb +48 -0
- data/lib/generators/faalis/js_scaffold_generator.rb +273 -0
- data/lib/generators/faalis/templates/README +41 -0
- data/lib/generators/faalis/templates/SPECS +13 -0
- data/lib/generators/faalis/templates/angularjs/details.html.erb +20 -0
- data/lib/generators/faalis/templates/angularjs/index.html.erb +62 -0
- data/lib/generators/faalis/templates/angularjs/module.js.erb +309 -0
- data/lib/generators/faalis/templates/angularjs/new.html.erb +105 -0
- data/lib/generators/faalis/templates/api/controller.rb.erb +56 -0
- data/lib/generators/faalis/templates/devise.rb +251 -0
- data/lib/generators/faalis/templates/faalis.rb +14 -0
- data/lib/generators/faalis/templates/fast_gettext.rb +4 -0
- data/lib/generators/faalis/templates/features/api.feature +92 -0
- data/lib/generators/faalis/templates/features/api.step.rb +7 -0
- data/lib/generators/faalis/templates/features/step_definitions/email_steps.rb +206 -0
- data/lib/generators/faalis/templates/features/support/email_spec.rb +1 -0
- data/lib/generators/faalis/templates/features/support/env.rb +79 -0
- data/lib/generators/faalis/templates/formtastic.rb +76 -0
- data/lib/generators/faalis/templates/js_scaffold.README +25 -0
- data/lib/generators/faalis/templates/seeds.rb +1 -0
- data/lib/generators/faalis/templates/spec/factories/groups.rb +5 -0
- data/lib/generators/faalis/templates/spec/factories/users.rb +10 -0
- data/lib/generators/faalis/templates/spec/spec_helper.rb +69 -0
- data/lib/generators/faalis/templates/spec/support/devise.rb +3 -0
- data/lib/generators/faalis/templates/views/create.json.jbuilder.erb +2 -0
- data/lib/generators/faalis/templates/views/destroy.json.jbuilder.erb +1 -0
- data/lib/generators/faalis/templates/views/index.json.jbuilder.erb +10 -0
- data/lib/generators/faalis/templates/views/show.json.jbuilder.erb +7 -0
- data/lib/generators/faalis/templates/views/update.json.jbuilder.erb +6 -0
- data/lib/generators/faalis/views_generator.rb +41 -0
- data/lib/tasks/faalis_tasks.rake +23 -0
- data/lib/tasks/grunt/Gruntfile.js +25 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +15 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/ember-rails/ember-data.js +10204 -0
- data/spec/dummy/tmp/ember-rails/ember.js +36991 -0
- data/spec/spec_helper.rb +52 -0
- metadata +678 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
@mixin transition ($a) {
|
2
|
+
transition: $a;
|
3
|
+
-moz-transition: $a;
|
4
|
+
-webkit-transition: $a;
|
5
|
+
-o-transition: $a;
|
6
|
+
-ms-transition: $a;
|
7
|
+
}
|
8
|
+
|
9
|
+
@mixin box-shadow ($a) {
|
10
|
+
box-shadow: $a;
|
11
|
+
-moz-box-shadow: $a;
|
12
|
+
-webkit-box-shadow: $a;
|
13
|
+
-o-box-shadow: $a;
|
14
|
+
-ms-box-shadowb: $a;
|
15
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
|
12
|
+
*= require faalis/variables
|
13
|
+
*= require faalis/base
|
14
|
+
*= require faalis/devise
|
15
|
+
*= require faalis/home
|
16
|
+
*= require font-awesome
|
17
|
+
*= require faalis/rtl/buttons
|
18
|
+
*= require faalis/rtl/foundation_and_overrides
|
19
|
+
*= require_self
|
20
|
+
*/
|
@@ -0,0 +1,48 @@
|
|
1
|
+
@import "faalis/variables";
|
2
|
+
//@import "foundation";
|
3
|
+
//@import "foundation/components/global";
|
4
|
+
//@import "foundation/components/buttons";
|
5
|
+
@import "faalis/dashboard/ltr/foundation_and_overrides";
|
6
|
+
|
7
|
+
.btn {
|
8
|
+
@include button-base;
|
9
|
+
@include single-transition;
|
10
|
+
|
11
|
+
&.green {
|
12
|
+
@include button-style($emerald, $border-radius, false);
|
13
|
+
color: white;
|
14
|
+
}
|
15
|
+
|
16
|
+
&.blue {
|
17
|
+
@include button-style($peter_river, $border-radius, false);
|
18
|
+
color: white;
|
19
|
+
}
|
20
|
+
|
21
|
+
&.red {
|
22
|
+
@include button-style($alizarin, $border-radius, false);
|
23
|
+
color: white;
|
24
|
+
}
|
25
|
+
|
26
|
+
&.yellow {
|
27
|
+
@include button-style($sun_flower, $border-radius, false);
|
28
|
+
}
|
29
|
+
&.lightgray {
|
30
|
+
@include button-style($lightgray, $border-radius, false);
|
31
|
+
}
|
32
|
+
&.lightergray {
|
33
|
+
@include button-style($lightergray, $border-radius, false);
|
34
|
+
}
|
35
|
+
|
36
|
+
}
|
37
|
+
|
38
|
+
.tiny {
|
39
|
+
@include button-size($button-tny, false, false);
|
40
|
+
}
|
41
|
+
|
42
|
+
.small {
|
43
|
+
@include button-size($button-sml, false, false);
|
44
|
+
}
|
45
|
+
|
46
|
+
.medium {
|
47
|
+
@include button-size($button-med, false, false);
|
48
|
+
}
|
@@ -0,0 +1,1012 @@
|
|
1
|
+
// Required global settings and mixins for Foundation
|
2
|
+
@import "foundation/foundation-global";
|
3
|
+
|
4
|
+
// Settings file to override Foundation variables
|
5
|
+
|
6
|
+
// You can find the variables for each component at the bottom of their
|
7
|
+
// doc page. We tried to name them to where they'd make sense just by reading them.
|
8
|
+
// Go to http://foundation.zurb.com/docs/ to find what you need.
|
9
|
+
|
10
|
+
//
|
11
|
+
// Foundation Global Variables
|
12
|
+
//
|
13
|
+
|
14
|
+
// This is the default html and body font-size for the base em value.
|
15
|
+
// $em-base: 16px;
|
16
|
+
|
17
|
+
// We use these to control various global styles
|
18
|
+
// $body-bg: #fff;
|
19
|
+
// $body-font-color: #222;
|
20
|
+
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
21
|
+
// $body-font-weight: normal;
|
22
|
+
// $body-font-style: normal;
|
23
|
+
|
24
|
+
// We use this to control font-smoothing
|
25
|
+
// $font-smoothing: antialiased;
|
26
|
+
|
27
|
+
// We use these to control text direction settings
|
28
|
+
$text-direction: rtl;
|
29
|
+
|
30
|
+
// We use these as default colors throughout
|
31
|
+
// $primary-color: #2ba6cb;
|
32
|
+
// $secondary-color: #e9e9e9;
|
33
|
+
// $alert-color: #c60f13;
|
34
|
+
// $success-color: #5da423;
|
35
|
+
|
36
|
+
// We use these to make sure border radius matches unless we want it different.
|
37
|
+
// $global-radius: 3px;
|
38
|
+
// $global-rounded: 1000px;
|
39
|
+
|
40
|
+
// We use these to control inset shadow shiny edges and depressions.
|
41
|
+
// $shiny-edge-size: 0 1px 0;
|
42
|
+
// $shiny-edge-color: rgba(#fff, .5);
|
43
|
+
// $shiny-edge-active-color: rgba(#000, .2);
|
44
|
+
|
45
|
+
// We use this to control whether or not CSS classes come through in the gem files.
|
46
|
+
$include-html-classes: true;
|
47
|
+
// $include-print-styles: true;
|
48
|
+
|
49
|
+
// Modular html classes
|
50
|
+
// $include-html-grid-classes: $include-html-classes;
|
51
|
+
// $include-html-visibility-classes: $include-html-classes;
|
52
|
+
// $include-html-button-classes: $include-html-classes;
|
53
|
+
// $include-html-form-classes: $include-html-classes;
|
54
|
+
// $include-html-media-classes: $include-html-classes;
|
55
|
+
// $include-html-section-classes: $include-html-classes;
|
56
|
+
// $include-html-reveal-classes: $include-html-classes;
|
57
|
+
// $include-html-alert-classes: $include-html-classes;
|
58
|
+
// $include-html-nav-classes: $include-html-classes;
|
59
|
+
// $include-html-label-classes: $include-html-classes;
|
60
|
+
// $include-html-panel-classes: $include-html-classes;
|
61
|
+
// $include-html-pricing-classes: $include-html-classes;
|
62
|
+
// $include-html-progress-classes: $include-html-classes;
|
63
|
+
|
64
|
+
//
|
65
|
+
// Grid Variables
|
66
|
+
//
|
67
|
+
|
68
|
+
// $row-width: 62.5em;
|
69
|
+
// $column-gutter: 1.875em;
|
70
|
+
// $total-columns: 12;
|
71
|
+
|
72
|
+
//
|
73
|
+
// Block Grid Variables
|
74
|
+
//
|
75
|
+
|
76
|
+
// We use this to control the maximum number of block grid elements per row
|
77
|
+
// $block-grid-elements: 12;
|
78
|
+
// $block-grid-default-spacing: 10px;
|
79
|
+
|
80
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
81
|
+
// $block-grid-media-queries: true;
|
82
|
+
|
83
|
+
//
|
84
|
+
// Typography Variables
|
85
|
+
//
|
86
|
+
|
87
|
+
// We use these to control header font styles
|
88
|
+
// $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
89
|
+
// $header-font-weight: bold;
|
90
|
+
// $header-font-style: normal;
|
91
|
+
// $header-font-color: #222;
|
92
|
+
// $header-line-height: 1.4;
|
93
|
+
// $header-top-margin: .2em;
|
94
|
+
// $header-bottom-margin: .5em;
|
95
|
+
// $header-text-rendering: optimizeLegibility;
|
96
|
+
|
97
|
+
// We use these to control header font sizes
|
98
|
+
// $h1-font-size: emCalc(44px);
|
99
|
+
// $h2-font-size: emCalc(37px);
|
100
|
+
// $h3-font-size: emCalc(27px);
|
101
|
+
// $h4-font-size: emCalc(23px);
|
102
|
+
// $h5-font-size: emCalc(18px);
|
103
|
+
// $h6-font-size: 1em;
|
104
|
+
|
105
|
+
// These control how subheaders are styled.
|
106
|
+
// $subheader-line-height: 1.4;
|
107
|
+
// $subheader-font-color: lighten($header-font-color, 30%);
|
108
|
+
// $subheader-font-weight: 300;
|
109
|
+
// $subheader-top-margin: .2em;
|
110
|
+
// $subheader-bottom-margin: .5em;
|
111
|
+
|
112
|
+
// A general <small> styling
|
113
|
+
// $small-font-size: 60%;
|
114
|
+
// $small-font-color: lighten($header-font-color, 30%);
|
115
|
+
|
116
|
+
// We use these to style paragraphs
|
117
|
+
// $paragraph-font-family: inherit;
|
118
|
+
// $paragraph-font-weight: normal;
|
119
|
+
// $paragraph-font-size: 1em;
|
120
|
+
// $paragraph-line-height: 1.6;
|
121
|
+
// $paragraph-margin-bottom: emCalc(20px);
|
122
|
+
// $paragraph-aside-font-size: emCalc(14px);
|
123
|
+
// $paragraph-aside-line-height: 1.35;
|
124
|
+
// $paragraph-aside-font-style: italic;
|
125
|
+
|
126
|
+
// We use these to style <code> tags
|
127
|
+
// $code-color: darken($alert-color, 15%);
|
128
|
+
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
|
129
|
+
// $code-font-weight: bold;
|
130
|
+
|
131
|
+
// We use these to style anchors
|
132
|
+
// $anchor-text-decoration: none;
|
133
|
+
// $anchor-font-color: $primary-color;
|
134
|
+
// $anchor-font-color-hover: darken($primary-color, 5%);
|
135
|
+
|
136
|
+
// We use these to style the <hr> element
|
137
|
+
// $hr-border-width: 1px;
|
138
|
+
// $hr-border-style: solid;
|
139
|
+
// $hr-border-color: #ddd;
|
140
|
+
// $hr-margin: emCalc(20px);
|
141
|
+
|
142
|
+
// We use these to style lists
|
143
|
+
// $list-style-position: outside;
|
144
|
+
// $list-side-margin: emCalc(18px);
|
145
|
+
// $definition-list-header-weight: bold;
|
146
|
+
// $definition-list-header-margin-bottom: .3em;
|
147
|
+
// $definition-list-margin-bottom: emCalc(12px);
|
148
|
+
|
149
|
+
// We use these to style blockquotes
|
150
|
+
// $blockquote-font-color: lighten($header-font-color, 30%);
|
151
|
+
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
|
152
|
+
// $blockquote-border: 1px solid #ddd;
|
153
|
+
// $blockquote-cite-font-size: emCalc(13px);
|
154
|
+
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
|
155
|
+
// $blockquote-cite-link-color: $blockquote-cite-font-color;
|
156
|
+
|
157
|
+
// Acronym styles
|
158
|
+
// $acronym-underline: 1px dotted #ddd;
|
159
|
+
|
160
|
+
// We use these to control padding and margin
|
161
|
+
// $microformat-padding: emCalc(12px) emCalc(14px);
|
162
|
+
// $microformat-margin: 0 0 emCalc(20px) 0;
|
163
|
+
|
164
|
+
// We use these to control the border styles
|
165
|
+
// $microformat-border-width: 1px;
|
166
|
+
// $microformat-border-style: solid;
|
167
|
+
// $microformat-border-color: #ddd;
|
168
|
+
|
169
|
+
// We use these to control full name font styles
|
170
|
+
// $microformat-fullname-font-weight: bold;
|
171
|
+
// $microformat-fullname-font-size: emCalc(15px);
|
172
|
+
|
173
|
+
// We use this to control the summary font styles
|
174
|
+
// $microformat-summary-font-weight: bold;
|
175
|
+
|
176
|
+
// We use this to control abbr padding
|
177
|
+
// $microformat-abbr-padding: 0 emCalc(1px);
|
178
|
+
|
179
|
+
// We use this to control abbr font styles
|
180
|
+
// $microformat-abbr-font-weight: bold;
|
181
|
+
// $microformat-abbr-font-decoration: none;
|
182
|
+
|
183
|
+
//
|
184
|
+
// Form Variables
|
185
|
+
//
|
186
|
+
|
187
|
+
// We use this to set the base for lots of form spacing and positioning styles
|
188
|
+
// $form-spacing: emCalc(16px);
|
189
|
+
|
190
|
+
// We use these to style the labels in different ways
|
191
|
+
// $label-pointer: pointer;
|
192
|
+
// $label-font-size: emCalc(14px);
|
193
|
+
// $label-font-weight: 500;
|
194
|
+
// $label-font-color: lighten(#000, 30%);
|
195
|
+
// $label-bottom-margin: emCalc(3px);
|
196
|
+
// $input-font-family: inherit;
|
197
|
+
// $input-font-color: rgba(0,0,0,0.75);
|
198
|
+
// $input-font-size: emCalc(14px);
|
199
|
+
// $input-bg-color: #fff;
|
200
|
+
// $input-focus-bg-color: darken(#fff, 2%);
|
201
|
+
// $input-border-color: darken(#fff, 20%);
|
202
|
+
// $input-focus-border-color: darken(#fff, 40%);
|
203
|
+
// $input-border-style: solid;
|
204
|
+
// $input-border-width: 1px;
|
205
|
+
// $input-disabled-bg: #ddd;
|
206
|
+
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
207
|
+
|
208
|
+
// We use these to style the fieldset border and spacing.
|
209
|
+
// $fieldset-border-style: solid;
|
210
|
+
// $fieldset-border-width: 1px;
|
211
|
+
$fieldset-border-color: #eee;
|
212
|
+
$fieldset-padding: emCalc(20px) emCalc(30px) emCalc(10px);
|
213
|
+
// $fieldset-margin: emCalc(18px) 0;
|
214
|
+
|
215
|
+
// We use these to style the legends when you use them
|
216
|
+
// $legend-bg: #fff;
|
217
|
+
// $legend-font-weight: bold;
|
218
|
+
// $legend-padding: 0 emCalc(3px);
|
219
|
+
|
220
|
+
// We use these to style the prefix and postfix input elements
|
221
|
+
// $input-prefix-bg: darken(#fff, 5%);
|
222
|
+
// $input-prefix-border-color: darken(#fff, 20%);
|
223
|
+
// $input-prefix-border-size: 1px;
|
224
|
+
// $input-prefix-border-type: solid;
|
225
|
+
// $input-prefix-overflow: hidden;
|
226
|
+
// $input-prefix-font-color: #333;
|
227
|
+
// $input-prefix-font-color-alt: #fff;
|
228
|
+
|
229
|
+
// We use these to style the error states for inputs and labels
|
230
|
+
// $input-error-message-padding: emCalc(6px) emCalc(4px);
|
231
|
+
// $input-error-message-top: -($form-spacing) - emCalc(5px);
|
232
|
+
// $input-error-message-font-size: emCalc(12px);
|
233
|
+
// $input-error-message-font-weight: bold;
|
234
|
+
// $input-error-message-font-color: #fff;
|
235
|
+
// $input-error-message-font-color-alt: #333;
|
236
|
+
|
237
|
+
// We use these to build padding for buttons.
|
238
|
+
// $button-med: emCalc(12px);
|
239
|
+
// $button-tny: emCalc(7px);
|
240
|
+
// $button-sml: emCalc(9px);
|
241
|
+
// $button-lrg: emCalc(16px);
|
242
|
+
|
243
|
+
// We use this to control the display property.
|
244
|
+
// $button-display: inline-block;
|
245
|
+
// $button-margin-bottom: emCalc(20px);
|
246
|
+
|
247
|
+
// We use these to control button text styles.
|
248
|
+
// $button-font-family: inherit;
|
249
|
+
// $button-font-color: #fff;
|
250
|
+
// $button-font-color-alt: #333;
|
251
|
+
// $button-font-med: emCalc(16px);
|
252
|
+
// $button-font-tny: emCalc(11px);
|
253
|
+
// $button-font-sml: emCalc(13px);
|
254
|
+
// $button-font-lrg: emCalc(20px);
|
255
|
+
// $button-font-weight: bold;
|
256
|
+
// $button-font-align: center;
|
257
|
+
|
258
|
+
// We use these to control various hover effects.
|
259
|
+
// $button-function-factor: 10%;
|
260
|
+
|
261
|
+
// We use these to control button border styles.
|
262
|
+
// $button-border-width: 1px;
|
263
|
+
// $button-border-style: solid;
|
264
|
+
// $button-border-color: darken($primary-color, $button-function-factor);
|
265
|
+
|
266
|
+
// We use this to set the default radius used throughout the core.
|
267
|
+
// $button-radius: $global-radius;
|
268
|
+
|
269
|
+
// We use this to set default opacity for disabled buttons.
|
270
|
+
// $button-disabled-opacity: 0.6;
|
271
|
+
|
272
|
+
//
|
273
|
+
// Dropdown Button Variables
|
274
|
+
//
|
275
|
+
|
276
|
+
// We use these to set the color of the pip in dropdown buttons
|
277
|
+
// $dropdown-button-pip-color: #fff;
|
278
|
+
// $dropdown-button-pip-color-alt: #333;
|
279
|
+
|
280
|
+
// We use these to style tiny dropdown buttons
|
281
|
+
// $dropdown-button-padding-tny: $button-tny * 5;
|
282
|
+
// $dropdown-button-pip-size-tny: $button-tny;
|
283
|
+
// $dropdown-button-pip-right-tny: $button-tny * 2;
|
284
|
+
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
|
285
|
+
|
286
|
+
// We use these to style small dropdown buttons
|
287
|
+
// $dropdown-button-padding-sml: $button-sml * 5;
|
288
|
+
// $dropdown-button-pip-size-sml: $button-sml;
|
289
|
+
// $dropdown-button-pip-right-sml: $button-sml * 2;
|
290
|
+
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
|
291
|
+
|
292
|
+
// We use these to style medium dropdown buttons
|
293
|
+
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
|
294
|
+
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
|
295
|
+
// $dropdown-button-pip-right-med: $button-med * 2;
|
296
|
+
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
|
297
|
+
|
298
|
+
// We use these to style large dropdown buttons
|
299
|
+
// $dropdown-button-padding-lrg: $button-lrg * 4;
|
300
|
+
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
|
301
|
+
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
|
302
|
+
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
|
303
|
+
|
304
|
+
//
|
305
|
+
// Split Button Variables
|
306
|
+
//
|
307
|
+
|
308
|
+
// We use these to control different shared styles for Split Buttons
|
309
|
+
// $split-button-function-factor: 15%;
|
310
|
+
// $split-button-pip-color: #fff;
|
311
|
+
// $split-button-pip-color-alt: #333;
|
312
|
+
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
313
|
+
|
314
|
+
// We use these to control tiny split buttons
|
315
|
+
// $split-button-padding-tny: $button-tny * 9;
|
316
|
+
// $split-button-span-width-tny: $button-tny * 6.5;
|
317
|
+
// $split-button-pip-size-tny: $button-tny;
|
318
|
+
// $split-button-pip-top-tny: $button-tny * 2;
|
319
|
+
// $split-button-pip-left-tny: emCalc(-5px);
|
320
|
+
|
321
|
+
// We use these to control small split buttons
|
322
|
+
// $split-button-padding-sml: $button-sml * 7;
|
323
|
+
// $split-button-span-width-sml: $button-sml * 5;
|
324
|
+
// $split-button-pip-size-sml: $button-sml;
|
325
|
+
// $split-button-pip-top-sml: $button-sml * 1.5;
|
326
|
+
// $split-button-pip-left-sml: emCalc(-9px);
|
327
|
+
|
328
|
+
// We use these to control medium split buttons
|
329
|
+
// $split-button-padding-med: $button-med * 6.4;
|
330
|
+
// $split-button-span-width-med: $button-med * 4;
|
331
|
+
// $split-button-pip-size-med: $button-med - emCalc(3px);
|
332
|
+
// $split-button-pip-top-med: $button-med * 1.5;
|
333
|
+
// $split-button-pip-left-med: emCalc(-9px);
|
334
|
+
|
335
|
+
// We use these to control large split buttons
|
336
|
+
// $split-button-padding-lrg: $button-lrg * 6;
|
337
|
+
// $split-button-span-width-lrg: $button-lrg * 3.75;
|
338
|
+
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
|
339
|
+
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
|
340
|
+
// $split-button-pip-left-lrg: emCalc(-9px);
|
341
|
+
|
342
|
+
//
|
343
|
+
// Alert Variables
|
344
|
+
//
|
345
|
+
|
346
|
+
// We use this to control alert padding.
|
347
|
+
// $alert-padding-top: emCalc(11px);
|
348
|
+
// $alert-padding-left: $alert-padding-top;
|
349
|
+
// $alert-padding-right: $alert-padding-top + emCalc(10px);
|
350
|
+
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
|
351
|
+
|
352
|
+
// We use these to control text style.
|
353
|
+
// $alert-font-weight: bold;
|
354
|
+
// $alert-font-size: emCalc(14px);
|
355
|
+
// $alert-font-color: #fff;
|
356
|
+
// $alert-font-color-alt: darken($secondary-color, 60%);
|
357
|
+
|
358
|
+
// We use this for close hover effect.
|
359
|
+
// $alert-function-factor: 10%;
|
360
|
+
|
361
|
+
// We use these to control border styles.
|
362
|
+
// $alert-border-style: solid;
|
363
|
+
// $alert-border-width: 1px;
|
364
|
+
// $alert-border-color: darken($primary-color, $alert-function-factor);
|
365
|
+
// $alert-bottom-margin: emCalc(20px);
|
366
|
+
|
367
|
+
// We use these to style the close buttons
|
368
|
+
$alert-close-color: #fff;
|
369
|
+
$alert-close-position: emCalc(12px);
|
370
|
+
// $alert-close-font-size: emCalc(22px);
|
371
|
+
// $alert-close-opacity: 0.3;
|
372
|
+
// $alert-close-opacity-hover: 0.5;
|
373
|
+
// $alert-close-padding: 5px 4px 4px;
|
374
|
+
|
375
|
+
// We use this to control border radius
|
376
|
+
// $alert-radius: $global-radius;
|
377
|
+
|
378
|
+
//
|
379
|
+
// Breadcrumb Variables
|
380
|
+
//
|
381
|
+
|
382
|
+
// We use this to set the background color for the breadcrumb container.
|
383
|
+
// $crumb-bg: lighten($secondary-color, 5%);
|
384
|
+
|
385
|
+
// We use these to set the padding around the breadcrumbs.
|
386
|
+
// $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
|
387
|
+
// $crumb-side-padding: emCalc(12px);
|
388
|
+
|
389
|
+
// We use these to control border styles.
|
390
|
+
// $crumb-function-factor: 10%;
|
391
|
+
// $crumb-border-size: 1px;
|
392
|
+
// $crumb-border-style: solid;
|
393
|
+
// $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
|
394
|
+
// $crumb-radius: $global-radius;
|
395
|
+
|
396
|
+
// We use these to set various text styles for breadcrumbs.
|
397
|
+
// $crumb-font-size: emCalc(11px);
|
398
|
+
// $crumb-font-color: $primary-color;
|
399
|
+
// $crumb-font-color-current: #333;
|
400
|
+
// $crumb-font-color-unavailable: #999;
|
401
|
+
// $crumb-font-transform: uppercase;
|
402
|
+
// $crumb-link-decor: underline;
|
403
|
+
|
404
|
+
// We use these to control the slash between breadcrumbs
|
405
|
+
// $crumb-slash-color: #aaa;
|
406
|
+
// $crumb-slash: "/";
|
407
|
+
|
408
|
+
//
|
409
|
+
// Clearing Variables
|
410
|
+
//
|
411
|
+
|
412
|
+
// We use these to set the background colors for parts of Clearing.
|
413
|
+
// $clearing-bg: #111;
|
414
|
+
// $clearing-caption-bg: $clearing-bg;
|
415
|
+
// $clearing-carousel-bg: #111;
|
416
|
+
// $clearing-img-bg: $clearing-bg;
|
417
|
+
|
418
|
+
// We use these to style the close button
|
419
|
+
// $clearing-close-color: #fff;
|
420
|
+
// $clearing-close-size: 40px;
|
421
|
+
|
422
|
+
// We use these to style the arrows
|
423
|
+
// $clearing-arrow-size: 16px;
|
424
|
+
// $clearing-arrow-color: $clearing-close-color;
|
425
|
+
|
426
|
+
// We use these to style captions
|
427
|
+
// $clearing-caption-font-color: #fff;
|
428
|
+
// $clearing-caption-padding: 10px 30px;
|
429
|
+
|
430
|
+
// We use these to make the image and carousel height and style
|
431
|
+
// $clearing-active-img-height: 75%;
|
432
|
+
// $clearing-carousel-height: 150px;
|
433
|
+
// $clearing-carousel-thumb-width: 175px;
|
434
|
+
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
|
435
|
+
|
436
|
+
//
|
437
|
+
// Custom Form Variables
|
438
|
+
//
|
439
|
+
|
440
|
+
// We use these to control the basic form styles input styles
|
441
|
+
// $custom-form-border-color: #ccc;
|
442
|
+
// $custom-form-bg: #fff;
|
443
|
+
// $custom-form-bg-disabled: #ddd;
|
444
|
+
// $custom-form-check-color: #222;
|
445
|
+
|
446
|
+
// We use these to style the custom select form element.
|
447
|
+
// $custom-select-bg: #fff;
|
448
|
+
// $custom-select-fade-to-color: #f3f3f3;
|
449
|
+
// $custom-select-border-color: #ddd;
|
450
|
+
// $custom-select-triangle-color: #aaa;
|
451
|
+
// $custom-select-triangle-color-open: #222;
|
452
|
+
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
|
453
|
+
// $custom-select-margin-bottom: emCalc(20px);
|
454
|
+
// $custom-select-font-color-selected: #141414;
|
455
|
+
// $custom-select-disabled-color: #888;
|
456
|
+
|
457
|
+
// We use these to control the style of the custom select dropdown element.
|
458
|
+
// $custom-dropdown-height: 200px;
|
459
|
+
// $custom-dropdown-bg: #fff;
|
460
|
+
// $custom-dropdown-border-color: darken(#fff, 20%);
|
461
|
+
// $custom-dropdown-border-width: 1px;
|
462
|
+
// $custom-dropdown-border-style: solid;
|
463
|
+
// $custom-dropdown-font-color: #555;
|
464
|
+
// $custom-dropdown-font-size: emCalc(14px);
|
465
|
+
// $custom-dropdown-color-selected: #eeeeee;
|
466
|
+
// $custom-dropdown-font-color-selected: #000;
|
467
|
+
// $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
|
468
|
+
// $custom-dropdown-offset-top: none;
|
469
|
+
// $custom-dropdown-list-padding: emCalc(4px);
|
470
|
+
// $custom-dropdown-left-padding: emCalc(6px);
|
471
|
+
// $custom-dropdown-right-padding: emCalc(38px);
|
472
|
+
// $custom-dropdown-list-item-min-height: emCalc(24px);
|
473
|
+
|
474
|
+
//
|
475
|
+
// Dropdown Variables
|
476
|
+
//
|
477
|
+
|
478
|
+
// We use these to controls height and width styles.
|
479
|
+
// $f-dropdown-max-width: 200px;
|
480
|
+
// $f-dropdown-height: auto;
|
481
|
+
// $f-dropdown-max-height: none;
|
482
|
+
// $f-dropdown-margin-top: 2px;
|
483
|
+
|
484
|
+
// We use this to control the background color
|
485
|
+
// $f-dropdown-bg: #fff;
|
486
|
+
|
487
|
+
// We use this to set the border styles for dropdowns.
|
488
|
+
// $f-dropdown-border-style: solid;
|
489
|
+
// $f-dropdown-border-width: 1px;
|
490
|
+
// $f-dropdown-border-color: darken(#fff, 20%);
|
491
|
+
|
492
|
+
// We use these to style the triangle pip.
|
493
|
+
// $f-dropdown-triangle-size: 6px;
|
494
|
+
// $f-dropdown-triangle-color: #fff;
|
495
|
+
// $f-dropdown-triangle-side-offset: 10px;
|
496
|
+
|
497
|
+
// We use these to control styles for the list elements.
|
498
|
+
// $f-dropdown-list-style: none;
|
499
|
+
// $f-dropdown-font-color: #555;
|
500
|
+
// $f-dropdown-font-size: emCalc(14px);
|
501
|
+
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
|
502
|
+
// $f-dropdown-line-height: emCalc(18px);
|
503
|
+
// $f-dropdown-list-hover-bg: #eeeeee;
|
504
|
+
// $dropdown-mobile-left: 0;
|
505
|
+
|
506
|
+
// We use this to control the styles for when the dropdown has custom content.
|
507
|
+
// $f-dropdown-content-padding: emCalc(20px);
|
508
|
+
|
509
|
+
//
|
510
|
+
// Flex Video Variables
|
511
|
+
//
|
512
|
+
|
513
|
+
// We use these to control video container padding and margins
|
514
|
+
// $flex-video-padding-top: emCalc(25px);
|
515
|
+
// $flex-video-padding-bottom: 67.5%;
|
516
|
+
// $flex-video-margin-bottom: emCalc(16px);
|
517
|
+
|
518
|
+
// We use this to control widescreen bottom padding
|
519
|
+
// $flex-video-widescreen-padding-bottom: 57.25%;
|
520
|
+
|
521
|
+
//
|
522
|
+
// Inline List Variables
|
523
|
+
//
|
524
|
+
|
525
|
+
// We use this to control the margins and padding of the inline list.
|
526
|
+
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
|
527
|
+
// $inline-list-margin: 0 0;
|
528
|
+
// $inline-list-padding: 0;
|
529
|
+
|
530
|
+
// We use this to control the overflow of the inline list.
|
531
|
+
// $inline-list-overflow: hidden;
|
532
|
+
|
533
|
+
// We use this to control the list items
|
534
|
+
// $inline-list-display: block;
|
535
|
+
|
536
|
+
// We use this to control any elments within list items
|
537
|
+
// $inline-list-children-display: block;
|
538
|
+
|
539
|
+
//
|
540
|
+
// Joyride Variables
|
541
|
+
//
|
542
|
+
|
543
|
+
// Controlling default Joyride styles
|
544
|
+
// $joyride-tip-bg: rgb(0,0,0);
|
545
|
+
// $joyride-tip-default-width: 300px;
|
546
|
+
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
|
547
|
+
// $joyride-tip-border: solid 1px #555;
|
548
|
+
// $joyride-tip-radius: 4px;
|
549
|
+
// $joyride-tip-position-offset: 22px;
|
550
|
+
|
551
|
+
// Here, we're setting the tip dont styles
|
552
|
+
// $joyride-tip-font-color: #fff;
|
553
|
+
// $joyride-tip-font-size: emCalc(14px);
|
554
|
+
// $joyride-tip-header-weight: bold;
|
555
|
+
|
556
|
+
// This changes the nub size
|
557
|
+
// $joyride-tip-nub-size: 14px;
|
558
|
+
|
559
|
+
// This adjusts the styles for the timer when its enabled
|
560
|
+
// $joyride-tip-timer-width: 50px;
|
561
|
+
// $joyride-tip-timer-height: 3px;
|
562
|
+
// $joyride-tip-timer-color: #666;
|
563
|
+
|
564
|
+
// This changes up the styles for the close button
|
565
|
+
// $joyride-tip-close-color: #777;
|
566
|
+
// $joyride-tip-close-size: 30px;
|
567
|
+
// $joyride-tip-close-weight: normal;
|
568
|
+
|
569
|
+
// When Joyride is filling the screen, we use this style for the bg
|
570
|
+
// $joyride-screenfill: rgba(0,0,0,0.5);
|
571
|
+
|
572
|
+
//
|
573
|
+
// Keystroke Variables
|
574
|
+
//
|
575
|
+
|
576
|
+
// We use these to control text styles.
|
577
|
+
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
578
|
+
// $keystroke-font-size: emCalc(15px);
|
579
|
+
// $keystroke-font-color: #222;
|
580
|
+
// $keystroke-font-color-alt: #fff;
|
581
|
+
// $keystroke-function-factor: 7%;
|
582
|
+
|
583
|
+
// We use this to control keystroke padding.
|
584
|
+
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
|
585
|
+
|
586
|
+
// We use these to control background and border styles.
|
587
|
+
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
|
588
|
+
// $keystroke-border-style: solid;
|
589
|
+
// $keystroke-border-width: 1px;
|
590
|
+
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
|
591
|
+
// $keystroke-radius: $global-radius;
|
592
|
+
|
593
|
+
//
|
594
|
+
// Label Variables
|
595
|
+
//
|
596
|
+
|
597
|
+
// We use these to style the labels
|
598
|
+
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
|
599
|
+
// $label-radius: $global-radius;
|
600
|
+
|
601
|
+
// We use these to style the label text
|
602
|
+
// $label-font-sizing: emCalc(14px);
|
603
|
+
// $label-font-weight: bold;
|
604
|
+
|
605
|
+
//
|
606
|
+
// Orbit Settings
|
607
|
+
//
|
608
|
+
|
609
|
+
// We use these to control the caption styles
|
610
|
+
// $orbit-container-bg: #f5f5f5;
|
611
|
+
// $orbit-caption-bg-old-browser: #000;
|
612
|
+
// $orbit-caption-bg-old: rgb(0,0,0);
|
613
|
+
// $orbit-caption-bg: rgba(0,0,0,0.6);
|
614
|
+
// $orbit-caption-font-color: #fff;
|
615
|
+
|
616
|
+
// We use these to control the left/right nav styles
|
617
|
+
// $orbit-nav-bg-old: rgb(0,0,0);
|
618
|
+
// $orbit-nav-bg: rgba(0,0,0,0.6);
|
619
|
+
|
620
|
+
// We use these to control the timer styles
|
621
|
+
// $orbit-timer-bg-old: rgb(0,0,0);
|
622
|
+
// $orbit-timer-bg: rgba(0,0,0,0.6);
|
623
|
+
|
624
|
+
// We use these to control the bullet nav styles
|
625
|
+
// $orbit-bullet-nav-color: #999;
|
626
|
+
// $orbit-bullet-nav-color-active: #222;
|
627
|
+
|
628
|
+
// We use thes to controls the style of slide numbers
|
629
|
+
// $orbit-slide-number-bg: rgb(0,0,0);
|
630
|
+
// $orbit-slide-number-font-color: #fff;
|
631
|
+
// $orbit-slide-number-padding: emCalc(5px);
|
632
|
+
|
633
|
+
// Margin for when Orbit is stacked on small screens
|
634
|
+
// $stack-on-small-margin-bottom: emCalc(20px); // Doesn't quite work yet
|
635
|
+
|
636
|
+
//
|
637
|
+
// Pagination Variables
|
638
|
+
//
|
639
|
+
|
640
|
+
// We use these to control the pagination container
|
641
|
+
// $pagination-height: emCalc(24px);
|
642
|
+
// $pagination-margin: emCalc(-5px);
|
643
|
+
|
644
|
+
// We use these to set the list-item properties
|
645
|
+
// $pagination-li-float: $default-float;
|
646
|
+
// $pagination-li-height: emCalc(24px);
|
647
|
+
// $pagination-li-font-color: #222;
|
648
|
+
// $pagination-li-font-size: emCalc(14px);
|
649
|
+
// $pagination-li-margin: emCalc(5px);
|
650
|
+
|
651
|
+
// We use these for the pagination anchor links
|
652
|
+
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
|
653
|
+
// $pagination-link-font-color: #999;
|
654
|
+
// $pagination-link-active-bg: darken(#fff, 10%);
|
655
|
+
|
656
|
+
// We use these for disabled anchor links
|
657
|
+
// $pagination-link-unavailable-cursor: default;
|
658
|
+
// $pagination-link-unavailable-font-color: #999;
|
659
|
+
// $pagination-link-unavailable-bg-active: transparent;
|
660
|
+
|
661
|
+
// We use these for currently selected anchor links
|
662
|
+
// $pagination-link-current-background: $primary-color;
|
663
|
+
// $pagination-link-current-font-color: #fff;
|
664
|
+
// $pagination-link-current-font-weight: bold;
|
665
|
+
// $pagination-link-current-cursor: default;
|
666
|
+
// $pagination-link-current-active-bg: $primary-color;
|
667
|
+
|
668
|
+
//
|
669
|
+
// Panel Variables
|
670
|
+
//
|
671
|
+
|
672
|
+
// We use these to control the background and border styles
|
673
|
+
// $panel-bg: darken(#fff, 5%);
|
674
|
+
// $panel-border-style: solid;
|
675
|
+
// $panel-border-size: 1px;
|
676
|
+
|
677
|
+
// We use this % to control how much we darken things on hover
|
678
|
+
// $panel-function-factor: 10%;
|
679
|
+
// $panel-border-color: darken($panel-bg, $panel-function-factor);
|
680
|
+
|
681
|
+
// We use these to set default inner padding and bottom margin
|
682
|
+
// $panel-margin-bottom: emCalc(20px);
|
683
|
+
// $panel-padding: emCalc(20px);
|
684
|
+
|
685
|
+
// We use these to set default font colors
|
686
|
+
// $panel-font-color: #333;
|
687
|
+
// $panel-font-color-alt: #fff;
|
688
|
+
|
689
|
+
//
|
690
|
+
// Pricing Table Variables
|
691
|
+
//
|
692
|
+
|
693
|
+
// We use this to control the border color
|
694
|
+
// $price-table-border: solid 1px #ddd;
|
695
|
+
|
696
|
+
// We use this to control the bottom margin of the pricing table
|
697
|
+
// $price-table-margin-bottom: emCalc(20px);
|
698
|
+
|
699
|
+
// We use these to control the title styles
|
700
|
+
// $price-title-bg: #ddd;
|
701
|
+
// $price-title-padding: emCalc(15px) emCalc(20px);
|
702
|
+
// $price-title-align: center;
|
703
|
+
// $price-title-color: #333;
|
704
|
+
// $price-title-weight: bold;
|
705
|
+
// $price-title-size: emCalc(16px);
|
706
|
+
|
707
|
+
// We use these to control the price styles
|
708
|
+
// $price-money-bg: #eee;
|
709
|
+
// $price-money-padding: emCalc(15px) emCalc(20px);
|
710
|
+
// $price-money-align: center;
|
711
|
+
// $price-money-color: #333;
|
712
|
+
// $price-money-weight: normal;
|
713
|
+
// $price-money-size: emCalc(20px);
|
714
|
+
|
715
|
+
// We use these to control the description styles
|
716
|
+
// $price-bg: #fff;
|
717
|
+
// $price-desc-color: #777;
|
718
|
+
// $price-desc-padding: emCalc(15px);
|
719
|
+
// $price-desc-align: center;
|
720
|
+
// $price-desc-font-size: emCalc(12px);
|
721
|
+
// $price-desc-weight: normal;
|
722
|
+
// $price-desc-line-height: 1.4;
|
723
|
+
// $price-desc-bottom-border: dotted 1px #ddd;
|
724
|
+
|
725
|
+
// We use these to control the list item styles
|
726
|
+
// $price-item-color: #333;
|
727
|
+
// $price-item-padding: emCalc(15px);
|
728
|
+
// $price-item-align: center;
|
729
|
+
// $price-item-font-size: emCalc(14px);
|
730
|
+
// $price-item-weight: normal;
|
731
|
+
// $price-item-bottom-border: dotted 1px #ddd;
|
732
|
+
|
733
|
+
// We use these to control the CTA area styles
|
734
|
+
// $price-cta-bg: #f5f5f5;
|
735
|
+
// $price-cta-align: center;
|
736
|
+
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
|
737
|
+
|
738
|
+
//
|
739
|
+
// Progress Bar Variables
|
740
|
+
//
|
741
|
+
|
742
|
+
// We use this to se the prog bar height
|
743
|
+
// $progress-bar-height: emCalc(25px);
|
744
|
+
// $progress-bar-color: transparent;
|
745
|
+
|
746
|
+
// We use these to control the border styles
|
747
|
+
// $progress-bar-border-color: darken(#fff, 20%);
|
748
|
+
// $progress-bar-border-size: 1px;
|
749
|
+
// $progress-bar-border-style: solid;
|
750
|
+
// $progress-bar-border-radius: $global-radius;
|
751
|
+
|
752
|
+
// We use these to control the margin & padding
|
753
|
+
// $progress-bar-pad: emCalc(2px);
|
754
|
+
// $progress-bar-margin-bottom: emCalc(10px);
|
755
|
+
|
756
|
+
// We use these to set the meter colors
|
757
|
+
// $progress-meter-color: $primary-color;
|
758
|
+
// $progress-meter-secondary-color: $secondary-color;
|
759
|
+
// $progress-meter-success-color: $success-color;
|
760
|
+
// $progress-meter-alert-color: $alert-color;
|
761
|
+
|
762
|
+
// NEED TO FINISH THE LOGIC HERE
|
763
|
+
|
764
|
+
//
|
765
|
+
// Reveal Variables
|
766
|
+
//
|
767
|
+
|
768
|
+
// We use these to control the style of the reveal overlay.
|
769
|
+
// $reveal-overlay-bg: rgba(#000, .45);
|
770
|
+
// $reveal-overlay-bg-old: #000;
|
771
|
+
|
772
|
+
// We use these to control the style of the modal itself.
|
773
|
+
// $reveal-modal-bg: #fff;
|
774
|
+
// $reveal-position-top: 50px;
|
775
|
+
// $reveal-default-width: 80%;
|
776
|
+
// $reveal-modal-padding: emCalc(20px);
|
777
|
+
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
778
|
+
|
779
|
+
// We use these to style the reveal close button
|
780
|
+
// $reveal-close-font-size: emCalc(22px);
|
781
|
+
// $reveal-close-top: emCalc(8px);
|
782
|
+
// $reveal-close-side: emCalc(11px);
|
783
|
+
// $reveal-close-color: #aaa;
|
784
|
+
// $reveal-close-weight: bold;
|
785
|
+
|
786
|
+
// We use these to control the modal border
|
787
|
+
// $reveal-border-style: solid;
|
788
|
+
// $reveal-border-width: 1px;
|
789
|
+
// $reveal-border-color: #666;
|
790
|
+
|
791
|
+
//
|
792
|
+
// Section Variables
|
793
|
+
//
|
794
|
+
|
795
|
+
// We use these to set padding and hover factor
|
796
|
+
// $section-padding: emCalc(15px);
|
797
|
+
$section-function-factor: 5%;
|
798
|
+
|
799
|
+
// These style the titles
|
800
|
+
// $section-title-color: #333;
|
801
|
+
$section-title-bg: #f5f5f5;
|
802
|
+
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
|
803
|
+
// $section-title-bg-active-tabs: #fff;
|
804
|
+
|
805
|
+
// Want to control border size, here ya go!
|
806
|
+
// $section-border-size: 1px;
|
807
|
+
// $section-border-style: solid;
|
808
|
+
$section-border-color: #dfdfdf;
|
809
|
+
|
810
|
+
// Control the color of the background and some size options
|
811
|
+
// $section-content-bg: #fff;
|
812
|
+
// $section-vertical-nav-min-width: emCalc(200px);
|
813
|
+
// $section-bottom-margin: emCalc(20px);
|
814
|
+
|
815
|
+
//
|
816
|
+
// Side Nav Variables
|
817
|
+
//
|
818
|
+
|
819
|
+
// We use this to control padding.
|
820
|
+
// $side-nav-padding: emCalc(14px) 0;
|
821
|
+
|
822
|
+
// We use these to control list styles.
|
823
|
+
// $side-nav-list-type: none;
|
824
|
+
// $side-nav-list-position: inside;
|
825
|
+
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
|
826
|
+
|
827
|
+
// We use these to control link styles.
|
828
|
+
// $side-nav-link-color: $primary-color;
|
829
|
+
// $side-nav-link-color-active: lighten(#000, 30%);
|
830
|
+
// $side-nav-font-size: emCalc(14px);
|
831
|
+
// $side-nav-font-weight: bold;
|
832
|
+
|
833
|
+
// We use these to control border styles
|
834
|
+
// $side-nav-divider-size: 1px;
|
835
|
+
// $side-nav-divider-style: solid;
|
836
|
+
// $side-nav-divider-color: darken(#fff, 10%);
|
837
|
+
|
838
|
+
//
|
839
|
+
// Sub Nav Variables
|
840
|
+
//
|
841
|
+
|
842
|
+
// We use these to control margin and padding
|
843
|
+
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
|
844
|
+
// $sub-nav-list-padding-top: emCalc(4px);
|
845
|
+
|
846
|
+
// We use this to control the definition
|
847
|
+
// $sub-nav-font-size: emCalc(14px);
|
848
|
+
// $sub-nav-font-color: #999;
|
849
|
+
// $sub-nav-font-weight: normal;
|
850
|
+
// $sub-nav-text-decoration: none;
|
851
|
+
// $sub-nav-border-radius: 1000px;
|
852
|
+
|
853
|
+
// We use these to control the active item styles
|
854
|
+
// $sub-nav-active-font-weight: bold;
|
855
|
+
// $sub-nav-active-bg: $primary-color;
|
856
|
+
// $sub-nav-active-color: #fff;
|
857
|
+
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
|
858
|
+
// $sub-nav-active-cursor: default;
|
859
|
+
|
860
|
+
//
|
861
|
+
// Switch Variables
|
862
|
+
//
|
863
|
+
|
864
|
+
// Controlling border styles and background colors for the switch container
|
865
|
+
// $switch-border-color: darken(#fff, 20%);
|
866
|
+
// $switch-border-style: solid;
|
867
|
+
// $switch-border-width: 1px;
|
868
|
+
// $switch-bg: #fff;
|
869
|
+
|
870
|
+
// We use these to control the switch heights for our default classes
|
871
|
+
// $switch-height-tny: 22px;
|
872
|
+
// $switch-height-sml: 28px;
|
873
|
+
// $switch-height-med: 36px;
|
874
|
+
// $switch-height-lrg: 44px;
|
875
|
+
// $switch-bottom-margin: emCalc(20px);
|
876
|
+
|
877
|
+
// We use these to control default font sizes for our classes.
|
878
|
+
// $switch-font-size-tny: 11px;
|
879
|
+
// $switch-font-size-sml: 12px;
|
880
|
+
// $switch-font-size-med: 14px;
|
881
|
+
// $switch-font-size-lrg: 17px;
|
882
|
+
// $switch-label-side-padding: 6px;
|
883
|
+
|
884
|
+
// We use these to style the switch-paddle
|
885
|
+
// $switch-paddle-bg: #fff;
|
886
|
+
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
|
887
|
+
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
|
888
|
+
// $switch-paddle-border-width: 1px;
|
889
|
+
// $switch-paddle-border-style: solid;
|
890
|
+
// $switch-paddle-transition-speed: .1s;
|
891
|
+
// $switch-paddle-transition-ease: ease-out;
|
892
|
+
// $switch-positive-color: lighten($success-color, 50%);
|
893
|
+
// $switch-negative-color: #f5f5f5;
|
894
|
+
|
895
|
+
// Outline Style for tabbing through switches
|
896
|
+
// $switch-label-outline: 1px dotted #888;
|
897
|
+
|
898
|
+
//
|
899
|
+
// Table Variables
|
900
|
+
//
|
901
|
+
|
902
|
+
// These control the background color for the table and even rows
|
903
|
+
// $table-bg: #fff;
|
904
|
+
// $table-even-row-bg: #f9f9f9;
|
905
|
+
|
906
|
+
// These control the table cell border style
|
907
|
+
// $table-border-style: solid;
|
908
|
+
// $table-border-size: 1px;
|
909
|
+
// $table-border-color: #ddd;
|
910
|
+
|
911
|
+
// These control the table head styles
|
912
|
+
// $table-head-bg: #f5f5f5;
|
913
|
+
// $table-head-font-size: emCalc(14px);
|
914
|
+
// $table-head-font-color: #222;
|
915
|
+
// $table-head-font-weight: bold;
|
916
|
+
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
|
917
|
+
|
918
|
+
// These control the row padding and font styles
|
919
|
+
// $table-row-padding: emCalc(9px) emCalc(10px);
|
920
|
+
// $table-row-font-size: emCalc(14px);
|
921
|
+
// $table-row-font-color: #222;
|
922
|
+
// $table-line-height: emCalc(18px);
|
923
|
+
|
924
|
+
// These are for controlling the display and margin of tables
|
925
|
+
// $table-display: table-cell;
|
926
|
+
// $table-margin-bottom: emCalc(20px);
|
927
|
+
|
928
|
+
//
|
929
|
+
// Image Thumbnail Variables
|
930
|
+
//
|
931
|
+
|
932
|
+
// We use these to control border styles
|
933
|
+
// $thumb-border-style: solid;
|
934
|
+
// $thumb-border-width: 4px;
|
935
|
+
// $thumb-border-color: #fff;
|
936
|
+
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
937
|
+
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
938
|
+
|
939
|
+
// Radius and transition speed for thumbs
|
940
|
+
// $thumb-radius: $global-radius;
|
941
|
+
// $thumb-transition-speed: 200ms;
|
942
|
+
|
943
|
+
//
|
944
|
+
// Tooltip Variables
|
945
|
+
//
|
946
|
+
// $has-tip-border-bottom: dotted 1px #ccc;
|
947
|
+
// $has-tip-font-weight: bold;
|
948
|
+
// $has-tip-font-color: #333;
|
949
|
+
// $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
|
950
|
+
// $has-tip-font-color-hover: $primary-color;
|
951
|
+
// $has-tip-cursor-type: help;
|
952
|
+
|
953
|
+
// $tooltip-padding: emCalc(8px);
|
954
|
+
// $tooltip-bg: #000;
|
955
|
+
// $tooltip-font-size: emCalc(15px);
|
956
|
+
// $tooltip-font-weight: bold;
|
957
|
+
// $tooltip-font-color: #fff;
|
958
|
+
// $tooltip-line-height: 1.3;
|
959
|
+
// $tooltip-close-font-size: emCalc(10px);
|
960
|
+
// $tooltip-close-font-weight: normal;
|
961
|
+
// $tooltip-close-font-color: #888;
|
962
|
+
// $tooltip-font-size-sml: emCalc(14px);
|
963
|
+
// $tooltip-radius: $global-radius;
|
964
|
+
// $tooltip-pip-size: 5px;
|
965
|
+
|
966
|
+
//
|
967
|
+
// Top Bar Variables
|
968
|
+
//
|
969
|
+
|
970
|
+
// Background color for the top bar
|
971
|
+
// $topbar-bg: #111;
|
972
|
+
|
973
|
+
// Height and margin
|
974
|
+
// $topbar-height: 45px;
|
975
|
+
$topbar-margin-bottom: 0;
|
976
|
+
|
977
|
+
// Control Input height for top bar
|
978
|
+
// $topbar-input-height: 2.45em;
|
979
|
+
|
980
|
+
// Controlling the styles for the title in the top bar
|
981
|
+
// $topbar-title-weight: bold;
|
982
|
+
// $topbar-title-font-size: emCalc(17px);
|
983
|
+
|
984
|
+
// Set the link colors and styles for top-level nav
|
985
|
+
// $topbar-link-color: #fff;
|
986
|
+
// $topbar-link-weight: bold;
|
987
|
+
// $topbar-link-font-size: emCalc(13px);
|
988
|
+
|
989
|
+
// Style the top bar dropdown elements
|
990
|
+
// $topbar-dropdown-bg: #333;
|
991
|
+
// $topbar-dropdown-link-color: #fff;
|
992
|
+
// $topbar-dropdown-toggle-size: 5px;
|
993
|
+
// $topbar-dropdown-toggle-color: #fff;
|
994
|
+
// $topbar-dropdown-toggle-alpha: 0.5;
|
995
|
+
// $dropdown-label-color: #555;
|
996
|
+
|
997
|
+
// Top menu icon styles
|
998
|
+
// $topbar-menu-link-transform: uppercase;
|
999
|
+
// $topbar-menu-link-font-size: emCalc(13px);
|
1000
|
+
// $topbar-menu-link-weight: bold;
|
1001
|
+
// $topbar-menu-link-color: #fff;
|
1002
|
+
// $topbar-menu-icon-color: #fff;
|
1003
|
+
// $topbar-menu-link-color-toggled: #888;
|
1004
|
+
// $topbar-menu-icon-color-toggled: #888;
|
1005
|
+
|
1006
|
+
// Transitions and breakpoint styles
|
1007
|
+
// $topbar-transition-speed: 300ms;
|
1008
|
+
$topbar-breakpoint: emCalc(768px); // Change to 9999px for always mobile layout
|
1009
|
+
//$topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
|
1010
|
+
|
1011
|
+
|
1012
|
+
@import 'foundation';
|