wordjelly-auth 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +35 -0
- data/app/assets/images/auth/activity.jpg +0 -0
- data/app/assets/images/auth/facebook.svg +1 -0
- data/app/assets/images/auth/google_oauth2.svg +1 -0
- data/app/assets/images/auth/js_pic3.jpg +0 -0
- data/app/assets/images/auth/profile.jpg +0 -0
- data/app/assets/javascripts/auth/admin_create_users.js +2 -0
- data/app/assets/javascripts/auth/application.js +20 -0
- data/app/assets/javascripts/auth/auth_dependencies.js +12 -0
- data/app/assets/javascripts/auth/auth_modals_and_navbar.js +218 -0
- data/app/assets/javascripts/auth/clients.js +2 -0
- data/app/assets/javascripts/auth/search.js +2 -0
- data/app/assets/javascripts/auth/shopping/discounts.js +2 -0
- data/app/assets/javascripts/auth/users/profiles.js +188 -0
- data/app/assets/stylesheets/auth/admin_create_users.css +4 -0
- data/app/assets/stylesheets/auth/application.scss +14 -0
- data/app/assets/stylesheets/auth/auth_default_css.scss +13 -0
- data/app/assets/stylesheets/auth/common-styles.scss +579 -0
- data/app/assets/stylesheets/auth/overrides.scss +26 -0
- data/app/assets/stylesheets/auth/search.css +4 -0
- data/app/assets/stylesheets/auth/shopping/discounts.css +4 -0
- data/app/assets/stylesheets/auth/users/profiles.scss +40 -0
- data/app/assets/stylesheets/scaffold.css +56 -0
- data/app/controllers/auth/admin_create_users_controller.rb +89 -0
- data/app/controllers/auth/application_controller.rb +97 -0
- data/app/controllers/auth/clients_controller.rb +105 -0
- data/app/controllers/auth/concerns/activity_controller_concern.rb +32 -0
- data/app/controllers/auth/concerns/devise_concern.rb +193 -0
- data/app/controllers/auth/concerns/omni_concern.rb +310 -0
- data/app/controllers/auth/concerns/otp_concern.rb +251 -0
- data/app/controllers/auth/concerns/shopping/cart_controller_concern.rb +105 -0
- data/app/controllers/auth/concerns/shopping/cart_item_controller_concern.rb +150 -0
- data/app/controllers/auth/concerns/shopping/discount_controller_concern.rb +97 -0
- data/app/controllers/auth/concerns/shopping/pay_u_money_controller_concern.rb +38 -0
- data/app/controllers/auth/concerns/shopping/payment_controller_concern.rb +101 -0
- data/app/controllers/auth/concerns/shopping/product_controller_concern.rb +68 -0
- data/app/controllers/auth/concerns/token_concern.rb +187 -0
- data/app/controllers/auth/confirmations_controller.rb +3 -0
- data/app/controllers/auth/mailgun_controller.rb +8 -0
- data/app/controllers/auth/omniauth_callbacks_controller.rb +6 -0
- data/app/controllers/auth/passwords_controller.rb +4 -0
- data/app/controllers/auth/profiles_controller.rb +156 -0
- data/app/controllers/auth/registrations_controller.rb +99 -0
- data/app/controllers/auth/search_controller.rb +61 -0
- data/app/controllers/auth/sessions_controller.rb +20 -0
- data/app/controllers/auth/shopping/cart_items_controller.rb +14 -0
- data/app/controllers/auth/shopping/carts_controller.rb +13 -0
- data/app/controllers/auth/shopping/discounts_controller.rb +19 -0
- data/app/controllers/auth/shopping/payments_controller.rb +13 -0
- data/app/controllers/auth/shopping/products_controller.rb +17 -0
- data/app/controllers/auth/shopping/shopping_controller.rb +86 -0
- data/app/controllers/auth/unlocks_controller.rb +3 -0
- data/app/controllers/auth/webhooks_controller.rb +3 -0
- data/app/helpers/auth/admin_create_users_helper.rb +2 -0
- data/app/helpers/auth/application_helper.rb +136 -0
- data/app/helpers/auth/clients_helper.rb +4 -0
- data/app/helpers/auth/resource_helper.rb +10 -0
- data/app/helpers/auth/search_helper.rb +2 -0
- data/app/helpers/auth/shopping/cart_items/cart_items_helper.rb +29 -0
- data/app/helpers/auth/shopping/carts/carts_helper.rb +25 -0
- data/app/helpers/auth/shopping/discounts/discounts_helper.rb +39 -0
- data/app/helpers/auth/shopping/payments/pay_u_money_helper.rb +56 -0
- data/app/helpers/auth/shopping/payments/payments_helper.rb +54 -0
- data/app/helpers/auth/shopping/products/products_helper.rb +52 -0
- data/app/helpers/auth/shopping/shopping_helper.rb +3 -0
- data/app/helpers/auth/users/profiles_helper.rb +12 -0
- data/app/jobs/otp_job.rb +92 -0
- data/app/mailers/application_mailer.rb +4 -0
- data/app/mailers/auth/notifier.rb +9 -0
- data/app/models/auth/admin_create_user.rb +3 -0
- data/app/models/auth/client.rb +52 -0
- data/app/models/auth/concerns/activity_concern.rb +112 -0
- data/app/models/auth/concerns/chief_model_concern.rb +73 -0
- data/app/models/auth/concerns/es_concern.rb +21 -0
- data/app/models/auth/concerns/notification_concern.rb +232 -0
- data/app/models/auth/concerns/notification_response_concern.rb +71 -0
- data/app/models/auth/concerns/owner_concern.rb +81 -0
- data/app/models/auth/concerns/shopping/cart_concern.rb +329 -0
- data/app/models/auth/concerns/shopping/cart_item_concern.rb +437 -0
- data/app/models/auth/concerns/shopping/discount_concern.rb +482 -0
- data/app/models/auth/concerns/shopping/discount_flow.txt +11 -0
- data/app/models/auth/concerns/shopping/pay_u_money_concern.rb +184 -0
- data/app/models/auth/concerns/shopping/payment_concern.rb +613 -0
- data/app/models/auth/concerns/shopping/product_concern.rb +102 -0
- data/app/models/auth/concerns/sms_otp_concern.rb +68 -0
- data/app/models/auth/concerns/user_concern.rb +788 -0
- data/app/models/auth/identity.rb +23 -0
- data/app/models/auth/shopping/cart.rb +3 -0
- data/app/models/auth/shopping/cart_item.rb +6 -0
- data/app/models/auth/shopping/cart_item_payment_result.rb +7 -0
- data/app/models/auth/shopping/discount.rb +4 -0
- data/app/models/auth/shopping/payment.rb +5 -0
- data/app/models/auth/shopping/product.rb +5 -0
- data/app/models/auth/user.rb +3 -0
- data/app/views/auth/admin_create_users/_admin_actions.html.erb +46 -0
- data/app/views/auth/admin_create_users/_form.html.erb +19 -0
- data/app/views/auth/admin_create_users/edit.html.erb +6 -0
- data/app/views/auth/admin_create_users/index.html.erb +25 -0
- data/app/views/auth/admin_create_users/new.html.erb +5 -0
- data/app/views/auth/admin_create_users/show.html.erb +8 -0
- data/app/views/auth/clients/_form.html.erb +41 -0
- data/app/views/auth/clients/edit.html.erb +6 -0
- data/app/views/auth/clients/index.html.erb +33 -0
- data/app/views/auth/clients/new.html.erb +5 -0
- data/app/views/auth/clients/show.html.erb +21 -0
- data/app/views/auth/confirmations/_enter_otp.html.erb +27 -0
- data/app/views/auth/confirmations/_get_otp_status.html.erb +25 -0
- data/app/views/auth/confirmations/_new_otp_input.js.erb +11 -0
- data/app/views/auth/confirmations/_resend_otp.js.erb +8 -0
- data/app/views/auth/confirmations/_resend_sms_otp.html.erb +18 -0
- data/app/views/auth/confirmations/_verify_otp.js.erb +64 -0
- data/app/views/auth/confirmations/create.js.erb +8 -0
- data/app/views/auth/confirmations/enter_otp.html.erb +7 -0
- data/app/views/auth/confirmations/get_otp_status.html.erb +3 -0
- data/app/views/auth/confirmations/new.html.erb +1 -0
- data/app/views/auth/confirmations/new.js.erb +16 -0
- data/app/views/auth/confirmations/otp_status_result.html.erb +20 -0
- data/app/views/auth/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/auth/mailer/password_change.html.erb +3 -0
- data/app/views/auth/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/auth/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/auth/modals/_ajax_error_modal.html.erb +3 -0
- data/app/views/auth/modals/_ajax_error_modal_content.html.erb +0 -0
- data/app/views/auth/modals/_edit_account_content.html.erb +68 -0
- data/app/views/auth/modals/_edit_account_success_content.html.erb +5 -0
- data/app/views/auth/modals/_error_notification.html.erb +8 -0
- data/app/views/auth/modals/_forgot_password_content.html.erb +18 -0
- data/app/views/auth/modals/_forgot_password_success_content.html.erb +8 -0
- data/app/views/auth/modals/_login_default_content.html.erb +3 -0
- data/app/views/auth/modals/_login_forms.html.erb +13 -0
- data/app/views/auth/modals/_login_navigation_options.html.erb +12 -0
- data/app/views/auth/modals/_new_otp_input.html.erb +28 -0
- data/app/views/auth/modals/_oauth_and_submit.html.erb +21 -0
- data/app/views/auth/modals/_recaptcha_tags.html.erb +4 -0
- data/app/views/auth/modals/_resend_confirmation_content.html.erb +17 -0
- data/app/views/auth/modals/_resend_confirmation_success_content.html.erb +8 -0
- data/app/views/auth/modals/_resend_otp.html.erb +23 -0
- data/app/views/auth/modals/_resource_errors.js.erb +24 -0
- data/app/views/auth/modals/_sign_in_inputs.html.erb +10 -0
- data/app/views/auth/modals/_sign_in_needed_modal.html.erb +3 -0
- data/app/views/auth/modals/_sign_in_success_content.html.erb +5 -0
- data/app/views/auth/modals/_sign_up_inputs.html.erb +9 -0
- data/app/views/auth/modals/_sign_up_success_content.html.erb +1 -0
- data/app/views/auth/modals/_sign_up_success_inactive_content.html.erb +2 -0
- data/app/views/auth/modals/_unlock_content.html.erb +17 -0
- data/app/views/auth/modals/_verify_otp.html.erb +1 -0
- data/app/views/auth/modals/base_modal/_base.html.erb +25 -0
- data/app/views/auth/modals/login.js.erb +120 -0
- data/app/views/auth/modals/unlock_success_content.html.erb +8 -0
- data/app/views/auth/notifier/_email.html.erb +3 -0
- data/app/views/auth/notifier/notification.html.erb +2 -0
- data/app/views/auth/notifier/notification.text.erb +1 -0
- data/app/views/auth/omniauth_callbacks/failure.html.erb +4 -0
- data/app/views/auth/passwords/create.js.erb +12 -0
- data/app/views/auth/passwords/edit.html.erb +25 -0
- data/app/views/auth/passwords/new.html.erb +16 -0
- data/app/views/auth/passwords/new.js.erb +19 -0
- data/app/views/auth/profiles/_proxy_resource.html.erb +5 -0
- data/app/views/auth/profiles/set_proxy_resource.js.erb +1 -0
- data/app/views/auth/profiles/show.html.erb +8 -0
- data/app/views/auth/registrations/create.js.erb +40 -0
- data/app/views/auth/registrations/edit.html.erb +2 -0
- data/app/views/auth/registrations/edit.js.erb +5 -0
- data/app/views/auth/registrations/new.html.erb +33 -0
- data/app/views/auth/registrations/update.js.erb +47 -0
- data/app/views/auth/search/_search_bar.html.erb +11 -0
- data/app/views/auth/search/_search_result.html.erb +7 -0
- data/app/views/auth/search/_search_results.html.erb +4 -0
- data/app/views/auth/search/authenticated_user_search.js.erb +45 -0
- data/app/views/auth/search/authenticated_user_search.json +7 -0
- data/app/views/auth/sessions/create.js.erb +5 -0
- data/app/views/auth/sessions/new.html.erb +4 -0
- data/app/views/auth/sessions/new.js.erb +20 -0
- data/app/views/auth/shared/_devise_error_messages.html.erb +9 -0
- data/app/views/auth/shared/_links.html.erb +25 -0
- data/app/views/auth/shared/_object_errors.html.erb +12 -0
- data/app/views/auth/shared/_proxy_resource.html.erb +18 -0
- data/app/views/auth/shopping/cart_items/_form.html.erb +34 -0
- data/app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb +31 -0
- data/app/views/auth/shopping/cart_items/create_multiple.html.erb +6 -0
- data/app/views/auth/shopping/cart_items/create_multiple.json.erb +9 -0
- data/app/views/auth/shopping/cart_items/edit.html.erb +6 -0
- data/app/views/auth/shopping/cart_items/index.html.erb +52 -0
- data/app/views/auth/shopping/cart_items/new.html.erb +5 -0
- data/app/views/auth/shopping/cart_items/show.html.erb +13 -0
- data/app/views/auth/shopping/carts/_form.html.erb +35 -0
- data/app/views/auth/shopping/carts/_payment_links.html.erb +27 -0
- data/app/views/auth/shopping/carts/_remove_cart_item.html.erb +11 -0
- data/app/views/auth/shopping/carts/_show_cart_balance_info.html.erb +35 -0
- data/app/views/auth/shopping/carts/edit.html.erb +6 -0
- data/app/views/auth/shopping/carts/index.html.erb +43 -0
- data/app/views/auth/shopping/carts/new.html.erb +5 -0
- data/app/views/auth/shopping/carts/show.html.erb +46 -0
- data/app/views/auth/shopping/discounts/_form.html.erb +18 -0
- data/app/views/auth/shopping/discounts/_form_for_create_multiple_cart_items.html.erb +17 -0
- data/app/views/auth/shopping/discounts/_show_pending_discount_request.html.erb +17 -0
- data/app/views/auth/shopping/discounts/destroy.html.erb +2 -0
- data/app/views/auth/shopping/discounts/edit.html.erb +29 -0
- data/app/views/auth/shopping/discounts/index.html.erb +40 -0
- data/app/views/auth/shopping/discounts/new.html.erb +1 -0
- data/app/views/auth/shopping/discounts/show.html.erb +18 -0
- data/app/views/auth/shopping/discounts/update.html.erb +2 -0
- data/app/views/auth/shopping/payments/_approve_payment.html.erb +7 -0
- data/app/views/auth/shopping/payments/_cash_card_cheque.html.erb +24 -0
- data/app/views/auth/shopping/payments/_create_discount_coupon.html.erb +5 -0
- data/app/views/auth/shopping/payments/_form.html.erb +19 -0
- data/app/views/auth/shopping/payments/_gateway.html.erb +21 -0
- data/app/views/auth/shopping/payments/_proceed_to_gateway_or_verify_payment.html.erb +18 -0
- data/app/views/auth/shopping/payments/_refresh_payment.html.erb +7 -0
- data/app/views/auth/shopping/payments/_refund.html.erb +10 -0
- data/app/views/auth/shopping/payments/_show_payment_receipt.html.erb +12 -0
- data/app/views/auth/shopping/payments/edit.html.erb +6 -0
- data/app/views/auth/shopping/payments/index.html.erb +43 -0
- data/app/views/auth/shopping/payments/new.html.erb +13 -0
- data/app/views/auth/shopping/payments/show.html.erb +36 -0
- data/app/views/auth/shopping/products/_form.html.erb +27 -0
- data/app/views/auth/shopping/products/edit.html.erb +6 -0
- data/app/views/auth/shopping/products/index.html.erb +48 -0
- data/app/views/auth/shopping/products/index.json.erb +7 -0
- data/app/views/auth/shopping/products/new.html.erb +5 -0
- data/app/views/auth/shopping/products/show.html.erb +12 -0
- data/app/views/auth/shopping/products/show.json.erb +1 -0
- data/app/views/auth/unlocks/create.js.erb +12 -0
- data/app/views/auth/unlocks/new.html.erb +14 -0
- data/app/views/auth/unlocks/new.js.erb +17 -0
- data/app/views/auth/users/_search_result.html.erb +8 -0
- data/app/views/auth/users/profiles/_user_data.html.erb +4 -0
- data/app/views/auth/users/profiles/show.html.erb +54 -0
- data/app/views/layouts/auth/_modals.html.erb +2 -0
- data/app/views/layouts/auth/application.html.erb +17 -0
- data/app/views/layouts/auth/navbar/_navbar.html.erb +49 -0
- data/app/views/layouts/auth/navbar/_personalization.html.erb +17 -0
- data/app/views/layouts/auth/navbar/_progress_spinner.html.erb +11 -0
- data/app/views/layouts/mailer.html.erb +5 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/config/initializers/active_model.rb +36 -0
- data/config/initializers/devise.rb +623 -0
- data/config/initializers/json.rb +10 -0
- data/config/initializers/omniauth.rb +447 -0
- data/config/initializers/redis.rb +2 -0
- data/config/initializers/redis.yml +14 -0
- data/config/locales/devise.en.yml +63 -0
- data/config/routes.rb +1 -0
- data/lib/assets/javascripts/data.js +126 -0
- data/lib/assets/javascripts/jquery.calendario.js +394 -0
- data/lib/assets/javascripts/jquery.tagcloud.js +92 -0
- data/lib/assets/javascripts/leanModal.js +236 -0
- data/lib/assets/javascripts/main.js +668 -0
- data/lib/assets/javascripts/modernizr.custom.63321.js +4 -0
- data/lib/assets/javascripts/payumoney.js +9 -0
- data/lib/assets/javascripts/search.js +36 -0
- data/lib/assets/javascripts/spinner.js +77 -0
- data/lib/assets/javascripts/trianglify.min.js +2 -0
- data/lib/assets/javascripts/you_need_to_sign_in.js.erb +478 -0
- data/lib/assets/stylesheets/calendar.css +111 -0
- data/lib/assets/stylesheets/calendar_modifications.scss +276 -0
- data/lib/auth.rb +32 -0
- data/lib/auth/custom_failure.rb +3 -0
- data/lib/auth/engine.rb +231 -0
- data/lib/auth/job_exception_handler.rb +7 -0
- data/lib/auth/mailgun.rb +28 -0
- data/lib/auth/notify.rb +8 -0
- data/lib/auth/omniauth/path.rb +104 -0
- data/lib/auth/partials.rb +12 -0
- data/lib/auth/rails/routes.rb +169 -0
- data/lib/auth/search/main.rb +97 -0
- data/lib/auth/sidekiq_up.rb +16 -0
- data/lib/auth/two_factor_otp.rb +202 -0
- data/lib/auth/url_shortener.rb +29 -0
- data/lib/auth/version.rb +3 -0
- data/lib/tasks/auth_tasks.rake +4 -0
- metadata +863 -0
@@ -0,0 +1,14 @@
|
|
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 any plugin's vendor/assets/stylesheets directory 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 bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
12
|
+
*
|
13
|
+
*= require_self
|
14
|
+
*/
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
*= require calendar
|
4
|
+
*= require calendar_modifications
|
5
|
+
*= require auth/common-styles
|
6
|
+
*= require auth/overrides
|
7
|
+
*/
|
8
|
+
@import "materialize";
|
9
|
+
@import "materialize/components/color";
|
10
|
+
$primary-color: color("blue", "lighten-2") !default;
|
11
|
+
|
12
|
+
.modal { max-height: 90% !important ;}
|
13
|
+
.sign_in {background-color: blue; cursor: pointer;}
|
@@ -0,0 +1,579 @@
|
|
1
|
+
.height-100-percent{
|
2
|
+
height:100% !important;
|
3
|
+
}
|
4
|
+
|
5
|
+
.width-50-percent{
|
6
|
+
width:50% !important;
|
7
|
+
}
|
8
|
+
|
9
|
+
//visibility
|
10
|
+
|
11
|
+
.visible_element{
|
12
|
+
visibility:visible !important;
|
13
|
+
}
|
14
|
+
|
15
|
+
.hidden_element{
|
16
|
+
visibility:hidden !important;
|
17
|
+
}
|
18
|
+
|
19
|
+
.display_none{
|
20
|
+
display:none;
|
21
|
+
}
|
22
|
+
|
23
|
+
//cursor options
|
24
|
+
|
25
|
+
.cursor-pointer{
|
26
|
+
cursor : pointer;
|
27
|
+
}
|
28
|
+
.cursor-pointer:hover{
|
29
|
+
text-decoration:underline;
|
30
|
+
}
|
31
|
+
|
32
|
+
//font-sizes
|
33
|
+
|
34
|
+
.fs-8{
|
35
|
+
font-size:8px !important;
|
36
|
+
}
|
37
|
+
|
38
|
+
.fs-10{
|
39
|
+
font-size:10px !important;
|
40
|
+
}
|
41
|
+
|
42
|
+
.fs-12{
|
43
|
+
font-size:12px !important;
|
44
|
+
}
|
45
|
+
|
46
|
+
.fs-13{
|
47
|
+
font-size:13px !important;
|
48
|
+
}
|
49
|
+
|
50
|
+
.fs-14{
|
51
|
+
font-size:14px !important;
|
52
|
+
}
|
53
|
+
|
54
|
+
.fs-15{
|
55
|
+
font-size:15px !important;
|
56
|
+
}
|
57
|
+
|
58
|
+
.fs-16{
|
59
|
+
font-size:16px !important;
|
60
|
+
}
|
61
|
+
|
62
|
+
.fs-18{
|
63
|
+
font-size:18px !important;
|
64
|
+
}
|
65
|
+
|
66
|
+
.fs-19{
|
67
|
+
font-size:19px !important;
|
68
|
+
}
|
69
|
+
|
70
|
+
.fs-20{
|
71
|
+
font-size:20px !important;
|
72
|
+
}
|
73
|
+
|
74
|
+
.fs-21{
|
75
|
+
font-size:21px !important;
|
76
|
+
}
|
77
|
+
|
78
|
+
.fs-22{
|
79
|
+
font-size:22px !important;
|
80
|
+
}
|
81
|
+
|
82
|
+
.fs-23{
|
83
|
+
font-size:23px !important;
|
84
|
+
}
|
85
|
+
|
86
|
+
.fs-25{
|
87
|
+
font-size:25px !important;
|
88
|
+
}
|
89
|
+
|
90
|
+
|
91
|
+
.fs-30{
|
92
|
+
font-size:30px !important;
|
93
|
+
}
|
94
|
+
|
95
|
+
.fs-35{
|
96
|
+
font-size:35px !important;
|
97
|
+
}
|
98
|
+
|
99
|
+
.fs-40{
|
100
|
+
font-size:40px !important;
|
101
|
+
}
|
102
|
+
|
103
|
+
|
104
|
+
.fs-30{
|
105
|
+
font-size:30px !important;
|
106
|
+
}
|
107
|
+
|
108
|
+
.fs-40{
|
109
|
+
font-size:40px !important;
|
110
|
+
}
|
111
|
+
|
112
|
+
.fs-50{
|
113
|
+
font-size:50px !important;
|
114
|
+
}
|
115
|
+
|
116
|
+
.fs-60{
|
117
|
+
font-size:60px !important;
|
118
|
+
}
|
119
|
+
|
120
|
+
.fs-100{
|
121
|
+
font-size:100px !important;
|
122
|
+
}
|
123
|
+
|
124
|
+
.fs-150{
|
125
|
+
font-size:150px !important;
|
126
|
+
}
|
127
|
+
|
128
|
+
.fs-200{
|
129
|
+
font-size:200px !important;
|
130
|
+
}
|
131
|
+
|
132
|
+
.fs-250{
|
133
|
+
font-size:250px !important;
|
134
|
+
}
|
135
|
+
|
136
|
+
|
137
|
+
//font weigths
|
138
|
+
.fw-100{
|
139
|
+
font-weight:100 !important;
|
140
|
+
}
|
141
|
+
|
142
|
+
.fw-200{
|
143
|
+
font-weight:200 !important;
|
144
|
+
}
|
145
|
+
|
146
|
+
.fw-300{
|
147
|
+
font-weight:300 !important;
|
148
|
+
}
|
149
|
+
|
150
|
+
.fw-400{
|
151
|
+
font-weight:400 !important;
|
152
|
+
}
|
153
|
+
|
154
|
+
.fw-500{
|
155
|
+
font-weight:500 !important;
|
156
|
+
}
|
157
|
+
|
158
|
+
/////////////////////////////////////////////margin-top.
|
159
|
+
|
160
|
+
.m-0-top{
|
161
|
+
margin-top:0px !important;
|
162
|
+
}
|
163
|
+
|
164
|
+
.m-2-top{
|
165
|
+
margin-top:2px !important;
|
166
|
+
}
|
167
|
+
|
168
|
+
.m-4-top{
|
169
|
+
margin-top:4px !important;
|
170
|
+
}
|
171
|
+
|
172
|
+
.m-7-top{
|
173
|
+
margin-top:7px !important;
|
174
|
+
}
|
175
|
+
|
176
|
+
.m-5-top{
|
177
|
+
margin-top:5px !important;
|
178
|
+
}
|
179
|
+
|
180
|
+
.m-10-top{
|
181
|
+
margin-top:10px !important;
|
182
|
+
}
|
183
|
+
|
184
|
+
.m-15-top{
|
185
|
+
margin-top:15px !important;
|
186
|
+
}
|
187
|
+
|
188
|
+
.m-20-top{
|
189
|
+
margin-top:20px !important;
|
190
|
+
}
|
191
|
+
|
192
|
+
.m-25-top{
|
193
|
+
margin-top:25px !important;
|
194
|
+
}
|
195
|
+
|
196
|
+
.m-30-top{
|
197
|
+
margin-top:30px !important;
|
198
|
+
}
|
199
|
+
|
200
|
+
.m-40-top{
|
201
|
+
margin-top:40px !important;
|
202
|
+
}
|
203
|
+
|
204
|
+
.m-50-top{
|
205
|
+
margin-top:50px !important;
|
206
|
+
}
|
207
|
+
|
208
|
+
.m-70-top{
|
209
|
+
margin-top:70px !important;
|
210
|
+
}
|
211
|
+
|
212
|
+
.m-80-top{
|
213
|
+
margin-top:80px !important;
|
214
|
+
}
|
215
|
+
|
216
|
+
////////////////////////////////////////////margin-bottom
|
217
|
+
|
218
|
+
.m-0-bottom{
|
219
|
+
margin-bottom:0px !important;
|
220
|
+
}
|
221
|
+
|
222
|
+
.m-5-bottom{
|
223
|
+
margin-bottom:5px !important;
|
224
|
+
}
|
225
|
+
|
226
|
+
.m-10-bottom{
|
227
|
+
margin-bottom:10px !important;
|
228
|
+
}
|
229
|
+
|
230
|
+
.m-14-bottom{
|
231
|
+
margin-bottom:14px !important;
|
232
|
+
}
|
233
|
+
|
234
|
+
.m-15-bottom{
|
235
|
+
margin-bottom:15px !important;
|
236
|
+
}
|
237
|
+
|
238
|
+
.m-20-bottom{
|
239
|
+
margin-bottom:20px !important;
|
240
|
+
}
|
241
|
+
|
242
|
+
.m-25-bottom{
|
243
|
+
margin-bottom:25px !important;
|
244
|
+
}
|
245
|
+
|
246
|
+
.m-30-bottom{
|
247
|
+
margin-bottom:30px !important;
|
248
|
+
}
|
249
|
+
|
250
|
+
.m-40-bottom{
|
251
|
+
margin-bottom:40px !important;
|
252
|
+
}
|
253
|
+
|
254
|
+
.m-50-bottom{
|
255
|
+
margin-bottom:50px !important;
|
256
|
+
}
|
257
|
+
|
258
|
+
.m-55-bottom{
|
259
|
+
margin-bottom:55px !important;
|
260
|
+
}
|
261
|
+
|
262
|
+
.m-0-all{
|
263
|
+
margin:0px !important;
|
264
|
+
}
|
265
|
+
|
266
|
+
.m-70-bottom{
|
267
|
+
margin-bottom:70px !important;
|
268
|
+
}
|
269
|
+
|
270
|
+
.m-80-bottom{
|
271
|
+
margin-bottom:80px !important;
|
272
|
+
}
|
273
|
+
|
274
|
+
//////////////////////////////////////////margin-left
|
275
|
+
|
276
|
+
.m-20-percent-left{
|
277
|
+
margin-left:20% !important;
|
278
|
+
}
|
279
|
+
|
280
|
+
.m-17-percent-left{
|
281
|
+
margin-left:17% !important;
|
282
|
+
}
|
283
|
+
|
284
|
+
.m-10-percent-left{
|
285
|
+
margin-left:10% !important;
|
286
|
+
}
|
287
|
+
|
288
|
+
.m-15-percent-left{
|
289
|
+
margin-left:15% !important;
|
290
|
+
}
|
291
|
+
|
292
|
+
|
293
|
+
.m-25-percent-left{
|
294
|
+
margin-left:25% !important;
|
295
|
+
}
|
296
|
+
|
297
|
+
.m-0-left{
|
298
|
+
margin-left:0px !important;
|
299
|
+
}
|
300
|
+
|
301
|
+
.m-n-4-left{
|
302
|
+
margin-left:-4px !important;
|
303
|
+
}
|
304
|
+
|
305
|
+
.m-5-left{
|
306
|
+
margin-left:5px !important;
|
307
|
+
}
|
308
|
+
|
309
|
+
.m-10-left{
|
310
|
+
margin-left:10px !important;
|
311
|
+
}
|
312
|
+
|
313
|
+
.m-15-left{
|
314
|
+
margin-left:15px !important;
|
315
|
+
}
|
316
|
+
|
317
|
+
.m-17-left{
|
318
|
+
margin-left:17px !important;
|
319
|
+
}
|
320
|
+
|
321
|
+
.m-20-left{
|
322
|
+
margin-left:20px !important;
|
323
|
+
}
|
324
|
+
|
325
|
+
.m-30-left{
|
326
|
+
margin-left:30px !important;
|
327
|
+
}
|
328
|
+
|
329
|
+
.m-25-percent-left{
|
330
|
+
margin-left:25% !important;
|
331
|
+
}
|
332
|
+
|
333
|
+
.m-40-left{
|
334
|
+
margin-left:40px !important;
|
335
|
+
}
|
336
|
+
|
337
|
+
.m-45-left{
|
338
|
+
margin-left:45px !important;
|
339
|
+
}
|
340
|
+
|
341
|
+
.m-50-left{
|
342
|
+
margin-left:50px !important;
|
343
|
+
}
|
344
|
+
|
345
|
+
.m-60-left{
|
346
|
+
margin-left:60px !important;
|
347
|
+
}
|
348
|
+
|
349
|
+
.m-70-left{
|
350
|
+
margin-left:70px !important;
|
351
|
+
}
|
352
|
+
|
353
|
+
.m-80-left{
|
354
|
+
margin-left:80px !important;
|
355
|
+
}
|
356
|
+
|
357
|
+
///////////////////////////////////////margin-right
|
358
|
+
|
359
|
+
.m-0-right{
|
360
|
+
margin-right:0px !important;
|
361
|
+
}
|
362
|
+
|
363
|
+
.m-5-right{
|
364
|
+
margin-right:5px !important;
|
365
|
+
}
|
366
|
+
|
367
|
+
.m-15-right{
|
368
|
+
margin-right:15px !important;
|
369
|
+
}
|
370
|
+
|
371
|
+
.m-10-right{
|
372
|
+
margin-right:10px !important;
|
373
|
+
}
|
374
|
+
|
375
|
+
.m-20-right{
|
376
|
+
margin-right:20px !important;
|
377
|
+
}
|
378
|
+
|
379
|
+
.m-30-right{
|
380
|
+
margin-right:30px !important;
|
381
|
+
}
|
382
|
+
|
383
|
+
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
///paddings
|
388
|
+
|
389
|
+
//////////////////////////////////////////////padding-top
|
390
|
+
|
391
|
+
.p-0-top{
|
392
|
+
padding-top:0px !important;
|
393
|
+
}
|
394
|
+
|
395
|
+
.p-5-top{
|
396
|
+
padding-top:5px !important;
|
397
|
+
}
|
398
|
+
|
399
|
+
|
400
|
+
.p-10-top{
|
401
|
+
padding-top:10px !important;
|
402
|
+
}
|
403
|
+
|
404
|
+
.p-12-top{
|
405
|
+
padding-top:12px !important;
|
406
|
+
}
|
407
|
+
|
408
|
+
.p-15-top{
|
409
|
+
padding-top:15px !important;
|
410
|
+
}
|
411
|
+
|
412
|
+
.p-19-top{
|
413
|
+
padding-top:19px !important;
|
414
|
+
}
|
415
|
+
|
416
|
+
.p-20-top{
|
417
|
+
padding-top:20px !important;
|
418
|
+
}
|
419
|
+
|
420
|
+
.p-25-top{
|
421
|
+
padding-top:25px !important;
|
422
|
+
}
|
423
|
+
|
424
|
+
.p-30-top{
|
425
|
+
padding-top:30px !important;
|
426
|
+
}
|
427
|
+
|
428
|
+
.p-40-top{
|
429
|
+
padding-top:40px !important;
|
430
|
+
}
|
431
|
+
|
432
|
+
.p-50-top{
|
433
|
+
padding-top:50px !important;
|
434
|
+
}
|
435
|
+
|
436
|
+
.p-60-top{
|
437
|
+
padding-top:60px !important;
|
438
|
+
}
|
439
|
+
|
440
|
+
.p-70-top{
|
441
|
+
padding-top:70px !important;
|
442
|
+
}
|
443
|
+
|
444
|
+
.p-80-top{
|
445
|
+
padding-top:80px !important;
|
446
|
+
}
|
447
|
+
|
448
|
+
|
449
|
+
//////////////////////////////padding - bottom
|
450
|
+
|
451
|
+
.p-0-bottom{
|
452
|
+
padding-bottom:0px !important;
|
453
|
+
}
|
454
|
+
|
455
|
+
.p-3-bottom{
|
456
|
+
padding-bottom:3px !important;
|
457
|
+
}
|
458
|
+
|
459
|
+
.p-5-bottom{
|
460
|
+
padding-bottom:5px !important;
|
461
|
+
}
|
462
|
+
|
463
|
+
.p-10-bottom{
|
464
|
+
padding-bottom:10px !important;
|
465
|
+
}
|
466
|
+
|
467
|
+
.p-15-bottom{
|
468
|
+
padding-bottom:15px !important;
|
469
|
+
}
|
470
|
+
|
471
|
+
.p-18-bottom{
|
472
|
+
padding-bottom:18px !important;
|
473
|
+
}
|
474
|
+
|
475
|
+
.p-20-bottom{
|
476
|
+
padding-bottom:20px !important;
|
477
|
+
}
|
478
|
+
|
479
|
+
.p-30-bottom{
|
480
|
+
padding-bottom:30px !important;
|
481
|
+
}
|
482
|
+
|
483
|
+
.p-40-bottom{
|
484
|
+
padding-bottom:40px !important;
|
485
|
+
}
|
486
|
+
|
487
|
+
.p-50-bottom{
|
488
|
+
padding-bottom:50px !important;
|
489
|
+
}
|
490
|
+
|
491
|
+
.p-80-bottom{
|
492
|
+
padding-bottom:80px !important;
|
493
|
+
}
|
494
|
+
|
495
|
+
.p-0-all{
|
496
|
+
padding:0px !important;
|
497
|
+
}
|
498
|
+
|
499
|
+
|
500
|
+
//////////////////////////////////padding-left
|
501
|
+
|
502
|
+
.p-0-left{
|
503
|
+
padding-left:0px !important;
|
504
|
+
}
|
505
|
+
|
506
|
+
.p-5-left{
|
507
|
+
padding-left:5px !important;
|
508
|
+
}
|
509
|
+
|
510
|
+
.p-7-left{
|
511
|
+
padding-left:7px !important;
|
512
|
+
}
|
513
|
+
|
514
|
+
.p-10-left{
|
515
|
+
padding-left:10px !important;
|
516
|
+
}
|
517
|
+
|
518
|
+
.p-13-left{
|
519
|
+
padding-left:13px !important;
|
520
|
+
}
|
521
|
+
|
522
|
+
.p-20-left{
|
523
|
+
padding-left:20px !important;
|
524
|
+
}
|
525
|
+
|
526
|
+
.p-30-left{
|
527
|
+
padding-left:30px !important;
|
528
|
+
}
|
529
|
+
|
530
|
+
.p-40-left{
|
531
|
+
padding-left:40px !important;
|
532
|
+
}
|
533
|
+
|
534
|
+
.p-60-left{
|
535
|
+
padding-left:60px !important;
|
536
|
+
}
|
537
|
+
|
538
|
+
.p-100-left{
|
539
|
+
padding-left:100px !important;
|
540
|
+
}
|
541
|
+
|
542
|
+
/////////////////////////////padding-right
|
543
|
+
|
544
|
+
.p-0-right{
|
545
|
+
padding-right:0px !important;
|
546
|
+
}
|
547
|
+
|
548
|
+
.p-5-right{
|
549
|
+
padding-right:5px !important;
|
550
|
+
}
|
551
|
+
|
552
|
+
.p-10-right{
|
553
|
+
padding-right:10px !important;
|
554
|
+
}
|
555
|
+
|
556
|
+
.p-15-right{
|
557
|
+
padding-right:15px !important;
|
558
|
+
}
|
559
|
+
|
560
|
+
.p-20-right{
|
561
|
+
padding-right:20px !important;
|
562
|
+
}
|
563
|
+
|
564
|
+
.p-30-right{
|
565
|
+
padding-right:30px !important;
|
566
|
+
}
|
567
|
+
|
568
|
+
.p-40-right{
|
569
|
+
padding-right:40px !important;
|
570
|
+
}
|
571
|
+
|
572
|
+
///////////////////////////////padding-all
|
573
|
+
.p-5-all{
|
574
|
+
padding:5px !important;
|
575
|
+
}
|
576
|
+
|
577
|
+
.p-10-all{
|
578
|
+
padding:10px !important;
|
579
|
+
}
|