stylish 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -10
- data/ARCHITECTURE.md +96 -0
- data/Gemfile +8 -0
- data/README.md +25 -29
- data/Rakefile +24 -0
- data/bin/stylish +33 -0
- data/lib/stylish.rb +36 -1
- data/lib/stylish/configuration.rb +37 -0
- data/lib/stylish/core_ext.rb +20 -0
- data/lib/stylish/developer.rb +13 -0
- data/lib/stylish/developer/config.rb +19 -0
- data/lib/stylish/developer/environment.rb +75 -0
- data/lib/stylish/developer/listing.rb +85 -0
- data/lib/stylish/developer/model_delegator.rb +51 -0
- data/lib/stylish/developer/modification.rb +139 -0
- data/lib/stylish/developer/path.rb +168 -0
- data/lib/stylish/developer/route.rb +97 -0
- data/lib/stylish/developer/server.rb +40 -0
- data/lib/stylish/engine.rb +12 -0
- data/lib/stylish/fs.rb +59 -0
- data/lib/stylish/manifest.rb +100 -0
- data/lib/stylish/models.rb +119 -0
- data/lib/stylish/models/component.rb +19 -0
- data/lib/stylish/models/layout.rb +19 -0
- data/lib/stylish/models/library.rb +134 -0
- data/lib/stylish/models/package.rb +156 -0
- data/lib/stylish/models/script.rb +10 -0
- data/lib/stylish/models/stylesheet.rb +9 -0
- data/lib/stylish/models/template.rb +9 -0
- data/lib/stylish/models/theme.rb +8 -0
- data/lib/stylish/util.rb +20 -0
- data/lib/stylish/version.rb +1 -1
- data/library/config.json +4 -0
- data/library/second-theme/manifest.json +8 -0
- data/library/second-theme/manifest.yml +6 -0
- data/library/second-theme/templates/footers/footer-01.html +3 -0
- data/library/second-theme/templates/footers/footer-02.html +3 -0
- data/library/second-theme/templates/headers/header-01.html +3 -0
- data/library/second-theme/templates/headers/header-02.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/components/footers/footer-01.json +5 -0
- data/library/test-theme/components/footers/footer-02.json +5 -0
- data/library/test-theme/components/headers/header-01.json +5 -0
- data/library/test-theme/components/headers/header-02.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/library/test-theme/manifest.json +8 -0
- data/library/test-theme/manifest.yml +6 -0
- data/library/test-theme/pages/page-01.json +11 -0
- data/library/test-theme/templates/footers/footer-01.html +3 -0
- data/library/test-theme/templates/footers/footer-02.html +3 -0
- data/library/test-theme/templates/headers/header-01.html +3 -0
- data/library/test-theme/templates/headers/header-02.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/templates/layouts/standard-layout.html +10 -0
- data/spec/acceptance/listing_assets_spec.rb +20 -0
- data/spec/acceptance/model_browsing_spec.rb +21 -0
- data/spec/acceptance/model_creation_spec.rb +16 -0
- data/spec/acceptance/model_deleting_spec.rb +10 -0
- data/spec/acceptance/model_updating_spec.rb +12 -0
- data/spec/acceptance/modifying_assets_spec.rb +50 -0
- data/spec/acceptance/server_info_spec.rb +10 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
- data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -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 +30 -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 +37 -0
- data/spec/dummy/config/environments/production.rb +82 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -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 +4 -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 +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
- data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
- data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
- data/spec/dummy/db/schema.rb +37 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/config.json +3 -0
- data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
- data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/spec/fixtures/test-theme/manifest.json +8 -0
- data/spec/fixtures/test-theme/manifest.yml +6 -0
- data/spec/fixtures/test-theme/pages/page-01.json +11 -0
- data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
- data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
- data/spec/lib/stylish/configuration_spec.rb +8 -0
- data/spec/lib/stylish/developer/path_spec.rb +36 -0
- data/spec/lib/stylish/developer/route_spec.rb +5 -0
- data/spec/lib/stylish/manifest_spec.rb +48 -0
- data/spec/lib/stylish/models/library_spec.rb +38 -0
- data/spec/lib/stylish/models/package_spec.rb +35 -0
- data/spec/lib/stylish/models_spec.rb +12 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/json_helper.rb +7 -0
- data/spec/test.css.scss +6 -0
- data/stylish.gemspec +17 -2
- data/support/editor-app/.gitignore +2 -0
- data/support/editor-app/development/bower.json +9 -0
- data/support/editor-app/development/package.json +28 -0
- data/support/editor-app/development/semantic/components/accordion.css +257 -0
- data/support/editor-app/development/semantic/components/accordion.js +558 -0
- data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/development/semantic/components/ad.css +277 -0
- data/support/editor-app/development/semantic/components/ad.min.css +11 -0
- data/support/editor-app/development/semantic/components/api.js +851 -0
- data/support/editor-app/development/semantic/components/api.min.js +11 -0
- data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/development/semantic/components/button.css +2391 -0
- data/support/editor-app/development/semantic/components/button.min.css +11 -0
- data/support/editor-app/development/semantic/components/card.css +758 -0
- data/support/editor-app/development/semantic/components/card.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.css +514 -0
- data/support/editor-app/development/semantic/components/checkbox.js +507 -0
- data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/development/semantic/components/comment.css +260 -0
- data/support/editor-app/development/semantic/components/comment.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.css +187 -0
- data/support/editor-app/development/semantic/components/dimmer.js +627 -0
- data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/development/semantic/components/divider.css +244 -0
- data/support/editor-app/development/semantic/components/divider.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/development/semantic/components/feed.css +277 -0
- data/support/editor-app/development/semantic/components/feed.min.css +11 -0
- data/support/editor-app/development/semantic/components/flag.css +1017 -0
- data/support/editor-app/development/semantic/components/flag.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.css +875 -0
- data/support/editor-app/development/semantic/components/form.js +1039 -0
- data/support/editor-app/development/semantic/components/form.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.min.js +11 -0
- data/support/editor-app/development/semantic/components/grid.css +1816 -0
- data/support/editor-app/development/semantic/components/grid.min.css +11 -0
- data/support/editor-app/development/semantic/components/header.css +572 -0
- data/support/editor-app/development/semantic/components/header.min.css +11 -0
- data/support/editor-app/development/semantic/components/icon.css +2127 -0
- data/support/editor-app/development/semantic/components/icon.min.css +11 -0
- data/support/editor-app/development/semantic/components/image.css +275 -0
- data/support/editor-app/development/semantic/components/image.min.css +11 -0
- data/support/editor-app/development/semantic/components/input.css +455 -0
- data/support/editor-app/development/semantic/components/input.min.css +11 -0
- data/support/editor-app/development/semantic/components/item.css +458 -0
- data/support/editor-app/development/semantic/components/item.min.css +11 -0
- data/support/editor-app/development/semantic/components/label.css +930 -0
- data/support/editor-app/development/semantic/components/label.min.css +11 -0
- data/support/editor-app/development/semantic/components/list.css +879 -0
- data/support/editor-app/development/semantic/components/list.min.css +11 -0
- data/support/editor-app/development/semantic/components/loader.css +279 -0
- data/support/editor-app/development/semantic/components/loader.min.css +11 -0
- data/support/editor-app/development/semantic/components/menu.css +1596 -0
- data/support/editor-app/development/semantic/components/menu.min.css +11 -0
- data/support/editor-app/development/semantic/components/message.css +422 -0
- data/support/editor-app/development/semantic/components/message.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.css +431 -0
- data/support/editor-app/development/semantic/components/modal.js +860 -0
- data/support/editor-app/development/semantic/components/modal.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.min.js +11 -0
- data/support/editor-app/development/semantic/components/nag.css +149 -0
- data/support/editor-app/development/semantic/components/nag.js +477 -0
- data/support/editor-app/development/semantic/components/nag.min.css +11 -0
- data/support/editor-app/development/semantic/components/nag.min.js +11 -0
- data/support/editor-app/development/semantic/components/popup.css +294 -0
- data/support/editor-app/development/semantic/components/popup.js +1187 -0
- data/support/editor-app/development/semantic/components/popup.min.css +11 -0
- data/support/editor-app/development/semantic/components/popup.min.js +11 -0
- data/support/editor-app/development/semantic/components/progress.css +449 -0
- data/support/editor-app/development/semantic/components/progress.js +785 -0
- data/support/editor-app/development/semantic/components/progress.min.css +11 -0
- data/support/editor-app/development/semantic/components/progress.min.js +11 -0
- data/support/editor-app/development/semantic/components/rail.css +125 -0
- data/support/editor-app/development/semantic/components/rail.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.css +262 -0
- data/support/editor-app/development/semantic/components/rating.js +451 -0
- data/support/editor-app/development/semantic/components/rating.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.min.js +11 -0
- data/support/editor-app/development/semantic/components/reset.css +430 -0
- data/support/editor-app/development/semantic/components/reset.min.css +11 -0
- data/support/editor-app/development/semantic/components/reveal.css +294 -0
- data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.css +330 -0
- data/support/editor-app/development/semantic/components/search.js +1055 -0
- data/support/editor-app/development/semantic/components/search.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.min.js +11 -0
- data/support/editor-app/development/semantic/components/segment.css +590 -0
- data/support/editor-app/development/semantic/components/segment.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.css +155 -0
- data/support/editor-app/development/semantic/components/shape.js +830 -0
- data/support/editor-app/development/semantic/components/shape.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.min.js +11 -0
- data/support/editor-app/development/semantic/components/sidebar.css +621 -0
- data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/development/semantic/components/site.css +147 -0
- data/support/editor-app/development/semantic/components/site.js +487 -0
- data/support/editor-app/development/semantic/components/site.min.css +11 -0
- data/support/editor-app/development/semantic/components/site.min.js +11 -0
- data/support/editor-app/development/semantic/components/state.js +690 -0
- data/support/editor-app/development/semantic/components/state.min.js +11 -0
- data/support/editor-app/development/semantic/components/statistic.css +410 -0
- data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/development/semantic/components/step.css +433 -0
- data/support/editor-app/development/semantic/components/step.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.css +80 -0
- data/support/editor-app/development/semantic/components/sticky.js +775 -0
- data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/development/semantic/components/tab.css +93 -0
- data/support/editor-app/development/semantic/components/tab.js +787 -0
- data/support/editor-app/development/semantic/components/tab.min.css +11 -0
- data/support/editor-app/development/semantic/components/tab.min.js +11 -0
- data/support/editor-app/development/semantic/components/table.css +999 -0
- data/support/editor-app/development/semantic/components/table.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.css +2152 -0
- data/support/editor-app/development/semantic/components/transition.js +936 -0
- data/support/editor-app/development/semantic/components/transition.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.min.js +11 -0
- data/support/editor-app/development/semantic/components/video.css +126 -0
- data/support/editor-app/development/semantic/components/video.js +540 -0
- data/support/editor-app/development/semantic/components/video.min.css +11 -0
- data/support/editor-app/development/semantic/components/video.min.js +11 -0
- data/support/editor-app/development/semantic/components/visibility.js +970 -0
- data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/development/semantic/semantic.css +31768 -0
- data/support/editor-app/development/semantic/semantic.js +18317 -0
- data/support/editor-app/development/semantic/semantic.min.css +11 -0
- data/support/editor-app/development/semantic/semantic.min.js +17 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/development/src/apis/index.coffee +35 -0
- data/support/editor-app/development/src/components/editor.cjsx +58 -0
- data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
- data/support/editor-app/development/src/components/header.cjsx +12 -0
- data/support/editor-app/development/src/components/index.coffee +9 -0
- data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
- data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
- data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
- data/support/editor-app/development/src/index.cjsx +82 -0
- data/support/editor-app/development/src/lib/util.coffee +48 -0
- data/support/editor-app/development/src/pages/home.cjsx +46 -0
- data/support/editor-app/development/src/pages/index.coffee +6 -0
- data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
- data/support/editor-app/development/src/registry.coffee +35 -0
- data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
- data/support/editor-app/development/src/styles/index.css.scss +240 -0
- data/support/editor-app/development/src/sugar.cjsx +126 -0
- data/support/editor-app/development/webpack.config.js +53 -0
- data/support/editor-app/dist/base.css +0 -0
- data/support/editor-app/dist/toolit.js +62 -0
- data/support/editor-app/dist/toolkit.js +44573 -0
- data/support/editor-app/index.html +50 -0
- data/support/editor-app/package.json +15 -0
- data/support/editor-app/semantic/components/accordion.css +257 -0
- data/support/editor-app/semantic/components/accordion.js +558 -0
- data/support/editor-app/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/semantic/components/ad.css +277 -0
- data/support/editor-app/semantic/components/ad.min.css +11 -0
- data/support/editor-app/semantic/components/api.js +851 -0
- data/support/editor-app/semantic/components/api.min.js +11 -0
- data/support/editor-app/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/semantic/components/button.css +2391 -0
- data/support/editor-app/semantic/components/button.min.css +11 -0
- data/support/editor-app/semantic/components/card.css +758 -0
- data/support/editor-app/semantic/components/card.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.css +514 -0
- data/support/editor-app/semantic/components/checkbox.js +507 -0
- data/support/editor-app/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/semantic/components/comment.css +260 -0
- data/support/editor-app/semantic/components/comment.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.css +187 -0
- data/support/editor-app/semantic/components/dimmer.js +627 -0
- data/support/editor-app/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/semantic/components/divider.css +244 -0
- data/support/editor-app/semantic/components/divider.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/semantic/components/feed.css +277 -0
- data/support/editor-app/semantic/components/feed.min.css +11 -0
- data/support/editor-app/semantic/components/flag.css +1017 -0
- data/support/editor-app/semantic/components/flag.min.css +11 -0
- data/support/editor-app/semantic/components/form.css +875 -0
- data/support/editor-app/semantic/components/form.js +1039 -0
- data/support/editor-app/semantic/components/form.min.css +11 -0
- data/support/editor-app/semantic/components/form.min.js +11 -0
- data/support/editor-app/semantic/components/grid.css +1816 -0
- data/support/editor-app/semantic/components/grid.min.css +11 -0
- data/support/editor-app/semantic/components/header.css +572 -0
- data/support/editor-app/semantic/components/header.min.css +11 -0
- data/support/editor-app/semantic/components/icon.css +2127 -0
- data/support/editor-app/semantic/components/icon.min.css +11 -0
- data/support/editor-app/semantic/components/image.css +275 -0
- data/support/editor-app/semantic/components/image.min.css +11 -0
- data/support/editor-app/semantic/components/input.css +455 -0
- data/support/editor-app/semantic/components/input.min.css +11 -0
- data/support/editor-app/semantic/components/item.css +458 -0
- data/support/editor-app/semantic/components/item.min.css +11 -0
- data/support/editor-app/semantic/components/label.css +930 -0
- data/support/editor-app/semantic/components/label.min.css +11 -0
- data/support/editor-app/semantic/components/list.css +879 -0
- data/support/editor-app/semantic/components/list.min.css +11 -0
- data/support/editor-app/semantic/components/loader.css +279 -0
- data/support/editor-app/semantic/components/loader.min.css +11 -0
- data/support/editor-app/semantic/components/menu.css +1596 -0
- data/support/editor-app/semantic/components/menu.min.css +11 -0
- data/support/editor-app/semantic/components/message.css +422 -0
- data/support/editor-app/semantic/components/message.min.css +11 -0
- data/support/editor-app/semantic/components/modal.css +431 -0
- data/support/editor-app/semantic/components/modal.js +860 -0
- data/support/editor-app/semantic/components/modal.min.css +11 -0
- data/support/editor-app/semantic/components/modal.min.js +11 -0
- data/support/editor-app/semantic/components/nag.css +149 -0
- data/support/editor-app/semantic/components/nag.js +477 -0
- data/support/editor-app/semantic/components/nag.min.css +11 -0
- data/support/editor-app/semantic/components/nag.min.js +11 -0
- data/support/editor-app/semantic/components/popup.css +294 -0
- data/support/editor-app/semantic/components/popup.js +1187 -0
- data/support/editor-app/semantic/components/popup.min.css +11 -0
- data/support/editor-app/semantic/components/popup.min.js +11 -0
- data/support/editor-app/semantic/components/progress.css +449 -0
- data/support/editor-app/semantic/components/progress.js +785 -0
- data/support/editor-app/semantic/components/progress.min.css +11 -0
- data/support/editor-app/semantic/components/progress.min.js +11 -0
- data/support/editor-app/semantic/components/rail.css +125 -0
- data/support/editor-app/semantic/components/rail.min.css +11 -0
- data/support/editor-app/semantic/components/rating.css +262 -0
- data/support/editor-app/semantic/components/rating.js +451 -0
- data/support/editor-app/semantic/components/rating.min.css +11 -0
- data/support/editor-app/semantic/components/rating.min.js +11 -0
- data/support/editor-app/semantic/components/reset.css +430 -0
- data/support/editor-app/semantic/components/reset.min.css +11 -0
- data/support/editor-app/semantic/components/reveal.css +294 -0
- data/support/editor-app/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/semantic/components/search.css +330 -0
- data/support/editor-app/semantic/components/search.js +1055 -0
- data/support/editor-app/semantic/components/search.min.css +11 -0
- data/support/editor-app/semantic/components/search.min.js +11 -0
- data/support/editor-app/semantic/components/segment.css +590 -0
- data/support/editor-app/semantic/components/segment.min.css +11 -0
- data/support/editor-app/semantic/components/shape.css +155 -0
- data/support/editor-app/semantic/components/shape.js +830 -0
- data/support/editor-app/semantic/components/shape.min.css +11 -0
- data/support/editor-app/semantic/components/shape.min.js +11 -0
- data/support/editor-app/semantic/components/sidebar.css +621 -0
- data/support/editor-app/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/semantic/components/site.css +147 -0
- data/support/editor-app/semantic/components/site.js +487 -0
- data/support/editor-app/semantic/components/site.min.css +11 -0
- data/support/editor-app/semantic/components/site.min.js +11 -0
- data/support/editor-app/semantic/components/state.js +690 -0
- data/support/editor-app/semantic/components/state.min.js +11 -0
- data/support/editor-app/semantic/components/statistic.css +410 -0
- data/support/editor-app/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/semantic/components/step.css +433 -0
- data/support/editor-app/semantic/components/step.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.css +80 -0
- data/support/editor-app/semantic/components/sticky.js +775 -0
- data/support/editor-app/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/semantic/components/tab.css +93 -0
- data/support/editor-app/semantic/components/tab.js +787 -0
- data/support/editor-app/semantic/components/tab.min.css +11 -0
- data/support/editor-app/semantic/components/tab.min.js +11 -0
- data/support/editor-app/semantic/components/table.css +999 -0
- data/support/editor-app/semantic/components/table.min.css +11 -0
- data/support/editor-app/semantic/components/transition.css +2152 -0
- data/support/editor-app/semantic/components/transition.js +936 -0
- data/support/editor-app/semantic/components/transition.min.css +11 -0
- data/support/editor-app/semantic/components/transition.min.js +11 -0
- data/support/editor-app/semantic/components/video.css +126 -0
- data/support/editor-app/semantic/components/video.js +540 -0
- data/support/editor-app/semantic/components/video.min.css +11 -0
- data/support/editor-app/semantic/components/video.min.js +11 -0
- data/support/editor-app/semantic/components/visibility.js +970 -0
- data/support/editor-app/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/semantic/semantic.css +31768 -0
- data/support/editor-app/semantic/semantic.js +18317 -0
- data/support/editor-app/semantic/semantic.min.css +11 -0
- data/support/editor-app/semantic/semantic.min.js +17 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/vendor/jquery.js +8829 -0
- data/support/library-server/Gemfile +0 -0
- data/support/library-server/config.ru +4 -0
- metadata +740 -7
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
.ui.menu{margin:1rem 0;background:#fff;font-size:0;font-weight:400;box-shadow:0 0 0 1px rgba(39,41,43,.15),0 1px 2px 0 rgba(0,0,0,.05);border-radius:.2857rem}.ui.menu:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.menu:first-child{margin-top:0}.ui.menu:last-child{margin-bottom:0}.ui.menu .item{color:rgba(0,0,0,.8)}.ui.menu .item .item{color:rgba(0,0,0,.5)}.ui.menu .item .menu .link.item:hover,.ui.menu .item .menu a.item:hover{color:rgba(0,0,0,.85)}.ui.menu .item{position:relative;display:inline-block;padding:.78571em .95em;border-top:0 solid transparent;background:0 0;vertical-align:middle;line-height:1;text-decoration:none;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .2s ease,background .2s ease,box-shadow .2s ease;transition:opacity .2s ease,background .2s ease,box-shadow .2s ease}.ui.menu .menu{margin:0}.ui.menu>.item:first-child{border-radius:.2857rem 0 0 .2857rem}.ui.menu:not(.vertical) .item.left,.ui.menu:not(.vertical) .menu.left{float:left}.ui.menu:not(.vertical) .item.right,.ui.menu:not(.vertical) .menu.right{float:right}.ui.menu .item:before{position:absolute;content:'';top:0;right:0;width:1px;height:100%;background:-webkit-linear-gradient(rgba(0,0,0,.05) 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.05) 100%);background:linear-gradient(rgba(0,0,0,.05) 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.05) 100%)}.ui.menu>.right.menu:first-child{display:none}.ui.menu .item.right:before,.ui.menu .menu.right .item:before{right:auto;left:0}.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child,.ui.menu .text.item>*{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;line-height:1.3;color:rgba(0,0,0,.8)}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{opacity:.75;float:none;margin:0 .25em 0 0}.ui.menu .item>i.dropdown.icon{float:right;margin-left:1em}.ui.menu:not(.vertical) .item>.button{position:relative;top:-.05em;margin:-.55em 0;padding-bottom:.55em;padding-top:.55em;font-size:.875em}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{position:relative;top:0;margin:-.6em 0}.ui.menu .item>.input input{font-size:1em;padding-top:.4em;padding-bottom:.4em}.ui.menu .item>.input .button,.ui.menu .item>.input .label{padding-top:.4em;padding-bottom:.4em}.ui.small.menu .item>.input input{top:0;padding-top:.4em;padding-bottom:.4em}.ui.small.menu .item>.input .button,.ui.small.menu .item>.input .label{padding-top:.4em;padding-bottom:.4em}.ui.large.menu .item>.input input{top:-.125em;padding-bottom:.6em;padding-top:.6em}.ui.large.menu .item>.input .button,.ui.large.menu .item>.input .label{padding-top:.6em;padding-bottom:.6em}.ui.menu .header.item,.ui.vertical.menu .header.item{background:rgba(0,0,0,.04);margin:0;text-transform:normal;font-weight:700}.ui.menu .ui.dropdown.item.visible{background:rgba(0,0,0,.03);border-bottom-right-radius:0;border-bottom-left-radius:0}.ui.menu .ui.dropdown.active{box-shadow:none}.ui.menu .dropdown.item .menu{background:#fff;left:0;margin:0;min-width:-webkit-calc(100% - 1px);min-width:calc(100% - 1px);box-shadow:0 1px 3px 0 rgba(0,0,0,.08)}.ui.menu:not(.secondary) .pointing.dropdown.item .menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.ui.menu .simple.dropdown.item .menu{margin:0!important}.ui.secondary.menu>.menu>.active.dropdown.item{background-color:transparent}.ui.secondary.menu .dropdown.item .menu{left:0;min-width:100%}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{background:rgba(0,0,0,.35);color:#fff;margin:-.15em 0 -.15em .5em;padding:.3em .8em;vertical-align:baseline}.ui.menu .item>.floating.label{padding:.3em .8em}.ui.menu .item>img:only-child{display:block;max-width:100%;margin:0 auto}.ui.link.menu .menu>.item:hover,.ui.link.menu>.item:hover,.ui.menu .menu>.link.item:hover,.ui.menu .menu>a.item:hover,.ui.menu>.link.item:hover,.ui.menu>a.item:hover{cursor:pointer;background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.menu .active.item{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8);font-weight:400;box-shadow:0 2px 0 inset}.ui.menu .active.item>i.icon{opacity:1}.ui.vertical.menu .active.item{background:rgba(0,0,0,.03);border-radius:0;box-shadow:2px 0 0 inset}.ui.vertical.menu>.active.item:first-child{border-radius:0 .2857rem 0 0}.ui.vertical.menu>.active.item:last-child{border-radius:0 0 .2857rem}.ui.vertical.menu>.active.item:only-child{border-radius:0 .2857rem .2857rem 0}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:transparent;box-shadow:none}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover{background-color:rgba(0,0,0,.03)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{cursor:default;color:rgba(40,40,40,.3);background-color:transparent!important}.ui.vertical.menu{background:#fff}.ui.vertical.menu .item{background:0 0;display:block;height:auto!important;border-top:none;border-left:0 solid transparent;border-right:none}.ui.vertical.menu>.item:first-child{border-radius:.2857rem .2857rem 0 0}.ui.vertical.menu>.item:last-child{border-radius:0 0 .2857rem .2857rem}.ui.vertical.menu .item>.label{float:right;text-align:center}.ui.vertical.menu .item>i.icon{width:1.18em;float:right;margin:0 0 0 .5em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0 .5em 0 0}.ui.vertical.menu .item:before{position:absolute;content:'';top:0;left:0;width:100%;background:-webkit-linear-gradient(left,rgba(0,0,0,.03) 0,rgba(0,0,0,.1) 1.5em,rgba(0,0,0,.03) 100%);background:linear-gradient(to right,rgba(0,0,0,.03) 0,rgba(0,0,0,.1) 1.5em,rgba(0,0,0,.03) 100%);height:1px}.ui.vertical.menu .item:first-child:before{background:0 0!important}.ui.vertical.menu .dropdown.item>.icon{float:right;content:"\f0da";margin-left:1em}.ui.vertical.menu .active.dropdown.item{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.menu .dropdown.item .menu{top:0!important;left:100%;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);border-radius:0 .2857rem .2857rem}.ui.vertical.menu .dropdown.item .menu .item{font-size:1rem}.ui.vertical.menu .dropdown.item .menu .item i.icon{margin-right:0}.ui.vertical.menu .dropdown.item.active{box-shadow:none}.ui.vertical.menu .item:not(.dropdown)>.menu{margin:.5em -.95em 0}.ui.vertical.menu .item:not(.dropdown)>.menu>.item{background:0 0;padding:.5rem 1.5rem;font-size:.875rem}.ui.vertical.menu .item>.menu>.item:before{display:none}.ui.tiered.menu>.menu>.item:hover{color:rgba(0,0,0,.8)}.ui.tiered.menu .active.item{background:#fcfcfc}.ui.tiered.menu>.menu .item.active:after{position:absolute;content:'';margin-top:-1px;top:100%;left:0;width:100%;height:2px;background-color:#fcfcfc}.ui.tiered.menu .sub.menu{background-color:#fcfcfc;border-radius:0;border-top:1px solid rgba(39,41,43,.15);box-shadow:none}.ui.tiered.menu>.sub.menu>.item{color:rgba(0,0,0,.4);font-weight:400;text-transform:normal;font-size:.875rem}.ui.tiered.menu .sub.menu .item:before{background:0 0}.ui.tiered.menu .sub.menu .item:hover{background:none;color:rgba(0,0,0,.8)}.ui.tiered.menu .sub.menu .active.item{padding-top:.78571em;background:none;border-radius:0;border-top:medium none;box-shadow:none;color:rgba(0,0,0,.8)!important}.ui.tiered.menu .sub.menu .active.item:after{display:none}.ui.inverted.tiered.menu>.menu>.item{color:rgba(255,255,255,.5)}.ui.inverted.tiered.menu .sub.menu{background-color:rgba(0,0,0,.2)}.ui.inverted.tiered.menu .sub.menu .item{color:rgba(255,255,255,.8)}.ui.inverted.tiered.menu>.menu>.item:hover{color:#fff}.ui.inverted.tiered.menu .active.item:after{display:none}.ui.inverted.tiered.menu>.menu>.active.item,.ui.inverted.tiered.menu>.sub.menu>.active.item{color:#fff!important;box-shadow:none}.ui.pointing.tiered.menu>.menu>.item:after{display:none}.ui.pointing.tiered.menu>.sub.menu>.item:after{display:block}.ui.tabular.menu{background-color:transparent;border-radius:0;box-shadow:none!important;border-bottom:1px solid #d4d4d5}.ui.tabular.fluid.menu{width:-webkit-calc(100% + 2px)!important;width:calc(100% + 2px)!important}.ui.tabular.menu .item{background-color:transparent;border-left:1px solid transparent;border-right:1px solid transparent;border-top:1px solid transparent;padding-left:1.4em;padding-right:1.4em;color:rgba(0,0,0,.8)}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.tabular.menu .active.item{position:relative;background-color:#fff;color:rgba(0,0,0,.8);border-color:#d4d4d5;font-weight:700;margin-bottom:-1px;border-bottom:none;box-shadow:0 2px 0 -1px #fff;border-radius:5px 5px 0 0}.ui.attached.tabular.menu{position:relative;z-index:2}.ui.tabular.menu+.bottom.attached.segment,.ui.tabular.menu~.bottom.attached.segment+.bottom.attached.segment{border-top:none;margin:0}.ui.pagination.menu{margin:0;display:inline-block;vertical-align:middle}.ui.pagination.menu .item{min-width:3em;text-align:center}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu.floated{display:block}.ui.pagination.menu .active.item{border-top:none;padding-top:.78571em;background-color:rgba(0,0,0,.03);box-shadow:none}.ui.secondary.menu{background:0 0;border-radius:0;box-shadow:none}.ui.secondary.menu>.item,.ui.secondary.menu>.menu>.item{box-shadow:none;border:none;height:auto!important;background:0 0;margin:0 .25em;padding:.5em .8em;border-radius:.2857rem}.ui.secondary.menu>.item:before,.ui.secondary.menu>.menu>.item:before{display:none!important}.ui.secondary.menu .item>.input input{background-color:transparent;border:none}.ui.secondary.menu .link.item,.ui.secondary.menu a.item{opacity:.8;-webkit-transition:none;transition:none}.ui.secondary.menu .header.item{border-right:.1em solid rgba(0,0,0,.1);background:none;border-radius:0}.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{opacity:1}.ui.secondary.menu>.active.item,.ui.secondary.menu>.menu>.active.item{background:rgba(0,0,0,.05);opacity:1;box-shadow:none}.ui.secondary.vertical.menu>.active.item{border-radius:.2857rem}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:rgba(255,255,255,.8)}.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{color:#fff}.ui.secondary.inverted.menu .active.item{background-color:rgba(255,255,255,.05)}.ui.secondary.item.menu>.item{margin:0}.ui.secondary.attached.menu{box-shadow:none}.ui.secondary.vertical.menu>.item{border:none;margin:0 0 .3em;border-radius:.2857rem}.ui.secondary.vertical.menu>.header.item{border-radius:0}.ui.secondary.inverted.menu{background-color:transparent}.ui.secondary.inverted.pointing.menu{border-bottom:3px solid rgba(255,255,255,.1)}.ui.secondary.inverted.pointing.menu>.item{color:rgba(255,255,255,.7)}.ui.secondary.inverted.pointing.menu>.header.item{color:#FFF!important}.ui.secondary.inverted.pointing.menu>.item:hover,.ui.secondary.inverted.pointing.menu>.menu>.item:hover{color:rgba(255,255,255,.85)}.ui.secondary.inverted.pointing.menu>.item:active,.ui.secondary.inverted.pointing.menu>.menu>.item:active{border-color:rgba(255,255,255,.4)}.ui.secondary.inverted.pointing.menu>.item.active,.ui.secondary.inverted.pointing.menu>.menu>.item.active{border-color:rgba(255,255,255,.8);color:#fff}.ui.secondary.pointing.menu{border-bottom:3px solid rgba(0,0,0,.1)}.ui.secondary.pointing.menu>.item,.ui.secondary.pointing.menu>.menu>.item{margin:0 0 -3px;padding:.6em .95em;border-bottom:3px solid transparent;border-radius:0;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.secondary.pointing.menu .header.item{margin-bottom:-3px;background-color:transparent!important;border-right-width:0!important;font-weight:700!important;color:rgba(0,0,0,.85)!important}.ui.secondary.pointing.menu .text.item{box-shadow:none!important}.ui.secondary.pointing.menu>.item:after,.ui.secondary.pointing.menu>.menu>.item:after{display:none}.ui.secondary.pointing.menu>.link.item:hover,.ui.secondary.pointing.menu>.menu>.link.item:hover,.ui.secondary.pointing.menu>.menu>a.item:hover,.ui.secondary.pointing.menu>a.item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.secondary.pointing.menu>.link.item:active,.ui.secondary.pointing.menu>.menu>.link.item:active,.ui.secondary.pointing.menu>.menu>a.item:active,.ui.secondary.pointing.menu>a.item:active{background-color:transparent;border-color:rgba(0,0,0,.2)}.ui.secondary.pointing.menu>.item.active,.ui.secondary.pointing.menu>.menu>.item.active{background-color:transparent;border-color:rgba(0,0,0,.4);box-shadow:none;color:rgba(0,0,0,.8)}.ui.secondary.vertical.pointing.menu{border:none;border-right:3px solid rgba(0,0,0,.1)}.ui.secondary.vertical.pointing.menu>.item{margin:0 -3px 0 0;border-bottom:none;border-right:3px solid transparent;border-radius:0}.ui.secondary.vertical.pointing.menu>.item:hover{background-color:transparent;color:rgba(0,0,0,.7)}.ui.secondary.vertical.pointing.menu>.item:active{background-color:transparent;border-color:rgba(0,0,0,.2)}.ui.secondary.vertical.pointing.menu>.item.active{background-color:transparent;border-color:rgba(0,0,0,.4);color:rgba(0,0,0,.85)}.ui.secondary.inverted.vertical.pointing.menu{border-right:3px solid rgba(255,255,255,.1);border-bottom:none}.ui.text.menu{display:inline-block;background:none;margin:1rem -1rem;border-radius:0;box-shadow:none}.ui.text.menu>.item{opacity:.8;margin:0 1em;padding:0;height:auto!important;border-radius:0;box-shadow:none;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.text.menu>.item:before{display:none!important}.ui.text.menu .header.item{background-color:transparent;opacity:1;color:rgba(50,50,50,.8);font-size:.875rem;padding:0;text-transform:uppercase;font-weight:700}.ui.text.menu .text.item{opacity:1;color:rgba(50,50,50,.8);font-weight:700}.ui.text.item.menu .item{margin:0}.ui.vertical.text.menu{margin:1rem 0}.ui.vertical.text.menu:first-child{margin-top:0}.ui.vertical.text.menu:last-child{margin-bottom:0}.ui.vertical.text.menu .item{float:left;clear:left;margin:.5em 0}.ui.vertical.text.menu .item>i.icon{float:none;margin:0 .78571em 0 0}.ui.vertical.text.menu .header.item{margin:.8em 0}.ui.text.menu .item:hover{opacity:1;background-color:transparent}.ui.text.menu .active.item{background-color:transparent;padding:0;border:none;opacity:1;font-weight:700;box-shadow:none}.ui.text.attached.menu,.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.inverted.text.menu,.ui.inverted.text.menu .item,.ui.inverted.text.menu .item.active,.ui.inverted.text.menu .item:hover{background-color:transparent}.ui.fluid.text.menu{margin-left:0;margin-right:0}.ui.icon.menu,.ui.vertical.icon.menu{width:auto;display:inline-block;height:auto}.ui.icon.menu>.item{height:auto;text-align:center;color:rgba(60,60,60,.7)}.ui.icon.menu>.item>.icon{display:block;float:none!important;opacity:1;margin:0 auto!important}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item .icon{margin:0}.ui.vertical.icon.menu{float:none}.ui.inverted.icon.menu .item{color:rgba(255,255,255,.8)}.ui.inverted.icon.menu .icon{color:#fff}.ui.labeled.icon.menu{text-align:center}.ui.fluid.labeled.icon.menu>.item{min-width:0}.ui.labeled.icon.menu>.item{min-width:6em}.ui.labeled.icon.menu>.item>.icon{display:block;font-size:1.5em!important;margin:0 auto .5em!important}.ui.blue.menu .active.item,.ui.menu .blue.active.item{border-color:#3b83c0!important;color:#3b83c0!important}.ui.green.menu .active.item,.ui.menu .green.active.item{border-color:#5bbd72!important;color:#5bbd72!important}.ui.menu .orange.active.item,.ui.orange.menu .active.item{border-color:#e07b53!important;color:#e07b53!important}.ui.menu .pink.active.item,.ui.pink.menu .active.item{border-color:#d9499a!important;color:#d9499a!important}.ui.menu .purple.active.item,.ui.purple.menu .active.item{border-color:#564f8a!important;color:#564f8a!important}.ui.menu .red.active.item,.ui.red.menu .active.item{border-color:#d95c5c!important;color:#d95c5c!important}.ui.menu .teal.active.item,.ui.teal.menu .active.item{border-color:#00b5ad!important;color:#00b5ad!important}.ui.menu .yellow.active.item,.ui.yellow.menu .active.item{border-color:#f2c61f!important;color:#f2c61f!important}.ui.inverted.menu{background:#1b1c1d;box-shadow:none}.ui.inverted.menu .header.item{margin:0;background:rgba(0,0,0,.3);box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){color:#fff}.ui.inverted.menu .item:not(.dropdown).menu{background:0 0}.ui.inverted.menu .item .item,.ui.inverted.menu .item .item>a:not(.ui){color:rgba(255,255,255,.5)}.ui.inverted.menu .dropdown .menu .item{color:rgba(0,0,0,.8)!important}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:rgba(225,225,225,.3)}.ui.inverted.menu .item:before{background:-webkit-linear-gradient(rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%);background:linear-gradient(rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%)}.ui.vertical.inverted.menu .item:before{background:-webkit-linear-gradient(left,rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%);background:linear-gradient(to right,rgba(255,255,255,.03) 0,rgba(255,255,255,.1) 50%,rgba(255,255,255,.03) 100%)}.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover,.ui.link.inverted.menu .item:hover{background:rgba(255,255,255,.1);color:#fff}.ui.inverted.menu .item .menu .link.item:hover,.ui.inverted.menu .item .menu a.item:hover{background:0 0;color:#fff}.ui.inverted.menu .dropdown.item:active,.ui.inverted.menu .link.item:active,.ui.inverted.menu a.item:active{background:rgba(255,255,255,.15);color:#fff}.ui.inverted.menu .active.item{box-shadow:none!important;background:rgba(255,255,255,.2);color:#fff!important}.ui.inverted.vertical.menu .item .menu .active.item{background:0 0;color:#fff}.ui.inverted.pointing.menu .active.item:after{background:#5B5B5B;box-shadow:none}.ui.inverted.pointing.menu .active.item:hover:after{background:#4A4A4A}.ui.selection.menu>.item{color:rgba(0,0,0,.4)}.ui.selection.menu>.item:hover{color:rgba(0,0,0,.6)}.ui.selection.menu>.item.active{color:rgba(0,0,0,.85)}.ui.inverted.selection.menu>.item{color:rgba(255,255,255,.4)}.ui.inverted.selection.menu>.item:hover{color:rgba(255,255,255,.9)}.ui.inverted.selection.menu>.item.active{color:#FFF}.ui.floated.menu{float:left;margin:0 .5rem 0 0}.ui.right.floated.menu{float:right;margin:0 0 0 .5rem}.ui.grey.menu{background-color:#fafafa}.ui.inverted.blue.menu,.ui.inverted.blue.pointing.menu .active.item:after{background-color:#3b83c0}.ui.inverted.green.menu,.ui.inverted.green.pointing.menu .active.item:after{background-color:#5bbd72}.ui.inverted.orange.menu,.ui.inverted.orange.pointing.menu .active.item:after{background-color:#e07b53}.ui.inverted.pink.menu,.ui.inverted.pink.pointing.menu .active.item:after{background-color:#d9499a}.ui.inverted.purple.menu,.ui.inverted.purple.pointing.menu .active.item:after{background-color:#564f8a}.ui.inverted.red.menu,.ui.inverted.red.pointing.menu .active.item:after{background-color:#d95c5c}.ui.inverted.teal.menu,.ui.inverted.teal.pointing.menu .active.item:after{background-color:#00b5ad}.ui.inverted.yellow.menu,.ui.inverted.yellow.pointing.menu .active.item:after{background-color:#f2c61f}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-top:.78571em;padding-bottom:.78571em}.ui.menu .vertically.fitted.item,.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item{padding-left:.95em;padding-right:.95em}.ui.borderless.menu .item .menu .item:before,.ui.borderless.menu .item:before,.ui.menu .borderless.item:before{background:0 0!important}.ui.compact.menu{display:inline-block;margin:0;vertical-align:middle}.ui.compact.vertical.menu{width:auto!important}.ui.compact.vertical.menu .item:last-child::before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{display:block;width:100%!important}.ui.item.menu,.ui.item.menu .item{width:100%;padding-left:0!important;padding-right:0!important;text-align:center}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{position:fixed;z-index:101;margin:0;border:none;width:100%}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0!important}.ui.fixed.menu,.ui.top.fixed.menu{top:0;left:0;right:auto;bottom:auto}.ui.right.fixed.menu{top:0;right:0;left:auto;bottom:auto;width:auto;height:100%}.ui.bottom.fixed.menu{bottom:0;left:0;top:auto;right:auto}.ui.left.fixed.menu{top:0;left:0;right:auto;bottom:auto;width:auto;height:100%}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .active.item:after{position:absolute;content:'';top:100%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);margin:1px 0 0;background:0 0;width:.6em;height:.6em;border:none;border-bottom:1px solid #d4d4d5;border-right:1px solid #d4d4d5;z-index:2;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.pointing.menu .active.item .menu .active.item:after{display:none}.ui.vertical.pointing.menu .active.item:after{position:absolute;top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg);margin:0 -1px 0 0;border:none;border-top:1px solid #d4d4d5;border-right:1px solid #d4d4d5}.ui.pointing.menu .active.item:hover:after{background-color:#fafafa}.ui.pointing.menu .active.item:after{background-color:#f7f7f7}.ui.vertical.pointing.menu .item:hover:after{background-color:#fafafa}.ui.vertical.pointing.menu .active.item:after{background-color:#f7f7f7}.ui.menu.attached{margin:0;border-radius:0;box-shadow:0 0 0 1px #ddd}.ui.top.attached.menu{border-radius:.2857rem .2857rem 0 0}.ui.menu.bottom.attached{border-radius:0 0 .2857rem .2857rem}.ui.small.menu .item{font-size:.875rem}.ui.small.vertical.menu{width:13rem}.ui.menu .item{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu .item{font-size:1.125rem}.ui.large.menu .item .item{font-size:.875rem}.ui.large.menu .dropdown .item{font-size:1rem}.ui.large.vertical.menu{width:18rem}
|
@@ -0,0 +1,422 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
/*******************************
|
15
|
+
Message
|
16
|
+
*******************************/
|
17
|
+
|
18
|
+
.ui.message {
|
19
|
+
position: relative;
|
20
|
+
min-height: 1em;
|
21
|
+
margin: 1em 0em;
|
22
|
+
background: #efefef;
|
23
|
+
padding: 1em 1.5em;
|
24
|
+
line-height: 1.3;
|
25
|
+
color: rgba(0, 0, 0, 0.8);
|
26
|
+
-webkit-transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
|
27
|
+
transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
|
28
|
+
border-radius: 0.2857rem;
|
29
|
+
box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset, 0px 0px 0px 0px transparent;
|
30
|
+
}
|
31
|
+
.ui.message:first-child {
|
32
|
+
margin-top: 0em;
|
33
|
+
}
|
34
|
+
.ui.message:last-child {
|
35
|
+
margin-bottom: 0em;
|
36
|
+
}
|
37
|
+
|
38
|
+
/*--------------
|
39
|
+
Content
|
40
|
+
---------------*/
|
41
|
+
|
42
|
+
|
43
|
+
/* Header */
|
44
|
+
.ui.message .header {
|
45
|
+
display: block;
|
46
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
47
|
+
font-weight: bold;
|
48
|
+
margin: 0em 0em 0.5rem 0em;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* Default font size */
|
52
|
+
.ui.message .header:not(.ui) {
|
53
|
+
font-size: 1.1em;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* Paragraph */
|
57
|
+
.ui.message p {
|
58
|
+
opacity: 0.85;
|
59
|
+
margin: 0.75em 0em;
|
60
|
+
}
|
61
|
+
.ui.message p:first-child {
|
62
|
+
margin-top: 0em;
|
63
|
+
}
|
64
|
+
.ui.message p:last-child {
|
65
|
+
margin-bottom: 0em;
|
66
|
+
}
|
67
|
+
.ui.message .header + p {
|
68
|
+
margin-top: 0.25em;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* List */
|
72
|
+
.ui.message ul.list {
|
73
|
+
opacity: 0.85;
|
74
|
+
list-style-position: inside;
|
75
|
+
margin: 0.5em 0em 0em;
|
76
|
+
padding: 0em;
|
77
|
+
}
|
78
|
+
.ui.message ul.list:first-child {
|
79
|
+
margin-top: 0em;
|
80
|
+
}
|
81
|
+
.ui.message ul.list:last-child {
|
82
|
+
margin-bottom: 0em;
|
83
|
+
}
|
84
|
+
.ui.message ul.list li {
|
85
|
+
position: relative;
|
86
|
+
list-style-type: none;
|
87
|
+
margin: 0em 0em 0.3em 1em;
|
88
|
+
padding: 0em;
|
89
|
+
}
|
90
|
+
.ui.message ul.list li:before {
|
91
|
+
position: absolute;
|
92
|
+
content: '•';
|
93
|
+
left: -1em;
|
94
|
+
height: 100%;
|
95
|
+
vertical-align: baseline;
|
96
|
+
}
|
97
|
+
.ui.message ul.list li:last-child {
|
98
|
+
margin-bottom: 0em;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* Icon */
|
102
|
+
.ui.message > .icon {
|
103
|
+
margin-right: 0.6em;
|
104
|
+
}
|
105
|
+
|
106
|
+
/* Close Icon */
|
107
|
+
.ui.message > .close.icon {
|
108
|
+
cursor: pointer;
|
109
|
+
position: absolute;
|
110
|
+
margin: 0em;
|
111
|
+
top: 1.15em;
|
112
|
+
right: 0.5em;
|
113
|
+
opacity: 0.7;
|
114
|
+
-webkit-transition: opacity 0.1s linear
|
115
|
+
;
|
116
|
+
transition: opacity 0.1s linear
|
117
|
+
;
|
118
|
+
}
|
119
|
+
.ui.message > .close.icon:hover {
|
120
|
+
opacity: 1;
|
121
|
+
}
|
122
|
+
|
123
|
+
/* First / Last Element */
|
124
|
+
.ui.message > :first-child {
|
125
|
+
margin-top: 0em;
|
126
|
+
}
|
127
|
+
.ui.message > :last-child {
|
128
|
+
margin-bottom: 0em;
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
/*******************************
|
133
|
+
States
|
134
|
+
*******************************/
|
135
|
+
|
136
|
+
|
137
|
+
/*--------------
|
138
|
+
Visible
|
139
|
+
---------------*/
|
140
|
+
|
141
|
+
.ui.visible.visible.visible.visible.message {
|
142
|
+
display: block;
|
143
|
+
}
|
144
|
+
.ui.icon.visible.visible.visible.visible.message {
|
145
|
+
display: table;
|
146
|
+
}
|
147
|
+
|
148
|
+
/*--------------
|
149
|
+
Hidden
|
150
|
+
---------------*/
|
151
|
+
|
152
|
+
.ui.hidden.hidden.hidden.hidden.message {
|
153
|
+
display: none;
|
154
|
+
}
|
155
|
+
|
156
|
+
|
157
|
+
/*******************************
|
158
|
+
Variations
|
159
|
+
*******************************/
|
160
|
+
|
161
|
+
|
162
|
+
/*--------------
|
163
|
+
Compact
|
164
|
+
---------------*/
|
165
|
+
|
166
|
+
.ui.compact.message {
|
167
|
+
display: inline-block;
|
168
|
+
}
|
169
|
+
|
170
|
+
/*--------------
|
171
|
+
Attached
|
172
|
+
---------------*/
|
173
|
+
|
174
|
+
.ui.attached.message {
|
175
|
+
margin-bottom: -1px;
|
176
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
177
|
+
box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset;
|
178
|
+
margin-left: -1px;
|
179
|
+
margin-right: -1px;
|
180
|
+
}
|
181
|
+
.ui.attached + .ui.attached.message:not(.top):not(.bottom) {
|
182
|
+
margin-top: -1px;
|
183
|
+
border-radius: 0em;
|
184
|
+
}
|
185
|
+
.ui.bottom.attached.message {
|
186
|
+
margin-top: -1px;
|
187
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem;
|
188
|
+
box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
189
|
+
}
|
190
|
+
.ui.bottom.attached.message:not(:last-child) {
|
191
|
+
margin-bottom: 1em;
|
192
|
+
}
|
193
|
+
.ui.attached.icon.message {
|
194
|
+
display: block;
|
195
|
+
width: auto;
|
196
|
+
}
|
197
|
+
|
198
|
+
/*--------------
|
199
|
+
Icon
|
200
|
+
---------------*/
|
201
|
+
|
202
|
+
.ui.icon.message {
|
203
|
+
display: table;
|
204
|
+
width: 100%;
|
205
|
+
}
|
206
|
+
.ui.icon.message > .icon:not(.close) {
|
207
|
+
display: table-cell;
|
208
|
+
width: auto;
|
209
|
+
vertical-align: middle;
|
210
|
+
font-size: 3em;
|
211
|
+
opacity: 0.8;
|
212
|
+
}
|
213
|
+
.ui.icon.message > .content {
|
214
|
+
display: table-cell;
|
215
|
+
width: 100%;
|
216
|
+
vertical-align: middle;
|
217
|
+
}
|
218
|
+
.ui.icon.message .icon:not(.close) + .content {
|
219
|
+
padding-left: 1.5rem;
|
220
|
+
}
|
221
|
+
.ui.icon.message .circular.icon {
|
222
|
+
width: 1em;
|
223
|
+
}
|
224
|
+
.ui.icon.message .circular.icon + .content {
|
225
|
+
width: auto;
|
226
|
+
padding-left: 2em;
|
227
|
+
}
|
228
|
+
|
229
|
+
/*--------------
|
230
|
+
Floating
|
231
|
+
---------------*/
|
232
|
+
|
233
|
+
.ui.floating.message {
|
234
|
+
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15), 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset;
|
235
|
+
}
|
236
|
+
|
237
|
+
/*--------------
|
238
|
+
Colors
|
239
|
+
---------------*/
|
240
|
+
|
241
|
+
.ui.black.message {
|
242
|
+
background-color: #1b1c1d;
|
243
|
+
color: #ffffff;
|
244
|
+
}
|
245
|
+
|
246
|
+
/*--------------
|
247
|
+
Types
|
248
|
+
---------------*/
|
249
|
+
|
250
|
+
|
251
|
+
/* Positive */
|
252
|
+
.ui.positive.message {
|
253
|
+
background-color: #eeffe7;
|
254
|
+
color: #3c763d;
|
255
|
+
}
|
256
|
+
.ui.positive.message,
|
257
|
+
.ui.attached.positive.message {
|
258
|
+
box-shadow: 0px 0px 0px 1px #b7caa7 inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
259
|
+
}
|
260
|
+
.ui.positive.message .header {
|
261
|
+
color: #356e36;
|
262
|
+
}
|
263
|
+
|
264
|
+
/* Negative */
|
265
|
+
.ui.negative.message {
|
266
|
+
background-color: #fff0f0;
|
267
|
+
color: #a94442;
|
268
|
+
}
|
269
|
+
.ui.negative.message,
|
270
|
+
.ui.attached.negative.message {
|
271
|
+
box-shadow: 0px 0px 0px 1px #dbb1b1 inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
272
|
+
}
|
273
|
+
.ui.negative.message .header {
|
274
|
+
color: #912d2b;
|
275
|
+
}
|
276
|
+
|
277
|
+
/* Info */
|
278
|
+
.ui.info.message {
|
279
|
+
background-color: #e9faff;
|
280
|
+
color: #337b92;
|
281
|
+
}
|
282
|
+
.ui.info.message,
|
283
|
+
.ui.attached.info.message {
|
284
|
+
box-shadow: 0px 0px 0px 1px #aad6df inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
285
|
+
}
|
286
|
+
.ui.info.message .header {
|
287
|
+
color: #297187;
|
288
|
+
}
|
289
|
+
|
290
|
+
/* Warning */
|
291
|
+
.ui.warning.message {
|
292
|
+
background-color: #fffbe6;
|
293
|
+
color: #876a38;
|
294
|
+
}
|
295
|
+
.ui.warning.message,
|
296
|
+
.ui.attached.warning.message {
|
297
|
+
box-shadow: 0px 0px 0px 1px #d9caab inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
298
|
+
}
|
299
|
+
.ui.warning.message .header {
|
300
|
+
color: #825c01;
|
301
|
+
}
|
302
|
+
|
303
|
+
/* Error */
|
304
|
+
.ui.error.message {
|
305
|
+
background-color: #fff0f0;
|
306
|
+
color: #a94442;
|
307
|
+
}
|
308
|
+
.ui.error.message,
|
309
|
+
.ui.attached.error.message {
|
310
|
+
box-shadow: 0px 0px 0px 1px #dbb1b1 inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
311
|
+
}
|
312
|
+
.ui.error.message .header {
|
313
|
+
color: #912d2b;
|
314
|
+
}
|
315
|
+
|
316
|
+
/* Success */
|
317
|
+
.ui.success.message {
|
318
|
+
background-color: #eeffe7;
|
319
|
+
color: #3c763d;
|
320
|
+
}
|
321
|
+
.ui.success.message,
|
322
|
+
.ui.attached.success.message {
|
323
|
+
box-shadow: 0px 0px 0px 1px #b7caa7 inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
324
|
+
}
|
325
|
+
.ui.success.message .header {
|
326
|
+
color: #356e36;
|
327
|
+
}
|
328
|
+
|
329
|
+
/* Colors */
|
330
|
+
.ui.inverted.message,
|
331
|
+
.ui.black.message {
|
332
|
+
background-color: #1b1c1d;
|
333
|
+
color: #ffffff;
|
334
|
+
}
|
335
|
+
.ui.blue.message {
|
336
|
+
background-color: #dff0ff;
|
337
|
+
color: #3b83c0;
|
338
|
+
}
|
339
|
+
.ui.blue.message .header {
|
340
|
+
color: #3576ac;
|
341
|
+
}
|
342
|
+
.ui.green.message {
|
343
|
+
background-color: #ebffed;
|
344
|
+
color: #1ebc30;
|
345
|
+
}
|
346
|
+
.ui.green.message .header {
|
347
|
+
color: #1aa62a;
|
348
|
+
}
|
349
|
+
.ui.orange.message {
|
350
|
+
background-color: #ffedde;
|
351
|
+
color: #e07b53;
|
352
|
+
}
|
353
|
+
.ui.orange.message .header {
|
354
|
+
color: #dc6a3d;
|
355
|
+
}
|
356
|
+
.ui.pink.message {
|
357
|
+
background-color: #ffe3fb;
|
358
|
+
color: #d9499a;
|
359
|
+
}
|
360
|
+
.ui.pink.message .header {
|
361
|
+
color: #d5348e;
|
362
|
+
}
|
363
|
+
.ui.purple.message {
|
364
|
+
background-color: #eae7ff;
|
365
|
+
color: #564f8a;
|
366
|
+
}
|
367
|
+
.ui.purple.message .header {
|
368
|
+
color: #4c467a;
|
369
|
+
}
|
370
|
+
.ui.red.message {
|
371
|
+
background-color: #ffe8e6;
|
372
|
+
color: #d95c5c;
|
373
|
+
}
|
374
|
+
.ui.red.message .header {
|
375
|
+
color: #d44747;
|
376
|
+
}
|
377
|
+
.ui.teal.message {
|
378
|
+
background-color: #e9ffff;
|
379
|
+
color: #10a3a3;
|
380
|
+
}
|
381
|
+
.ui.teal.message .header {
|
382
|
+
color: #0e8c8c;
|
383
|
+
}
|
384
|
+
.ui.yellow.message {
|
385
|
+
background-color: #fff8db;
|
386
|
+
color: #b58105;
|
387
|
+
}
|
388
|
+
.ui.yellow.message .header {
|
389
|
+
color: #9c6f04;
|
390
|
+
}
|
391
|
+
|
392
|
+
/*--------------
|
393
|
+
Sizes
|
394
|
+
---------------*/
|
395
|
+
|
396
|
+
.ui.small.message {
|
397
|
+
font-size: 0.92857143em;
|
398
|
+
}
|
399
|
+
.ui.message {
|
400
|
+
font-size: 1em;
|
401
|
+
}
|
402
|
+
.ui.large.message {
|
403
|
+
font-size: 1.14285714em;
|
404
|
+
}
|
405
|
+
.ui.huge.message {
|
406
|
+
font-size: 1.42857143em;
|
407
|
+
}
|
408
|
+
.ui.massive.message {
|
409
|
+
font-size: 1.71428571em;
|
410
|
+
}
|
411
|
+
|
412
|
+
|
413
|
+
/*******************************
|
414
|
+
Theme Overrides
|
415
|
+
*******************************/
|
416
|
+
|
417
|
+
|
418
|
+
|
419
|
+
/*******************************
|
420
|
+
User Variable Overrides
|
421
|
+
*******************************/
|
422
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
.ui.message{position:relative;min-height:1em;margin:1em 0;background:#efefef;padding:1em 1.5em;line-height:1.3;color:rgba(0,0,0,.8);-webkit-transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;border-radius:.2857rem;box-shadow:0 0 0 1px rgba(39,41,43,.15) inset,0 0 0 0 transparent}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;margin:0 0 .5rem}.ui.message .header:not(.ui){font-size:1.1em}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message ul.list{opacity:.85;list-style-position:inside;margin:.5em 0 0;padding:0}.ui.message ul.list:first-child{margin-top:0}.ui.message ul.list:last-child{margin-bottom:0}.ui.message ul.list li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message ul.list li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message ul.list li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:1.15em;right:.5em;opacity:.7;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:table}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.attached.message{margin-bottom:-1px;border-radius:.2857rem .2857rem 0 0;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .2857rem .2857rem;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{display:block;width:auto}.ui.icon.message{display:table;width:100%}.ui.icon.message>.icon:not(.close){display:table-cell;width:auto;vertical-align:middle;font-size:3em;opacity:.8}.ui.icon.message>.content{display:table-cell;width:100%;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:1.5rem}.ui.icon.message .circular.icon{width:1em}.ui.icon.message .circular.icon+.content{width:auto;padding-left:2em}.ui.floating.message{box-shadow:0 1px 4px 0 rgba(0,0,0,.15),0 0 0 1px rgba(39,41,43,.15) inset}.ui.positive.message{background-color:#eeffe7;color:#3c763d}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.positive.message .header{color:#356e36}.ui.negative.message{background-color:#fff0f0;color:#a94442}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.negative.message .header{color:#912d2b}.ui.info.message{background-color:#e9faff;color:#337b92}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #aad6df inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.info.message .header{color:#297187}.ui.warning.message{background-color:#fffbe6;color:#876a38}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #d9caab inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.warning.message .header{color:#825c01}.ui.error.message{background-color:#fff0f0;color:#a94442}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.error.message .header{color:#912d2b}.ui.success.message{background-color:#eeffe7;color:#3c763d}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.success.message .header{color:#356e36}.ui.black.message,.ui.inverted.message{background-color:#1b1c1d;color:#fff}.ui.blue.message{background-color:#dff0ff;color:#3b83c0}.ui.blue.message .header{color:#3576ac}.ui.green.message{background-color:#ebffed;color:#1ebc30}.ui.green.message .header{color:#1aa62a}.ui.orange.message{background-color:#ffedde;color:#e07b53}.ui.orange.message .header{color:#dc6a3d}.ui.pink.message{background-color:#ffe3fb;color:#d9499a}.ui.pink.message .header{color:#d5348e}.ui.purple.message{background-color:#eae7ff;color:#564f8a}.ui.purple.message .header{color:#4c467a}.ui.red.message{background-color:#ffe8e6;color:#d95c5c}.ui.red.message .header{color:#d44747}.ui.teal.message{background-color:#e9ffff;color:#10a3a3}.ui.teal.message .header{color:#0e8c8c}.ui.yellow.message{background-color:#fff8db;color:#b58105}.ui.yellow.message .header{color:#9c6f04}.ui.small.message{font-size:.92857143em}.ui.message{font-size:1em}.ui.large.message{font-size:1.14285714em}.ui.huge.message{font-size:1.42857143em}.ui.massive.message{font-size:1.71428571em}
|
@@ -0,0 +1,431 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
/*******************************
|
15
|
+
Modal
|
16
|
+
*******************************/
|
17
|
+
|
18
|
+
.ui.modal {
|
19
|
+
display: none;
|
20
|
+
position: fixed;
|
21
|
+
z-index: 1001;
|
22
|
+
top: 50%;
|
23
|
+
left: 50%;
|
24
|
+
text-align: left;
|
25
|
+
width: 90%;
|
26
|
+
margin-left: -45%;
|
27
|
+
background: #ffffff;
|
28
|
+
border: none;
|
29
|
+
box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.3);
|
30
|
+
border-radius: 0.2857rem;
|
31
|
+
-webkit-user-select: text;
|
32
|
+
-moz-user-select: text;
|
33
|
+
-ms-user-select: text;
|
34
|
+
user-select: text;
|
35
|
+
will-change: top, left, margin, transform, opacity;
|
36
|
+
}
|
37
|
+
.ui.modal > :first-child:not(.icon),
|
38
|
+
.ui.modal > .icon:first-child + * {
|
39
|
+
border-top-left-radius: 0.2857rem;
|
40
|
+
border-top-right-radius: 0.2857rem;
|
41
|
+
}
|
42
|
+
.ui.modal > :last-child {
|
43
|
+
border-bottom-left-radius: 0.2857rem;
|
44
|
+
border-bottom-right-radius: 0.2857rem;
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
/*******************************
|
49
|
+
Content
|
50
|
+
*******************************/
|
51
|
+
|
52
|
+
|
53
|
+
/*--------------
|
54
|
+
Close
|
55
|
+
---------------*/
|
56
|
+
|
57
|
+
.ui.modal > .close {
|
58
|
+
cursor: pointer;
|
59
|
+
position: absolute;
|
60
|
+
top: -2.5rem;
|
61
|
+
right: -2.5rem;
|
62
|
+
z-index: 1;
|
63
|
+
opacity: 0.8;
|
64
|
+
font-size: 1.25em;
|
65
|
+
color: #ffffff;
|
66
|
+
width: 2.25rem;
|
67
|
+
height: 2.25rem;
|
68
|
+
padding: 0.625rem 0rem 0rem 0rem;
|
69
|
+
}
|
70
|
+
.ui.modal > .close:hover {
|
71
|
+
opacity: 1;
|
72
|
+
}
|
73
|
+
|
74
|
+
/*--------------
|
75
|
+
Header
|
76
|
+
---------------*/
|
77
|
+
|
78
|
+
.ui.modal > .header {
|
79
|
+
display: block;
|
80
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
81
|
+
background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)) #ffffff;
|
82
|
+
background: linear-gradient(transparent, rgba(0, 0, 0, 0.05)) #ffffff;
|
83
|
+
margin: 0em;
|
84
|
+
padding: 1.2rem 2rem;
|
85
|
+
box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
86
|
+
font-size: 1.6em;
|
87
|
+
line-height: 1.3em;
|
88
|
+
font-weight: bold;
|
89
|
+
color: rgba(0, 0, 0, 0.85);
|
90
|
+
border-bottom: 1px solid rgba(39, 41, 43, 0.15);
|
91
|
+
}
|
92
|
+
|
93
|
+
/*--------------
|
94
|
+
Content
|
95
|
+
---------------*/
|
96
|
+
|
97
|
+
.ui.modal > .content {
|
98
|
+
display: table;
|
99
|
+
table-layout: fixed;
|
100
|
+
width: 100%;
|
101
|
+
font-size: 1em;
|
102
|
+
line-height: 1.4;
|
103
|
+
padding: 2rem;
|
104
|
+
background: #ffffff;
|
105
|
+
}
|
106
|
+
|
107
|
+
/* Image */
|
108
|
+
.ui.modal > .content > .image {
|
109
|
+
display: table-cell;
|
110
|
+
width: '';
|
111
|
+
vertical-align: top;
|
112
|
+
}
|
113
|
+
.ui.modal > .content > .image[class*="top aligned"] {
|
114
|
+
vertical-align: top;
|
115
|
+
}
|
116
|
+
.ui.modal > .content > .image[class*="top aligned"] {
|
117
|
+
vertical-align: middle;
|
118
|
+
}
|
119
|
+
|
120
|
+
/* Description */
|
121
|
+
.ui.modal > .content > .description {
|
122
|
+
display: table-cell;
|
123
|
+
vertical-align: top;
|
124
|
+
}
|
125
|
+
.ui.modal > .content > .icon + .description,
|
126
|
+
.ui.modal > .content > .image + .description {
|
127
|
+
min-width: '';
|
128
|
+
width: 80%;
|
129
|
+
padding-left: 2em;
|
130
|
+
}
|
131
|
+
/*rtl:ignore*/
|
132
|
+
.ui.modal > .content > .image > i.icon {
|
133
|
+
font-size: 8rem;
|
134
|
+
margin: 0em;
|
135
|
+
opacity: 1;
|
136
|
+
width: auto;
|
137
|
+
}
|
138
|
+
|
139
|
+
/*--------------
|
140
|
+
Actions
|
141
|
+
---------------*/
|
142
|
+
|
143
|
+
.ui.modal .actions {
|
144
|
+
background: #efefef;
|
145
|
+
padding: 1rem 2rem;
|
146
|
+
border-top: 1px solid rgba(39, 41, 43, 0.15);
|
147
|
+
text-align: right;
|
148
|
+
}
|
149
|
+
.ui.modal .actions > .button {
|
150
|
+
margin-left: 0.75em;
|
151
|
+
}
|
152
|
+
|
153
|
+
/*-------------------
|
154
|
+
Responsive
|
155
|
+
--------------------*/
|
156
|
+
|
157
|
+
|
158
|
+
/* Modal Width */
|
159
|
+
@media only screen and (max-width: 767px) {
|
160
|
+
.ui.modal {
|
161
|
+
width: 95%;
|
162
|
+
margin: 0em 0em 0em -47.5%;
|
163
|
+
}
|
164
|
+
}
|
165
|
+
@media only screen and (min-width: 768px) {
|
166
|
+
.ui.modal {
|
167
|
+
width: 88%;
|
168
|
+
margin: 0em 0em 0em -44%;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
@media only screen and (min-width: 992px) {
|
172
|
+
.ui.modal {
|
173
|
+
width: 74%;
|
174
|
+
margin: 0em 0em 0em -37%;
|
175
|
+
}
|
176
|
+
}
|
177
|
+
@media only screen and (min-width: 1400px) {
|
178
|
+
.ui.modal {
|
179
|
+
width: 56%;
|
180
|
+
margin: 0em 0em 0em -28%;
|
181
|
+
}
|
182
|
+
}
|
183
|
+
@media only screen and (min-width: 1920px) {
|
184
|
+
.ui.modal {
|
185
|
+
width: 42%;
|
186
|
+
margin: 0em 0em 0em -21%;
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
/* Tablet and Mobile */
|
191
|
+
@media only screen and (max-width: 992px) {
|
192
|
+
.ui.modal > .header {
|
193
|
+
padding-right: 2.25rem;
|
194
|
+
}
|
195
|
+
.ui.modal > .close {
|
196
|
+
top: 0.905rem;
|
197
|
+
right: 1rem;
|
198
|
+
color: rgba(0, 0, 0, 0.8);
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
202
|
+
/* Mobile */
|
203
|
+
@media only screen and (max-width: 767px) {
|
204
|
+
.ui.modal > .header {
|
205
|
+
padding: 0.75rem 1rem !important;
|
206
|
+
padding-right: 2.25rem !important;
|
207
|
+
}
|
208
|
+
.ui.modal > .content {
|
209
|
+
display: block;
|
210
|
+
padding: 1rem !important;
|
211
|
+
}
|
212
|
+
.ui.modal > .close {
|
213
|
+
top: 0.5rem !important;
|
214
|
+
right: 0.5rem !important;
|
215
|
+
}
|
216
|
+
/*rtl:ignore*/
|
217
|
+
.ui.modal .content > .image {
|
218
|
+
display: block;
|
219
|
+
max-width: 100%;
|
220
|
+
margin: 0em auto !important;
|
221
|
+
text-align: center;
|
222
|
+
padding: 0rem 0rem 1rem !important;
|
223
|
+
}
|
224
|
+
.ui.modal > .content > .image > i.icon {
|
225
|
+
font-size: 5rem;
|
226
|
+
text-align: center;
|
227
|
+
}
|
228
|
+
/*rtl:ignore*/
|
229
|
+
.ui.modal .content > .description {
|
230
|
+
display: block;
|
231
|
+
width: 100% !important;
|
232
|
+
margin: 0em !important;
|
233
|
+
padding: 1rem 0rem !important;
|
234
|
+
box-shadow: none;
|
235
|
+
}
|
236
|
+
.ui.modal > .actions {
|
237
|
+
padding: 1rem 1rem -1rem !important;
|
238
|
+
}
|
239
|
+
.ui.modal .actions > .buttons,
|
240
|
+
.ui.modal .actions > .button {
|
241
|
+
margin-bottom: 2rem;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
|
246
|
+
/*******************************
|
247
|
+
Types
|
248
|
+
*******************************/
|
249
|
+
|
250
|
+
.ui.basic.modal {
|
251
|
+
background-color: transparent;
|
252
|
+
border: none;
|
253
|
+
border-radius: 0em;
|
254
|
+
box-shadow: 0px 0px 0px 0px;
|
255
|
+
color: #ffffff;
|
256
|
+
}
|
257
|
+
.ui.basic.modal > .header,
|
258
|
+
.ui.basic.modal > .content,
|
259
|
+
.ui.basic.modal > .actions {
|
260
|
+
background-color: transparent;
|
261
|
+
}
|
262
|
+
.ui.basic.modal > .header {
|
263
|
+
color: #ffffff;
|
264
|
+
}
|
265
|
+
.ui.basic.modal > .close {
|
266
|
+
top: 1rem;
|
267
|
+
right: 1.5rem;
|
268
|
+
}
|
269
|
+
|
270
|
+
/* Tablet and Mobile */
|
271
|
+
@media only screen and (max-width: 992px) {
|
272
|
+
.ui.basic.modal > .close {
|
273
|
+
color: #ffffff;
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
|
278
|
+
/*******************************
|
279
|
+
Variations
|
280
|
+
*******************************/
|
281
|
+
|
282
|
+
|
283
|
+
/* A modal that cannot fit on the page */
|
284
|
+
.scrolling.dimmable.dimmed {
|
285
|
+
overflow: hidden;
|
286
|
+
}
|
287
|
+
.scrolling.dimmable.dimmed > .dimmer {
|
288
|
+
overflow: auto;
|
289
|
+
-webkit-overflow-scrolling: touch;
|
290
|
+
}
|
291
|
+
.scrolling.dimmable > .dimmer {
|
292
|
+
position: fixed;
|
293
|
+
}
|
294
|
+
.ui.scrolling.modal {
|
295
|
+
position: static;
|
296
|
+
margin: 3.5rem auto !important;
|
297
|
+
}
|
298
|
+
@media only screen and (max-width: 992px) {
|
299
|
+
.ui.scrolling.modal {
|
300
|
+
margin-top: 1rem;
|
301
|
+
margin-bottom: 1rem;
|
302
|
+
}
|
303
|
+
}
|
304
|
+
|
305
|
+
|
306
|
+
/*******************************
|
307
|
+
States
|
308
|
+
*******************************/
|
309
|
+
|
310
|
+
.ui.active.modal {
|
311
|
+
display: block;
|
312
|
+
}
|
313
|
+
|
314
|
+
|
315
|
+
/*******************************
|
316
|
+
Variations
|
317
|
+
*******************************/
|
318
|
+
|
319
|
+
|
320
|
+
/*--------------
|
321
|
+
Full Screen
|
322
|
+
---------------*/
|
323
|
+
|
324
|
+
.ui.fullscreen.modal {
|
325
|
+
width: 95% !important;
|
326
|
+
left: 2.5% !important;
|
327
|
+
margin: 1em auto;
|
328
|
+
}
|
329
|
+
.ui.fullscreen.scrolling.modal {
|
330
|
+
left: 0em !important;
|
331
|
+
}
|
332
|
+
.ui.fullscreen.modal > .header {
|
333
|
+
padding-right: 2.25rem;
|
334
|
+
}
|
335
|
+
.ui.fullscreen.modal > .close {
|
336
|
+
top: 0.905rem;
|
337
|
+
right: 1rem;
|
338
|
+
color: rgba(0, 0, 0, 0.8);
|
339
|
+
}
|
340
|
+
|
341
|
+
/*--------------
|
342
|
+
Size
|
343
|
+
---------------*/
|
344
|
+
|
345
|
+
.ui.modal {
|
346
|
+
font-size: 1rem;
|
347
|
+
}
|
348
|
+
|
349
|
+
/* Small */
|
350
|
+
.ui.small.modal > .header {
|
351
|
+
font-size: 1.3em;
|
352
|
+
}
|
353
|
+
|
354
|
+
/* Small Modal Width */
|
355
|
+
@media only screen and (max-width: 767px) {
|
356
|
+
.ui.small.modal {
|
357
|
+
width: 95%;
|
358
|
+
margin: 0em 0em 0em -47.5%;
|
359
|
+
}
|
360
|
+
}
|
361
|
+
@media only screen and (min-width: 768px) {
|
362
|
+
.ui.small.modal {
|
363
|
+
width: 52.8%;
|
364
|
+
margin: 0em 0em 0em -26.4%;
|
365
|
+
}
|
366
|
+
}
|
367
|
+
@media only screen and (min-width: 992px) {
|
368
|
+
.ui.small.modal {
|
369
|
+
width: 44.4%;
|
370
|
+
margin: 0em 0em 0em -22.2%;
|
371
|
+
}
|
372
|
+
}
|
373
|
+
@media only screen and (min-width: 1400px) {
|
374
|
+
.ui.small.modal {
|
375
|
+
width: 33.6%;
|
376
|
+
margin: 0em 0em 0em -16.8%;
|
377
|
+
}
|
378
|
+
}
|
379
|
+
@media only screen and (min-width: 1920px) {
|
380
|
+
.ui.small.modal {
|
381
|
+
width: 25.2%;
|
382
|
+
margin: 0em 0em 0em -12.6%;
|
383
|
+
}
|
384
|
+
}
|
385
|
+
|
386
|
+
/* Large Modal Width */
|
387
|
+
.ui.large.modal > .header {
|
388
|
+
font-size: 1.6em;
|
389
|
+
}
|
390
|
+
@media only screen and (max-width: 767px) {
|
391
|
+
.ui.large.modal {
|
392
|
+
width: 95%;
|
393
|
+
margin: 0em 0em 0em -47.5%;
|
394
|
+
}
|
395
|
+
}
|
396
|
+
@media only screen and (min-width: 768px) {
|
397
|
+
.ui.large.modal {
|
398
|
+
width: 88%;
|
399
|
+
margin: 0em 0em 0em -44%;
|
400
|
+
}
|
401
|
+
}
|
402
|
+
@media only screen and (min-width: 992px) {
|
403
|
+
.ui.large.modal {
|
404
|
+
width: 88.8%;
|
405
|
+
margin: 0em 0em 0em -44.4%;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
@media only screen and (min-width: 1400px) {
|
409
|
+
.ui.large.modal {
|
410
|
+
width: 67.2%;
|
411
|
+
margin: 0em 0em 0em -33.6%;
|
412
|
+
}
|
413
|
+
}
|
414
|
+
@media only screen and (min-width: 1920px) {
|
415
|
+
.ui.large.modal {
|
416
|
+
width: 50.4%;
|
417
|
+
margin: 0em 0em 0em -25.2%;
|
418
|
+
}
|
419
|
+
}
|
420
|
+
|
421
|
+
|
422
|
+
/*******************************
|
423
|
+
Theme Overrides
|
424
|
+
*******************************/
|
425
|
+
|
426
|
+
|
427
|
+
|
428
|
+
/*******************************
|
429
|
+
Site Overrides
|
430
|
+
*******************************/
|
431
|
+
|