lato_view 1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +35 -0
- data/app/assets/fonts/lato-bold-webfont.eot +0 -0
- data/app/assets/fonts/lato-bold-webfont.svg +4551 -0
- data/app/assets/fonts/lato-bold-webfont.ttf +0 -0
- data/app/assets/fonts/lato-bold-webfont.woff +0 -0
- data/app/assets/fonts/lato-bold-webfont.woff2 +0 -0
- data/app/assets/fonts/lato-regular-webfont.eot +0 -0
- data/app/assets/fonts/lato-regular-webfont.svg +4241 -0
- data/app/assets/fonts/lato-regular-webfont.ttf +0 -0
- data/app/assets/fonts/lato-regular-webfont.woff +0 -0
- data/app/assets/fonts/lato-regular-webfont.woff2 +0 -0
- data/app/assets/images/lato_view/icons/_arrow-down.svg +1 -0
- data/app/assets/images/lato_view/icons/_arrow-left.svg +1 -0
- data/app/assets/images/lato_view/icons/_arrow-right.svg +1 -0
- data/app/assets/images/lato_view/icons/_arrow-up.svg +1 -0
- data/app/assets/images/lato_view/icons/_artist.svg +1 -0
- data/app/assets/images/lato_view/icons/_artwork.svg +1 -0
- data/app/assets/images/lato_view/icons/_attachment.svg +1 -0
- data/app/assets/images/lato_view/icons/_calendar.svg +1 -0
- data/app/assets/images/lato_view/icons/_clients.svg +1 -0
- data/app/assets/images/lato_view/icons/_close.svg +1 -0
- data/app/assets/images/lato_view/icons/_download.svg +1 -0
- data/app/assets/images/lato_view/icons/_file.svg +1 -0
- data/app/assets/images/lato_view/icons/_google-plus.svg +1 -0
- data/app/assets/images/lato_view/icons/_home.svg +1 -0
- data/app/assets/images/lato_view/icons/_info.svg +1 -0
- data/app/assets/images/lato_view/icons/_instagram.svg +1 -0
- data/app/assets/images/lato_view/icons/_lato-logo.svg +1 -0
- data/app/assets/images/lato_view/icons/_linkedin.svg +1 -0
- data/app/assets/images/lato_view/icons/_list.svg +1 -0
- data/app/assets/images/lato_view/icons/_magni-glass.svg +1 -0
- data/app/assets/images/lato_view/icons/_mail.svg +1 -0
- data/app/assets/images/lato_view/icons/_minus.svg +1 -0
- data/app/assets/images/lato_view/icons/_modify.svg +1 -0
- data/app/assets/images/lato_view/icons/_percentage.svg +1 -0
- data/app/assets/images/lato_view/icons/_plus.svg +1 -0
- data/app/assets/images/lato_view/icons/_power.svg +1 -0
- data/app/assets/images/lato_view/icons/_settings.svg +1 -0
- data/app/assets/images/lato_view/icons/_sweet.svg +1 -0
- data/app/assets/images/lato_view/icons/_trash.svg +1 -0
- data/app/assets/images/lato_view/icons/_twitter.svg +1 -0
- data/app/assets/images/lato_view/icons/_upload.svg +1 -0
- data/app/assets/images/lato_view/icons/_user.svg +1 -0
- data/app/assets/images/lato_view/icons/_users.svg +1 -0
- data/app/assets/images/lato_view/icons/_warning.svg +1 -0
- data/app/assets/images/lato_view/icons/_web.svg +1 -0
- data/app/assets/images/lato_view/vendor/trumbowyg_icons.svg +1 -0
- data/app/assets/images/lato_view/work-in-progress/da-scegliere.svg +225 -0
- data/app/assets/images/lato_view/work-in-progress/social.svg +76 -0
- data/app/assets/javascripts/lato_view/application.js +68 -0
- data/app/assets/javascripts/lato_view/build/ActionBar.js +65 -0
- data/app/assets/javascripts/lato_view/build/Dropdown.js +33 -0
- data/app/assets/javascripts/lato_view/build/Flash.js +23 -0
- data/app/assets/javascripts/lato_view/build/FormManager.js +159 -0
- data/app/assets/javascripts/lato_view/build/Navigation.js +79 -0
- data/app/assets/javascripts/lato_view/build/Util.js +91 -0
- data/app/assets/javascripts/lato_view/build/Validator.js +235 -0
- data/app/assets/javascripts/lato_view/vendor/dropzone.min.js +2 -0
- data/app/assets/javascripts/lato_view/vendor/jquery.email-autocomplete.min.js +9 -0
- data/app/assets/javascripts/lato_view/vendor/modernizr.js +3 -0
- data/app/assets/javascripts/lato_view/vendor/moment.min.js +7 -0
- data/app/assets/javascripts/lato_view/vendor/picker-it_IT.js +1 -0
- data/app/assets/javascripts/lato_view/vendor/picker.date.js +5 -0
- data/app/assets/javascripts/lato_view/vendor/picker.js +7 -0
- data/app/assets/javascripts/lato_view/vendor/picker.time.js +5 -0
- data/app/assets/javascripts/lato_view/vendor/trumbowyg.js +1522 -0
- data/app/assets/stylesheets/lato_view/application.scss.erb +32 -0
- data/app/assets/stylesheets/lato_view/base/_base.scss +53 -0
- data/app/assets/stylesheets/lato_view/base/_helpers.scss +491 -0
- data/app/assets/stylesheets/lato_view/base/_media.scss +32 -0
- data/app/assets/stylesheets/lato_view/base/_reset.scss +424 -0
- data/app/assets/stylesheets/lato_view/base/_typography.scss +138 -0
- data/app/assets/stylesheets/lato_view/config/_config.scss +143 -0
- data/app/assets/stylesheets/lato_view/config/templates/_base-template.scss +158 -0
- data/app/assets/stylesheets/lato_view/config/templates/_black-template.scss +158 -0
- data/app/assets/stylesheets/lato_view/modules/_action-bar.scss +62 -0
- data/app/assets/stylesheets/lato_view/modules/_arranger.scss +10 -0
- data/app/assets/stylesheets/lato_view/modules/_button-group.scss +70 -0
- data/app/assets/stylesheets/lato_view/modules/_buttons.scss +177 -0
- data/app/assets/stylesheets/lato_view/modules/_content-block.scss +33 -0
- data/app/assets/stylesheets/lato_view/modules/_datepicker.scss +580 -0
- data/app/assets/stylesheets/lato_view/modules/_dropdown.scss +166 -0
- data/app/assets/stylesheets/lato_view/modules/_flash.scss +55 -0
- data/app/assets/stylesheets/lato_view/modules/_form-controls.scss +83 -0
- data/app/assets/stylesheets/lato_view/modules/_form.scss +297 -0
- data/app/assets/stylesheets/lato_view/modules/_modules.scss +19 -0
- data/app/assets/stylesheets/lato_view/modules/_navbar.scss +262 -0
- data/app/assets/stylesheets/lato_view/modules/_pagination.scss +30 -0
- data/app/assets/stylesheets/lato_view/modules/_search-bar.scss +44 -0
- data/app/assets/stylesheets/lato_view/modules/_select.scss +313 -0
- data/app/assets/stylesheets/lato_view/modules/_sidebar.scss +211 -0
- data/app/assets/stylesheets/lato_view/modules/_status.scss +39 -0
- data/app/assets/stylesheets/lato_view/modules/_table.scss +94 -0
- data/app/assets/stylesheets/lato_view/modules/_upload.scss +371 -0
- data/app/assets/stylesheets/lato_view/modules/_wyswyg.scss +755 -0
- data/app/assets/stylesheets/lato_view/views/_admin.scss +30 -0
- data/app/assets/stylesheets/lato_view/views/_grid.scss +448 -0
- data/app/assets/stylesheets/lato_view/views/_login.scss +152 -0
- data/app/assets/stylesheets/lato_view/views/_print.scss +41 -0
- data/app/assets/stylesheets/lato_view/views/_views.scss +48 -0
- data/app/concepts/lato_view/actionbar/cell.rb +65 -0
- data/app/concepts/lato_view/actionbar/views/show.html.erb +21 -0
- data/app/concepts/lato_view/block/cell.rb +52 -0
- data/app/concepts/lato_view/buttongroup/cell.rb +50 -0
- data/app/concepts/lato_view/buttongroup/views/show.html.erb +7 -0
- data/app/concepts/lato_view/dropdown/cell.rb +46 -0
- data/app/concepts/lato_view/dropdown/views/show.html.erb +19 -0
- data/app/concepts/lato_view/index/cell.rb +112 -0
- data/app/concepts/lato_view/index/views/head.html.erb +12 -0
- data/app/concepts/lato_view/index/views/rows.html.erb +49 -0
- data/app/concepts/lato_view/input/cell.rb +148 -0
- data/app/concepts/lato_view/input/views/checkbox.html.erb +8 -0
- data/app/concepts/lato_view/input/views/date.html.erb +5 -0
- data/app/concepts/lato_view/input/views/editor.html.erb +7 -0
- data/app/concepts/lato_view/input/views/email.html.erb +5 -0
- data/app/concepts/lato_view/input/views/file.html.erb +17 -0
- data/app/concepts/lato_view/input/views/multiple-select.html.erb +12 -0
- data/app/concepts/lato_view/input/views/number.html.erb +5 -0
- data/app/concepts/lato_view/input/views/password.html.erb +8 -0
- data/app/concepts/lato_view/input/views/radio.html.erb +10 -0
- data/app/concepts/lato_view/input/views/select.html.erb +12 -0
- data/app/concepts/lato_view/input/views/text.html.erb +5 -0
- data/app/concepts/lato_view/input/views/textarea.html.erb +5 -0
- data/app/concepts/lato_view/input/views/time.html.erb +5 -0
- data/app/concepts/lato_view/searchbar/cell.rb +63 -0
- data/app/concepts/lato_view/searchbar/views/show.html.erb +6 -0
- data/app/concepts/lato_view/table/cell.rb +88 -0
- data/app/concepts/lato_view/table/views/head.html.erb +9 -0
- data/app/concepts/lato_view/table/views/row.html.erb +7 -0
- data/app/concepts/lato_view/table/views/rows.html.erb +5 -0
- data/app/controllers/lato_view/assets_controller.rb +18 -0
- data/app/controllers/lato_view/develop_controller.rb +18 -0
- data/app/helpers/lato_view/application_helper.rb +22 -0
- data/app/views/lato_view/develop/home.html.erb +281 -0
- data/app/views/lato_view/icons/_arrowdown.svg +1 -0
- data/app/views/lato_view/icons/_arrowleft.svg +1 -0
- data/app/views/lato_view/icons/_arrowright.svg +1 -0
- data/app/views/lato_view/icons/_arrowup.svg +1 -0
- data/app/views/lato_view/icons/_artist.svg +1 -0
- data/app/views/lato_view/icons/_artwork.svg +1 -0
- data/app/views/lato_view/icons/_attachment.svg +1 -0
- data/app/views/lato_view/icons/_calendar.svg +1 -0
- data/app/views/lato_view/icons/_clients.svg +1 -0
- data/app/views/lato_view/icons/_close.svg +1 -0
- data/app/views/lato_view/icons/_download.svg +1 -0
- data/app/views/lato_view/icons/_file.svg +1 -0
- data/app/views/lato_view/icons/_googleplus.svg +1 -0
- data/app/views/lato_view/icons/_home.svg +1 -0
- data/app/views/lato_view/icons/_info.svg +1 -0
- data/app/views/lato_view/icons/_instagram.svg +1 -0
- data/app/views/lato_view/icons/_latologo.svg +1 -0
- data/app/views/lato_view/icons/_linkedin.svg +1 -0
- data/app/views/lato_view/icons/_list.svg +1 -0
- data/app/views/lato_view/icons/_magni-glass.svg +1 -0
- data/app/views/lato_view/icons/_mail.svg +1 -0
- data/app/views/lato_view/icons/_minus.svg +1 -0
- data/app/views/lato_view/icons/_modify.svg +1 -0
- data/app/views/lato_view/icons/_percentage.svg +1 -0
- data/app/views/lato_view/icons/_plus.svg +1 -0
- data/app/views/lato_view/icons/_power.svg +1 -0
- data/app/views/lato_view/icons/_settings.svg +1 -0
- data/app/views/lato_view/icons/_sweet.svg +1 -0
- data/app/views/lato_view/icons/_trash.svg +1 -0
- data/app/views/lato_view/icons/_twitter.svg +1 -0
- data/app/views/lato_view/icons/_upload.svg +1 -0
- data/app/views/lato_view/icons/_user.svg +1 -0
- data/app/views/lato_view/icons/_users.svg +1 -0
- data/app/views/lato_view/icons/_warning.svg +1 -0
- data/app/views/lato_view/icons/_web.svg +1 -0
- data/app/views/lato_view/layout/_flash.html.erb +5 -0
- data/app/views/lato_view/layout/_header.html.erb +31 -0
- data/app/views/lato_view/layout/_sidebar.html.erb +28 -0
- data/app/views/lato_view/layout/_strings.html.erb +8 -0
- data/app/views/layouts/lato_layout.html.erb +81 -0
- data/config/example.yml +19 -0
- data/config/initializers/assets.rb +5 -0
- data/config/initializers/init.rb +5 -0
- data/config/initializers/lists.rb +34 -0
- data/config/initializers/ram.rb +23 -0
- data/config/routes.rb +9 -0
- data/lib/lato_view/concepts.rb +19 -0
- data/lib/lato_view/engine.rb +23 -0
- data/lib/lato_view/interface/assets.rb +90 -0
- data/lib/lato_view/interface/images.rb +69 -0
- data/lib/lato_view/interface/navigation.rb +17 -0
- data/lib/lato_view/interface/themes.rb +37 -0
- data/lib/lato_view/interface.rb +19 -0
- data/lib/lato_view.rb +20 -0
- data/lib/tasks/lato_starter_tasks.rake +11 -0
- data/test/controllers/lato_view/api/v1/api_controller_test.rb +9 -0
- data/test/controllers/lato_view/application_controller_test.rb +9 -0
- data/test/controllers/lato_view/back/back_controller_test.rb +9 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +25 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/navigation_test.rb +8 -0
- data/test/lato_view_test.rb +7 -0
- data/test/test_helper.rb +21 -0
- metadata +453 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#admin-wrapper {
|
|
2
|
+
display: flex;
|
|
3
|
+
width: 100%;
|
|
4
|
+
@include clearfix();
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.main-content {
|
|
8
|
+
flex: 1;
|
|
9
|
+
height: 100vh;
|
|
10
|
+
overflow: auto;
|
|
11
|
+
.content-wrapper {
|
|
12
|
+
margin-top: 25px;
|
|
13
|
+
padding: 0 15px 0 30px;
|
|
14
|
+
@include clearfix();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.admin-section-title {
|
|
19
|
+
font-size: em(35px);
|
|
20
|
+
margin-bottom: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@include mq-max(766px) {
|
|
24
|
+
.main-content {
|
|
25
|
+
.content-wrapper {
|
|
26
|
+
margin-top: 35px;
|
|
27
|
+
padding: 0 20px;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,448 @@
|
|
|
1
|
+
/* Basic grid system */
|
|
2
|
+
|
|
3
|
+
@if settings('use-flex-grid') {
|
|
4
|
+
|
|
5
|
+
.content-row {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-wrap: wrap;
|
|
8
|
+
margin: 0 $flex-row-gap $flex-row-margin-bottom $flex-row-gap;
|
|
9
|
+
|
|
10
|
+
// Align Row-level
|
|
11
|
+
&.align-top {
|
|
12
|
+
align-items: flex-start;
|
|
13
|
+
}
|
|
14
|
+
&.align-bottom {
|
|
15
|
+
align-items: flex-end;
|
|
16
|
+
}
|
|
17
|
+
&.align-center {
|
|
18
|
+
align-items: center;
|
|
19
|
+
}
|
|
20
|
+
&.no-gutter {
|
|
21
|
+
margin: 0;
|
|
22
|
+
> .column {
|
|
23
|
+
margin: 0 0 20px 0;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.column {
|
|
29
|
+
flex: 1;
|
|
30
|
+
flex-basis: 100%;
|
|
31
|
+
margin: 0 $flex-col-gap;
|
|
32
|
+
|
|
33
|
+
// Align Column-level
|
|
34
|
+
&.top {
|
|
35
|
+
align-self: flex-start;
|
|
36
|
+
}
|
|
37
|
+
&.bottom {
|
|
38
|
+
align-self: flex-end;
|
|
39
|
+
}
|
|
40
|
+
&.center {
|
|
41
|
+
align-self: center;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@include mq-max($grid-small-break) {
|
|
46
|
+
.small-1 {
|
|
47
|
+
flex: 0 0 (8.333333% - $flex-gap);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.small-2 {
|
|
51
|
+
flex: 0 0 (16.666667% - $flex-gap);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.small-3 {
|
|
55
|
+
flex: 0 0 (25% - $flex-gap);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.small-4 {
|
|
59
|
+
flex: 0 0 (33.333333% - $flex-gap);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.small-5 {
|
|
63
|
+
flex: 0 0 (41.666667% - $flex-gap);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.small-6, .small-half {
|
|
67
|
+
flex: 0 0 (50% - $flex-gap);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.small-7 {
|
|
71
|
+
flex: 0 0 (58.333333% - $flex-gap);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.small-8 {
|
|
75
|
+
flex: 0 0 (66.666667% - $flex-gap);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.small-9 {
|
|
79
|
+
flex: 0 0 (75% - $flex-gap);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.small-10 {
|
|
83
|
+
flex: 0 0 (83.333333% - $flex-gap);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.small-11 {
|
|
87
|
+
flex: 0 0 (91.666667% - $flex-gap);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.small-12, .small-full {
|
|
91
|
+
flex: 0 0 (100% - $flex-gap);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@include mq-min($grid-medium-break) {
|
|
97
|
+
.medium-1 {
|
|
98
|
+
flex: 0 0 (8.333333% - $flex-gap);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.medium-2 {
|
|
102
|
+
flex: 0 0 (16.666667% - $flex-gap);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.medium-3 {
|
|
106
|
+
flex: 0 0 (25% - $flex-gap);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.medium-4 {
|
|
110
|
+
flex: 0 0 (33.333333% - $flex-gap);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.medium-5 {
|
|
114
|
+
flex: 0 0 (41.666667% - $flex-gap);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.medium-6, .medium-half {
|
|
118
|
+
flex: 0 0 (50% - $flex-gap);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.medium-7 {
|
|
122
|
+
flex: 0 0 (58.333333% - $flex-gap);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.medium-8 {
|
|
126
|
+
flex: 0 0 (66.666667% - $flex-gap);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.medium-9 {
|
|
130
|
+
flex: 0 0 (75% - $flex-gap);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.medium-10 {
|
|
134
|
+
flex: 0 0 (83.333333% - $flex-gap);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.medium-11 {
|
|
138
|
+
flex: 0 0 (91.666667% - $flex-gap);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.medium-12, .medium-full {
|
|
142
|
+
flex: 0 0 (100% - $flex-gap);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
@include mq-min($grid-large-break) {
|
|
147
|
+
.large-1 {
|
|
148
|
+
flex: 0 0 (8.333333% - $flex-gap);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.large-2 {
|
|
152
|
+
flex: 0 0 (16.666667% - $flex-gap);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.large-3 {
|
|
156
|
+
flex: 0 0 (25% - $flex-gap);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.large-4 {
|
|
160
|
+
flex: 0 0 (33.333333% - $flex-gap);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.large-5 {
|
|
164
|
+
flex: 0 0 (41.666667% - $flex-gap);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.large-6, .large-half {
|
|
168
|
+
flex: 0 0 (50% - $flex-gap);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.large-7 {
|
|
172
|
+
flex: 0 0 (58.333333% - $flex-gap);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.large-8 {
|
|
176
|
+
flex: 0 0 (66.666667% - $flex-gap);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.large-9 {
|
|
180
|
+
flex: 0 0 (75% - $flex-gap);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.large-10 {
|
|
184
|
+
flex: 0 0 (83.333333% - $flex-gap);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.large-11 {
|
|
188
|
+
flex: 0 0 (91.666667% - $flex-gap);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.large-12, .large-full {
|
|
192
|
+
flex: 0 0 (100% - $flex-gap);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
@include mq-min($grid-x-large-break) {
|
|
197
|
+
.xlarge-1 {
|
|
198
|
+
flex: 0 0 (8.333333% - $flex-gap);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.xlarge-2 {
|
|
202
|
+
flex: 0 0 (16.666667% - $flex-gap);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.xlarge-3 {
|
|
206
|
+
flex: 0 0 (25% - $flex-gap);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.xlarge-4 {
|
|
210
|
+
flex: 0 0 (33.333333% - $flex-gap);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.xlarge-5 {
|
|
214
|
+
flex: 0 0 (41.666667% - $flex-gap);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.xlarge-6, .xlarge-half {
|
|
218
|
+
flex: 0 0 (50% - $flex-gap);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.xlarge-7 {
|
|
222
|
+
flex: 0 0 (58.333333% - $flex-gap);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.xlarge-8 {
|
|
226
|
+
flex: 0 0 (66.666667% - $flex-gap);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.xlarge-9 {
|
|
230
|
+
flex: 0 0 (75% - $flex-gap);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.xlarge-10 {
|
|
234
|
+
flex: 0 0 (83.333333% - $flex-gap);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.xlarge-11 {
|
|
238
|
+
flex: 0 0 (91.666667% - $flex-gap);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.xlarge-12, .xlarge-full {
|
|
242
|
+
flex: 0 0 (100% - $flex-gap);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
} @else {
|
|
247
|
+
|
|
248
|
+
@include mq-max($grid-small-break) {
|
|
249
|
+
.small-1 {
|
|
250
|
+
@include col(1/12);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.small-2 {
|
|
254
|
+
@include col(2/12);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.small-3 {
|
|
258
|
+
@include col(3/12);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.small-4 {
|
|
262
|
+
@include col(4/12);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.small-5 {
|
|
266
|
+
@include col(5/12);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.small-6, .small-half {
|
|
270
|
+
@include col(6/12);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.small-7 {
|
|
274
|
+
@include col(7/12);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.small-8 {
|
|
278
|
+
@include col(8/12);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.small-9 {
|
|
282
|
+
@include col(9/12);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.small-10 {
|
|
286
|
+
@include col(10/12);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.small-11 {
|
|
290
|
+
@include col(11/12);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.small-12, .small-full {
|
|
294
|
+
@include col(12/12);
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
@include mq-min($grid-medium-break) {
|
|
300
|
+
.medium-1 {
|
|
301
|
+
@include col(1/12);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.medium-2 {
|
|
305
|
+
@include col(2/12);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.medium-3 {
|
|
309
|
+
@include col(3/12);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.medium-4 {
|
|
313
|
+
@include col(4/12);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.medium-5 {
|
|
317
|
+
@include col(5/12);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.medium-6, .medium-half {
|
|
321
|
+
@include col(6/12);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.medium-7 {
|
|
325
|
+
@include col(7/12);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.medium-8 {
|
|
329
|
+
@include col(8/12);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.medium-9 {
|
|
333
|
+
@include col(9/12);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.medium-10 {
|
|
337
|
+
@include col(10/12);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.medium-11 {
|
|
341
|
+
@include col(11/12);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.medium-12, .medium-full {
|
|
345
|
+
@include col(12/12);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
@include mq-min($grid-large-break) {
|
|
350
|
+
.large-1 {
|
|
351
|
+
@include col(1/12);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.large-2 {
|
|
355
|
+
@include col(2/12);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.large-3 {
|
|
359
|
+
@include col(3/12);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.large-4 {
|
|
363
|
+
@include col(4/12);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.large-5 {
|
|
367
|
+
@include col(5/12);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.large-6, .large-half {
|
|
371
|
+
@include col(6/12);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.large-7 {
|
|
375
|
+
@include col(7/12);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.large-8 {
|
|
379
|
+
@include col(8/12);
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.large-9 {
|
|
383
|
+
@include col(9/12);
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.large-10 {
|
|
387
|
+
@include col(10/12);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.large-11 {
|
|
391
|
+
@include col(11/12);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.large-12, .large-full {
|
|
395
|
+
@include col(12/12);
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
@include mq-min($grid-x-large-break) {
|
|
400
|
+
.xlarge-1 {
|
|
401
|
+
@include col(1/12);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.xlarge-2 {
|
|
405
|
+
@include col(2/12);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.xlarge-3 {
|
|
409
|
+
@include col(3/12);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.xlarge-4 {
|
|
413
|
+
@include col(4/12);
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.xlarge-5 {
|
|
417
|
+
@include col(5/12);
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.xlarge-6, .xlarge-half {
|
|
421
|
+
@include col(6/12);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.xlarge-7 {
|
|
425
|
+
@include col(7/12);
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.xlarge-8 {
|
|
429
|
+
@include col(8/12);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.xlarge-9 {
|
|
433
|
+
@include col(9/12);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.xlarge-10 {
|
|
437
|
+
@include col(10/12);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.xlarge-11 {
|
|
441
|
+
@include col(11/12);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.xlarge-12, .xlarge-full {
|
|
445
|
+
@include col(12/12);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
@keyframes square {
|
|
2
|
+
0% { transform: translateY(0); }
|
|
3
|
+
100% { transform: translateY(-1000px) rotate(600deg); }
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.main-content {
|
|
7
|
+
&.login {
|
|
8
|
+
position: relative;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
background: #50a3a2;
|
|
11
|
+
background: -webkit-linear-gradient(top left, $catskill-white 0%, lighten($ship-cove, 22%) 100%);
|
|
12
|
+
background: linear-gradient(to bottom right, $catskill-white 0%, lighten($ship-cove, 22%) 100%);
|
|
13
|
+
.flashes-container{
|
|
14
|
+
top: 0;
|
|
15
|
+
}
|
|
16
|
+
.link-back-login {
|
|
17
|
+
display: inline-block;
|
|
18
|
+
float: right;
|
|
19
|
+
padding: 14px 0;
|
|
20
|
+
text-decoration: none;
|
|
21
|
+
font-size: em(10px);
|
|
22
|
+
font-weight: bold;
|
|
23
|
+
letter-spacing: 2px;
|
|
24
|
+
text-transform: uppercase;
|
|
25
|
+
}
|
|
26
|
+
.link-password-forget {
|
|
27
|
+
display: inline-block;
|
|
28
|
+
float: right;
|
|
29
|
+
padding: 14px 0;
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
font-size: em(10px);
|
|
32
|
+
font-weight: bold;
|
|
33
|
+
letter-spacing: 2px;
|
|
34
|
+
text-transform: uppercase;
|
|
35
|
+
}
|
|
36
|
+
.recover-guide {
|
|
37
|
+
font-size: 14px;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.content-login {
|
|
43
|
+
@include align();
|
|
44
|
+
width: 33.3%;
|
|
45
|
+
margin: 0 auto;
|
|
46
|
+
background-color: white;
|
|
47
|
+
box-shadow: $content-block-shadow;
|
|
48
|
+
padding: 20px;
|
|
49
|
+
z-index: 10;
|
|
50
|
+
@include mq-max(1024px) {
|
|
51
|
+
width: 50%;
|
|
52
|
+
}
|
|
53
|
+
@include mq-max(850px) {
|
|
54
|
+
width: 85%;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.bg-bubbles{
|
|
59
|
+
position: absolute;
|
|
60
|
+
top: 0;
|
|
61
|
+
left: 0;
|
|
62
|
+
width: 100%;
|
|
63
|
+
height: 100%;
|
|
64
|
+
z-index: 0;
|
|
65
|
+
|
|
66
|
+
li {
|
|
67
|
+
position: absolute;
|
|
68
|
+
list-style: none;
|
|
69
|
+
display: block;
|
|
70
|
+
width: 40px;
|
|
71
|
+
height: 40px;
|
|
72
|
+
background-color: rgba(white, 0.3);
|
|
73
|
+
bottom: -160px;
|
|
74
|
+
animation: square 28s infinite;
|
|
75
|
+
transition-timing-function: linear;
|
|
76
|
+
|
|
77
|
+
&:nth-child(1) {
|
|
78
|
+
left: 10%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&:nth-child(2) {
|
|
82
|
+
left: 20%;
|
|
83
|
+
width: 80px;
|
|
84
|
+
height: 80px;
|
|
85
|
+
animation-delay: 2s;
|
|
86
|
+
animation-duration: 17s;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&:nth-child(3) {
|
|
90
|
+
left: 25%;
|
|
91
|
+
animation-delay: 4s;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&:nth-child(4) {
|
|
95
|
+
left: 40%;
|
|
96
|
+
width: 60px;
|
|
97
|
+
height: 60px;
|
|
98
|
+
animation-duration: 22s;
|
|
99
|
+
background-color: rgba(white, 0.4);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&:nth-child(5) {
|
|
103
|
+
left: 70%;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&:nth-child(6) {
|
|
107
|
+
left: 80%;
|
|
108
|
+
width: 120px;
|
|
109
|
+
height: 120px;
|
|
110
|
+
|
|
111
|
+
animation-delay: 3s;
|
|
112
|
+
background-color: rgba(white, 0.35);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&:nth-child(7) {
|
|
116
|
+
left: 32%;
|
|
117
|
+
width: 160px;
|
|
118
|
+
height: 160px;
|
|
119
|
+
animation-delay: 7s;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&:nth-child(8) {
|
|
123
|
+
left: 55%;
|
|
124
|
+
width: 20px;
|
|
125
|
+
height: 20px;
|
|
126
|
+
animation-delay: 15s;
|
|
127
|
+
animation-duration: 40s;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&:nth-child(9) {
|
|
131
|
+
left: 25%;
|
|
132
|
+
width: 10px;
|
|
133
|
+
height: 10px;
|
|
134
|
+
animation-delay: 2s;
|
|
135
|
+
animation-duration: 40s;
|
|
136
|
+
background-color: rgba(white, 0.45);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
&:nth-child(10) {
|
|
140
|
+
left: 90%;
|
|
141
|
+
width: 160px;
|
|
142
|
+
height: 160px;
|
|
143
|
+
animation-delay: 11s;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.login-logo {
|
|
149
|
+
text-align: center;
|
|
150
|
+
max-width: 190px;
|
|
151
|
+
margin: auto;
|
|
152
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* PRINT STYLES */
|
|
2
|
+
|
|
3
|
+
@media print {
|
|
4
|
+
*, *:before, *:after, *:first-letter, *:first-line {
|
|
5
|
+
background: transparent !important;
|
|
6
|
+
color: #000 !important;
|
|
7
|
+
box-shadow: none !important;
|
|
8
|
+
text-shadow: none !important;
|
|
9
|
+
}
|
|
10
|
+
a, a:visited {
|
|
11
|
+
text-decoration: underline;
|
|
12
|
+
}
|
|
13
|
+
a[href]:after {
|
|
14
|
+
content: " (" attr(href) ")";
|
|
15
|
+
}
|
|
16
|
+
abbr[title]:after {
|
|
17
|
+
content: " (" attr(title) ")";
|
|
18
|
+
}
|
|
19
|
+
a[href^="#"]:after,
|
|
20
|
+
a[href^="javascript:"]:after {
|
|
21
|
+
content: "";
|
|
22
|
+
}
|
|
23
|
+
pre, blockquote {
|
|
24
|
+
border: 1px solid #999;
|
|
25
|
+
page-break-inside: avoid;
|
|
26
|
+
}
|
|
27
|
+
img {
|
|
28
|
+
max-width: 100% !important;
|
|
29
|
+
page-break-inside: avoid;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
p, h2, h3 {
|
|
33
|
+
orphans: 3;
|
|
34
|
+
widows: 3;
|
|
35
|
+
}
|
|
36
|
+
h2, h3 {
|
|
37
|
+
page-break-after: avoid;
|
|
38
|
+
}
|
|
39
|
+
// Hide Here Other Key Items
|
|
40
|
+
|
|
41
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* General layout */
|
|
2
|
+
|
|
3
|
+
@import "grid";
|
|
4
|
+
|
|
5
|
+
main, section {
|
|
6
|
+
position: relative;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
section {
|
|
10
|
+
width: 100%;
|
|
11
|
+
display: block;
|
|
12
|
+
position: relative;
|
|
13
|
+
@include clearfix();
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// Layout Utility classes
|
|
17
|
+
.content, .content-box {
|
|
18
|
+
width: $main-max-width;
|
|
19
|
+
margin: 0 auto;
|
|
20
|
+
@include clearfix();
|
|
21
|
+
@include mq-min($large) {
|
|
22
|
+
width: $main-max-width_large;
|
|
23
|
+
}
|
|
24
|
+
@include mq-max($desk) {
|
|
25
|
+
width: 95%;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.inner-container {
|
|
30
|
+
width: 100%;
|
|
31
|
+
@include clearfix();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Small helper classes
|
|
35
|
+
.text-center { text-align: center !important; }
|
|
36
|
+
.text-left { text-align: left !important; }
|
|
37
|
+
.text-right { text-align: right !important; }
|
|
38
|
+
.text-uppercase { text-transform: uppercase !important; }
|
|
39
|
+
.go-right { float: right !important; }
|
|
40
|
+
.go-left { float: left !important; }
|
|
41
|
+
.full-width { width: 100% !important; }
|
|
42
|
+
.spacing { padding: $base-padding 0; }
|
|
43
|
+
.hidden { display: none !important; }
|
|
44
|
+
.no-radius { border-radius: 0 }
|
|
45
|
+
|
|
46
|
+
@import "admin";
|
|
47
|
+
@import "login";
|
|
48
|
+
//@import "print";
|