├── Master ├── .htaccess ├── admin │ ├── css │ │ ├── admin.css │ │ ├── animate.css │ │ ├── redactor-font.eot │ │ └── redactor.css │ ├── diag.php │ ├── img │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── icon-delete.svg │ │ ├── icon-file.svg │ │ ├── icon-folder.svg │ │ ├── icon-home.svg │ │ ├── icon-logout.svg │ │ ├── icon-window.svg │ │ └── logo.svg │ ├── inc │ │ ├── auto_backup.php │ │ ├── breadcrumbs.php │ │ ├── captions.php │ │ ├── create.php │ │ ├── data_json.php │ │ ├── delete.php │ │ ├── editor_files.php │ │ ├── editor_images.php │ │ ├── functions.php │ │ ├── gal-sort.php │ │ ├── home.php │ │ ├── lang │ │ │ ├── deutsch.php │ │ │ └── english.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── magic.php │ │ ├── open.php │ │ ├── rename.php │ │ ├── tracker.php │ │ ├── upload.php │ │ └── view-stats.php │ ├── index.php │ └── js │ │ ├── jquery-ui.min.js │ │ ├── jquery.js │ │ ├── redactor │ │ ├── imagemanager.js │ │ ├── redactor.min.js │ │ ├── redactor_options.js │ │ └── table.js │ │ └── scripts.js ├── config.php ├── content │ ├── .htaccess │ ├── backups │ │ └── 05.17.15-601.zip │ ├── blocks │ │ ├── @menus │ │ │ ├── sb_dropdown.txt │ │ │ ├── sb_main_menu.txt │ │ │ └── sb_mobile_menu.txt │ │ ├── @sidebar │ │ │ └── sb_sidebar_menu.txt │ │ ├── @system │ │ │ ├── sb_custom_css.txt │ │ │ ├── sb_custom_js.txt │ │ │ ├── sb_google_analytics.txt │ │ │ └── sb_meta.txt │ │ └── @widgets │ │ │ └── demo.txt │ ├── blog │ │ ├── 1.txt │ │ ├── 2.txt │ │ └── 3.txt │ ├── media │ │ ├── img.jpg │ │ └── screenshots │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ ├── pages │ │ ├── 404.txt │ │ ├── about.txt │ │ ├── blog.txt │ │ ├── contact.txt │ │ └── home.txt │ └── stats │ │ └── 05.17.15.txt ├── inc │ ├── plugins │ │ ├── .htaccess │ │ ├── disqus.php │ │ ├── lightbox │ │ │ └── jquery.magnific-popup.min.js │ │ ├── mailer │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── class.phpmailer.php │ │ │ └── class.smtp.php │ │ ├── parsedown.php │ │ └── timthumb.php │ └── tags │ │ ├── block.php │ │ ├── blog.php │ │ ├── css │ │ ├── blog.css │ │ ├── form.css │ │ └── magnific-popup.css │ │ ├── email-list.php │ │ ├── form.php │ │ └── gal.php ├── index.php ├── ivm │ ├── #backup │ │ ├── .htaccess │ │ ├── admin │ │ │ ├── inc │ │ │ │ └── login.php │ │ │ └── index.php │ │ ├── config.php │ │ └── index.php │ ├── dev-tools │ │ ├── dev-tools.php │ │ ├── extensions.php │ │ ├── extensions │ │ │ ├── plugins.php │ │ │ └── widgets.php │ │ ├── layout.php │ │ ├── layout │ │ │ ├── classes.php │ │ │ ├── grid.php │ │ │ ├── modules.php │ │ │ └── panels.php │ │ ├── pages.php │ │ └── web-elements.php │ ├── framework │ │ ├── fonts │ │ │ ├── FaktPro.css │ │ │ └── fakt │ │ │ │ ├── FaktPro-Blond.css │ │ │ │ ├── FaktPro-Blond_gdi.eot │ │ │ │ ├── FaktPro-Blond_gdi.otf │ │ │ │ ├── FaktPro-Blond_gdi.svg │ │ │ │ ├── FaktPro-Blond_gdi.ttf │ │ │ │ ├── FaktPro-Blond_gdi.woff │ │ │ │ ├── FaktPro-Hair.css │ │ │ │ ├── FaktPro-Hair_gdi.eot │ │ │ │ ├── FaktPro-Hair_gdi.otf │ │ │ │ ├── FaktPro-Hair_gdi.svg │ │ │ │ ├── FaktPro-Hair_gdi.ttf │ │ │ │ ├── FaktPro-Hair_gdi.woff │ │ │ │ ├── FaktPro-Light.css │ │ │ │ ├── FaktPro-Light_gdi.eot │ │ │ │ ├── FaktPro-Light_gdi.otf │ │ │ │ ├── FaktPro-Light_gdi.svg │ │ │ │ ├── FaktPro-Light_gdi.ttf │ │ │ │ ├── FaktPro-Light_gdi.woff │ │ │ │ ├── FaktPro-Medium.css │ │ │ │ ├── FaktPro-Medium_gdi.eot │ │ │ │ ├── FaktPro-Medium_gdi.otf │ │ │ │ ├── FaktPro-Medium_gdi.svg │ │ │ │ ├── FaktPro-Medium_gdi.ttf │ │ │ │ ├── FaktPro-Medium_gdi.woff │ │ │ │ ├── FaktPro-Normal.css │ │ │ │ ├── FaktPro-Normal_gdi.eot │ │ │ │ ├── FaktPro-Normal_gdi.otf │ │ │ │ ├── FaktPro-Normal_gdi.svg │ │ │ │ ├── FaktPro-Normal_gdi.ttf │ │ │ │ ├── FaktPro-Normal_gdi.woff │ │ │ │ ├── FaktPro-SemiBold.css │ │ │ │ ├── FaktPro-SemiBold_gdi.eot │ │ │ │ ├── FaktPro-SemiBold_gdi.otf │ │ │ │ ├── FaktPro-SemiBold_gdi.svg │ │ │ │ ├── FaktPro-SemiBold_gdi.ttf │ │ │ │ ├── FaktPro-SemiBold_gdi.woff │ │ │ │ ├── FaktPro-Thin.css │ │ │ │ ├── FaktPro-Thin_gdi.eot │ │ │ │ ├── FaktPro-Thin_gdi.otf │ │ │ │ ├── FaktPro-Thin_gdi.svg │ │ │ │ ├── FaktPro-Thin_gdi.ttf │ │ │ │ └── FaktPro-Thin_gdi.woff │ │ ├── js │ │ │ ├── highlight.pack.js │ │ │ ├── ivm_menu.js │ │ │ ├── jquery.js │ │ │ ├── less.min.js │ │ │ └── svg.js │ │ └── uikit │ │ │ ├── css │ │ │ ├── components │ │ │ │ ├── accordion.almost-flat.css │ │ │ │ ├── accordion.almost-flat.min.css │ │ │ │ ├── accordion.css │ │ │ │ ├── accordion.gradient.css │ │ │ │ ├── accordion.gradient.min.css │ │ │ │ ├── accordion.min.css │ │ │ │ ├── autocomplete.almost-flat.css │ │ │ │ ├── autocomplete.almost-flat.min.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── autocomplete.gradient.css │ │ │ │ ├── autocomplete.gradient.min.css │ │ │ │ ├── autocomplete.min.css │ │ │ │ ├── datepicker.almost-flat.css │ │ │ │ ├── datepicker.almost-flat.min.css │ │ │ │ ├── datepicker.css │ │ │ │ ├── datepicker.gradient.css │ │ │ │ ├── datepicker.gradient.min.css │ │ │ │ ├── datepicker.min.css │ │ │ │ ├── dotnav.almost-flat.css │ │ │ │ ├── dotnav.almost-flat.min.css │ │ │ │ ├── dotnav.css │ │ │ │ ├── dotnav.gradient.css │ │ │ │ ├── dotnav.gradient.min.css │ │ │ │ ├── dotnav.min.css │ │ │ │ ├── form-advanced.almost-flat.css │ │ │ │ ├── form-advanced.almost-flat.min.css │ │ │ │ ├── form-advanced.css │ │ │ │ ├── form-advanced.gradient.css │ │ │ │ ├── form-advanced.gradient.min.css │ │ │ │ ├── form-advanced.min.css │ │ │ │ ├── form-file.almost-flat.css │ │ │ │ ├── form-file.almost-flat.min.css │ │ │ │ ├── form-file.css │ │ │ │ ├── form-file.gradient.css │ │ │ │ ├── form-file.gradient.min.css │ │ │ │ ├── form-file.min.css │ │ │ │ ├── form-password.almost-flat.css │ │ │ │ ├── form-password.almost-flat.min.css │ │ │ │ ├── form-password.css │ │ │ │ ├── form-password.gradient.css │ │ │ │ ├── form-password.gradient.min.css │ │ │ │ ├── form-password.min.css │ │ │ │ ├── form-select.almost-flat.css │ │ │ │ ├── form-select.almost-flat.min.css │ │ │ │ ├── form-select.css │ │ │ │ ├── form-select.gradient.css │ │ │ │ ├── form-select.gradient.min.css │ │ │ │ ├── form-select.min.css │ │ │ │ ├── htmleditor.almost-flat.css │ │ │ │ ├── htmleditor.almost-flat.min.css │ │ │ │ ├── htmleditor.css │ │ │ │ ├── htmleditor.gradient.css │ │ │ │ ├── htmleditor.gradient.min.css │ │ │ │ ├── htmleditor.min.css │ │ │ │ ├── nestable.almost-flat.css │ │ │ │ ├── nestable.almost-flat.min.css │ │ │ │ ├── nestable.css │ │ │ │ ├── nestable.gradient.css │ │ │ │ ├── nestable.gradient.min.css │ │ │ │ ├── nestable.min.css │ │ │ │ ├── notify.almost-flat.css │ │ │ │ ├── notify.almost-flat.min.css │ │ │ │ ├── notify.css │ │ │ │ ├── notify.gradient.css │ │ │ │ ├── notify.gradient.min.css │ │ │ │ ├── notify.min.css │ │ │ │ ├── placeholder.almost-flat.css │ │ │ │ ├── placeholder.almost-flat.min.css │ │ │ │ ├── placeholder.css │ │ │ │ ├── placeholder.gradient.css │ │ │ │ ├── placeholder.gradient.min.css │ │ │ │ ├── placeholder.min.css │ │ │ │ ├── progress.almost-flat.css │ │ │ │ ├── progress.almost-flat.min.css │ │ │ │ ├── progress.css │ │ │ │ ├── progress.gradient.css │ │ │ │ ├── progress.gradient.min.css │ │ │ │ ├── progress.min.css │ │ │ │ ├── search.almost-flat.css │ │ │ │ ├── search.almost-flat.min.css │ │ │ │ ├── search.css │ │ │ │ ├── search.gradient.css │ │ │ │ ├── search.gradient.min.css │ │ │ │ ├── search.min.css │ │ │ │ ├── slidenav.almost-flat.css │ │ │ │ ├── slidenav.almost-flat.min.css │ │ │ │ ├── slidenav.css │ │ │ │ ├── slidenav.gradient.css │ │ │ │ ├── slidenav.gradient.min.css │ │ │ │ ├── slidenav.min.css │ │ │ │ ├── slider.almost-flat.css │ │ │ │ ├── slider.almost-flat.min.css │ │ │ │ ├── slider.css │ │ │ │ ├── slider.gradient.css │ │ │ │ ├── slider.gradient.min.css │ │ │ │ ├── slider.min.css │ │ │ │ ├── slideshow.almost-flat.css │ │ │ │ ├── slideshow.almost-flat.min.css │ │ │ │ ├── slideshow.css │ │ │ │ ├── slideshow.gradient.css │ │ │ │ ├── slideshow.gradient.min.css │ │ │ │ ├── slideshow.min.css │ │ │ │ ├── sortable.almost-flat.css │ │ │ │ ├── sortable.almost-flat.min.css │ │ │ │ ├── sortable.css │ │ │ │ ├── sortable.gradient.css │ │ │ │ ├── sortable.gradient.min.css │ │ │ │ ├── sortable.min.css │ │ │ │ ├── sticky.almost-flat.css │ │ │ │ ├── sticky.almost-flat.min.css │ │ │ │ ├── sticky.css │ │ │ │ ├── sticky.gradient.css │ │ │ │ ├── sticky.gradient.min.css │ │ │ │ ├── sticky.min.css │ │ │ │ ├── tooltip.almost-flat.css │ │ │ │ ├── tooltip.almost-flat.min.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tooltip.gradient.css │ │ │ │ ├── tooltip.gradient.min.css │ │ │ │ ├── tooltip.min.css │ │ │ │ ├── upload.almost-flat.css │ │ │ │ ├── upload.almost-flat.min.css │ │ │ │ ├── upload.css │ │ │ │ ├── upload.gradient.css │ │ │ │ ├── upload.gradient.min.css │ │ │ │ └── upload.min.css │ │ │ ├── uikit.almost-flat.css │ │ │ ├── uikit.almost-flat.min.css │ │ │ ├── uikit.css │ │ │ ├── uikit.gradient.css │ │ │ ├── uikit.gradient.min.css │ │ │ └── uikit.min.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── js │ │ │ ├── components │ │ │ │ ├── accordion.js │ │ │ │ ├── accordion.min.js │ │ │ │ ├── autocomplete.js │ │ │ │ ├── autocomplete.min.js │ │ │ │ ├── datepicker.js │ │ │ │ ├── datepicker.min.js │ │ │ │ ├── form-password.js │ │ │ │ ├── form-password.min.js │ │ │ │ ├── form-select.js │ │ │ │ ├── form-select.min.js │ │ │ │ ├── grid.js │ │ │ │ ├── grid.min.js │ │ │ │ ├── htmleditor.js │ │ │ │ ├── htmleditor.min.js │ │ │ │ ├── lightbox.js │ │ │ │ ├── lightbox.min.js │ │ │ │ ├── nestable.js │ │ │ │ ├── nestable.min.js │ │ │ │ ├── notify.js │ │ │ │ ├── notify.min.js │ │ │ │ ├── pagination.js │ │ │ │ ├── pagination.min.js │ │ │ │ ├── parallax.js │ │ │ │ ├── parallax.min.js │ │ │ │ ├── search.js │ │ │ │ ├── search.min.js │ │ │ │ ├── slider.js │ │ │ │ ├── slider.min.js │ │ │ │ ├── slideset.js │ │ │ │ ├── slideset.min.js │ │ │ │ ├── slideshow-fx.js │ │ │ │ ├── slideshow-fx.min.js │ │ │ │ ├── slideshow.js │ │ │ │ ├── slideshow.min.js │ │ │ │ ├── sortable.js │ │ │ │ ├── sortable.min.js │ │ │ │ ├── sticky.js │ │ │ │ ├── sticky.min.js │ │ │ │ ├── timepicker.js │ │ │ │ ├── timepicker.min.js │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.min.js │ │ │ │ ├── upload.js │ │ │ │ └── upload.min.js │ │ │ ├── core │ │ │ │ ├── alert.js │ │ │ │ ├── alert.min.js │ │ │ │ ├── button.js │ │ │ │ ├── button.min.js │ │ │ │ ├── core.js │ │ │ │ ├── core.min.js │ │ │ │ ├── cover.js │ │ │ │ ├── cover.min.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.min.js │ │ │ │ ├── grid.js │ │ │ │ ├── grid.min.js │ │ │ │ ├── modal.js │ │ │ │ ├── modal.min.js │ │ │ │ ├── nav.js │ │ │ │ ├── nav.min.js │ │ │ │ ├── offcanvas.js │ │ │ │ ├── offcanvas.min.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.min.js │ │ │ │ ├── smooth-scroll.js │ │ │ │ ├── smooth-scroll.min.js │ │ │ │ ├── switcher.js │ │ │ │ ├── switcher.min.js │ │ │ │ ├── tab.js │ │ │ │ ├── tab.min.js │ │ │ │ ├── toggle.js │ │ │ │ ├── toggle.min.js │ │ │ │ ├── touch.js │ │ │ │ ├── touch.min.js │ │ │ │ ├── utility.js │ │ │ │ └── utility.min.js │ │ │ ├── uikit.js │ │ │ └── uikit.min.js │ │ │ └── less │ │ │ ├── components │ │ │ ├── accordion.less │ │ │ ├── autocomplete.less │ │ │ ├── datepicker.less │ │ │ ├── dotnav.less │ │ │ ├── form-advanced.less │ │ │ ├── form-file.less │ │ │ ├── form-password.less │ │ │ ├── form-select.less │ │ │ ├── htmleditor.less │ │ │ ├── nestable.less │ │ │ ├── notify.less │ │ │ ├── placeholder.less │ │ │ ├── progress.less │ │ │ ├── search.less │ │ │ ├── slidenav.less │ │ │ ├── slider.less │ │ │ ├── slideshow.less │ │ │ ├── sortable.less │ │ │ ├── sticky.less │ │ │ ├── tooltip.less │ │ │ └── upload.less │ │ │ ├── core │ │ │ ├── alert.less │ │ │ ├── animation.less │ │ │ ├── article.less │ │ │ ├── badge.less │ │ │ ├── base.less │ │ │ ├── block.less │ │ │ ├── breadcrumb.less │ │ │ ├── button.less │ │ │ ├── close.less │ │ │ ├── comment.less │ │ │ ├── contrast.less │ │ │ ├── cover.less │ │ │ ├── description-list.less │ │ │ ├── dropdown.less │ │ │ ├── flex.less │ │ │ ├── form.less │ │ │ ├── grid.less │ │ │ ├── icon.less │ │ │ ├── list.less │ │ │ ├── modal.less │ │ │ ├── nav.less │ │ │ ├── navbar.less │ │ │ ├── offcanvas.less │ │ │ ├── overlay.less │ │ │ ├── pagination.less │ │ │ ├── panel.less │ │ │ ├── print.less │ │ │ ├── subnav.less │ │ │ ├── switcher.less │ │ │ ├── tab.less │ │ │ ├── table.less │ │ │ ├── text.less │ │ │ ├── thumbnail.less │ │ │ ├── thumbnav.less │ │ │ ├── utility.less │ │ │ └── variables.less │ │ │ └── uikit.less │ ├── lang │ │ ├── english.php │ │ └── serbian.php │ ├── page-templates │ │ ├── @protect │ │ │ └── layout.php │ │ ├── article-heading │ │ │ └── layout.php │ │ ├── article │ │ │ └── layout.php │ │ ├── page-heading │ │ │ └── layout.php │ │ ├── page-subheading │ │ │ └── layout.php │ │ ├── page │ │ │ └── layout.php │ │ ├── sidebar-left-heading │ │ │ └── layout.php │ │ ├── sidebar-left-subheading │ │ │ └── layout.php │ │ ├── sidebar-left │ │ │ └── layout.php │ │ ├── sidebar-right-heading │ │ │ └── layout.php │ │ ├── sidebar-right-subheading │ │ │ └── layout.php │ │ └── sidebar-right │ │ │ └── layout.php │ ├── plugins │ │ ├── ivm-block.php │ │ ├── ivm-blog.php │ │ ├── ivm-breadcrumbs.php │ │ ├── ivm-form.php │ │ ├── ivm-gallery.php │ │ ├── ivm-map.php │ │ ├── ivm-panorama.php │ │ ├── ivm-twitter.php │ │ ├── js │ │ │ └── gmaps.js │ │ └── twitter │ │ │ ├── ivm-tweecool.css │ │ │ ├── ivm-tweecool.js │ │ │ ├── tweecool.js │ │ │ └── tweecool.min.js │ ├── system │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── ivm-admin.min.css │ │ │ │ ├── ivm-login.css │ │ │ │ └── ivm-uikit.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── flaticon.css │ │ │ │ ├── flaticon.eot │ │ │ │ ├── flaticon.html │ │ │ │ ├── flaticon.svg │ │ │ │ ├── flaticon.ttf │ │ │ │ ├── flaticon.woff │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── htmleditor │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── htmleditor.almost-flat.min.css │ │ │ │ ├── htmleditor.js │ │ │ │ └── marked.js │ │ │ ├── img │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ │ ├── blocks.png │ │ │ │ │ ├── blog.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── dev.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── form.png │ │ │ │ │ ├── gallery.png │ │ │ │ │ ├── general.png │ │ │ │ │ ├── gmail.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── map.png │ │ │ │ │ ├── media.png │ │ │ │ │ ├── menu.png │ │ │ │ │ ├── pages.png │ │ │ │ │ ├── stats.png │ │ │ │ │ ├── system.png │ │ │ │ │ ├── twitter.png │ │ │ │ │ └── widgets.png │ │ │ │ ├── logo.png │ │ │ │ └── protect.svg │ │ │ └── js │ │ │ │ ├── accordion.min.js │ │ │ │ ├── ivm-menu.js │ │ │ │ ├── ivm_layout.js │ │ │ │ ├── ivm_protect.js │ │ │ │ ├── jquery.js │ │ │ │ └── uikit.min.js │ │ ├── config.php │ │ ├── menu.php │ │ ├── mobile-menu.php │ │ ├── quick_menu.php │ │ ├── redactor │ │ │ ├── redactor.min.js │ │ │ ├── redactor_options.js │ │ │ ├── table.js │ │ │ └── video.js │ │ ├── settings.php │ │ ├── settings │ │ │ ├── dev-config.php │ │ │ ├── dev-options.php │ │ │ ├── email-config.php │ │ │ ├── email-options.php │ │ │ ├── gallery-config.php │ │ │ ├── gallery-options.php │ │ │ ├── general-config.php │ │ │ ├── general-options.php │ │ │ ├── map-config.php │ │ │ ├── map-options.php │ │ │ ├── twitter-config.php │ │ │ └── twitter-options.php │ │ └── toolbar.php │ └── widgets-examples │ │ ├── ivm-accordion.php │ │ ├── ivm-block.php │ │ ├── ivm-blog.php │ │ ├── ivm-breadcrumbs.php │ │ ├── ivm-form.php │ │ ├── ivm-gallery.php │ │ ├── ivm-grid.php │ │ ├── ivm-lists.php │ │ ├── ivm-map.php │ │ ├── ivm-modal.php │ │ ├── ivm-panorama.php │ │ ├── ivm-portfolio.php │ │ ├── ivm-slideset.php │ │ ├── ivm-slideshow.php │ │ ├── ivm-switcher.php │ │ ├── ivm-tabs.php │ │ ├── ivm-twitter.php │ │ ├── js │ │ └── gmaps.js │ │ └── twitter │ │ ├── ivm-tweecool.css │ │ ├── ivm-tweecool.js │ │ ├── tweecool.js │ │ └── tweecool.min.js ├── rss.php ├── sample.htaccess └── template │ ├── admin │ ├── menu-multi-lang.php │ ├── menu-widgets.php │ ├── pages.php │ ├── web-elements.php │ └── widgets.php │ ├── css │ ├── custom.css │ └── theme.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── img │ ├── apple-touch-icon.png │ ├── favicon.ico │ ├── flatinet-logo.png │ └── logo.png │ ├── js │ ├── custom.js │ └── smooth-scroll.js │ ├── layout.php │ ├── layouts │ ├── footer.php │ ├── head.php │ └── header.php │ ├── less │ ├── ivm │ │ ├── base.less │ │ ├── buttons.less │ │ ├── form.less │ │ ├── full_screen.less │ │ ├── header.less │ │ ├── highlight.less │ │ ├── layout.less │ │ ├── modules.less │ │ ├── page_heading.less │ │ ├── panels.less │ │ ├── responsive.less │ │ └── sidebar_menu.less │ ├── theme.less │ └── variables.less │ ├── page-templates │ └── index.html │ └── widgets │ └── index.html └── README.md /Master/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | 3 | # RewriteBase / 4 | 5 | RewriteRule ^item-page-([^-]*)$ ?page=$1&p=blog [L] 6 | RewriteRule ^item-([^-]*)+? ?d=$1&p=blog [L] 7 | 8 | RewriteCond %{REQUEST_FILENAME} !-f 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)$ index.php?p=$1 [L] 11 | 12 | # Adds SVG image support 13 | AddType image/svg+xml svg svgz 14 | AddEncoding gzip svgz -------------------------------------------------------------------------------- /Master/admin/css/redactor-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/admin/css/redactor-font.eot -------------------------------------------------------------------------------- /Master/admin/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/admin/img/apple-touch-icon.png -------------------------------------------------------------------------------- /Master/admin/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/admin/img/favicon.ico -------------------------------------------------------------------------------- /Master/admin/img/icon-delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icon-delete 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Master/admin/img/icon-file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icon-file 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Master/admin/img/icon-folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icon-folder 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Master/admin/img/icon-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icon-home 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Master/admin/img/icon-logout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icon-delete 3 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Master/admin/img/icon-window.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vector 1 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Master/admin/img/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Untitled 3 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Master/admin/inc/breadcrumbs.php: -------------------------------------------------------------------------------- 1 | $lang_nav_home"; 7 | foreach ($fname as $level){ 8 | 9 | switch ($level) { 10 | case 'blog': 11 | $base_output = $lang_nav_blog; 12 | break; 13 | 14 | case 'blocks': 15 | $base_output = $lang_nav_blocks; 16 | break; 17 | 18 | case 'media': 19 | $base_output = $lang_nav_img; 20 | break; 21 | 22 | case 'pages': 23 | $base_output = $lang_nav_pages; 24 | break; 25 | 26 | default: 27 | $base_output = $level; 28 | break; 29 | } 30 | 31 | $i++; 32 | 33 | if ($level == $last_level && $last == $i){ 34 | 35 | if (!empty($ext)){ $base_output = $level.$ext; } 36 | echo ' / '.$base_output; 37 | } 38 | else { 39 | $all_levels[] = $level; 40 | $all = implode('/', $all_levels); 41 | echo " / ".$base_output.""; 42 | } 43 | } 44 | ?> -------------------------------------------------------------------------------- /Master/admin/inc/data_json.php: -------------------------------------------------------------------------------- 1 | "$path/content/media/".$file, 'image'=> "$path/content/media/".$file); 13 | } 14 | 15 | exit(str_replace('\/','/',json_encode($arr))); 16 | ?> -------------------------------------------------------------------------------- /Master/admin/inc/editor_files.php: -------------------------------------------------------------------------------- 1 | $path.'/content/media/'.$_FILES['file']['name'], 10 | 'filename' => $_FILES['file']['name'] 11 | ); 12 | 13 | echo stripslashes(json_encode($array)); 14 | ?> -------------------------------------------------------------------------------- /Master/admin/inc/functions.php: -------------------------------------------------------------------------------- 1 | $v){ 24 | $check_in[] = $v[0]; 25 | $name = $v[0]; 26 | $b[$name] = $v[1]; 27 | } 28 | asort($b); 29 | 30 | $count = count($b)-1; 31 | for($i=0; $i<$count; $i++){ 32 | $image[] = $test_line[$i]; 33 | } 34 | } 35 | 36 | foreach (glob("../content/media/". $gallery ."/*") as $file){ 37 | $info = pathinfo($file); 38 | $ext = $info['extension']; 39 | $base = $info['basename']; 40 | 41 | if(!in_array($base, $check_in) && $ext!='txt'){ 42 | $position = $count++; 43 | $image_insert = array($base, $position); 44 | array_push($image, $image_insert); 45 | } 46 | } 47 | return($image); 48 | } 49 | ?> -------------------------------------------------------------------------------- /Master/admin/inc/gal-sort.php: -------------------------------------------------------------------------------- 1 | $value){ 12 | 13 | $position_new[] = array($value,$key); 14 | } 15 | if (file_exists($opFile)) { 16 | $fp = fopen($opFile,"r"); 17 | $data = @fread($fp, filesize($opFile)); 18 | fclose($fp); 19 | $line = explode("\n", $data); 20 | $count = count($line); 21 | 22 | foreach ($line as $lin) { 23 | $image[] = explode("|", $lin); 24 | } 25 | } 26 | foreach ($position_new as $new) { 27 | 28 | for ($i = 0; $i < $count; $i++){ 29 | 30 | if ($image[$i][0] == $new[0]) { 31 | $taken[] = $new[0]; 32 | $new_data .= $new[0] ."|". $new[1]."|". $image[$i][2]. "\n"; 33 | } 34 | } 35 | 36 | if (!empty($new[0])){ 37 | if(!in_array($new[0], $taken)) { 38 | $new_data .= $new[0]."|".$new[1] ."|". '' . "\n"; 39 | } 40 | } 41 | } 42 | $open = fopen($opFile,"w"); 43 | if ($open) { 44 | $data = fwrite($open, $new_data); 45 | fclose($open); 46 | } 47 | } -------------------------------------------------------------------------------- /Master/admin/inc/logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/admin/inc/magic.php: -------------------------------------------------------------------------------- 1 | $v) { 8 | unset($process[$key][$k]); 9 | if (is_array($v)) { 10 | $process[$key][stripslashes($k)] = $v; 11 | $process[] = &$process[$key][stripslashes($k)]; 12 | } else { 13 | $process[$key][stripslashes($k)] = stripslashes($v); 14 | } 15 | } 16 | } 17 | unset($process); 18 | } -------------------------------------------------------------------------------- /Master/admin/inc/tracker.php: -------------------------------------------------------------------------------- 1 | ","", $all); 18 | 19 | foreach ((glob("../../content/stats/*.txt")) as $fl) { 20 | 21 | $file = basename($fl,".txt"); 22 | $month = substr($file, 0,2); 23 | $day = substr($file, 3,2); 24 | $year = substr($file, 6,2); 25 | $file_mk = mktime(0,0,0,$month, $day, $year); 26 | 27 | if ($file_mk < $last_week_mk) { 28 | unlink("../../content/stats/$file.txt"); 29 | } 30 | } 31 | 32 | $file_han = fopen("../../content/stats/$today.txt","a"); 33 | fwrite($file_han,$all); 34 | fclose($file_han); -------------------------------------------------------------------------------- /Master/admin/js/redactor/redactor_options.js: -------------------------------------------------------------------------------- 1 | $(function() 2 | { 3 | $('#wysiwyg').redactor({ 4 | lang: 'en', 5 | cleanOnPaste: true, 6 | linkTooltip: true, 7 | paragraphize: true, 8 | imageUpload: 'inc/editor_images.php', 9 | imageManagerJson: 'inc/data_json.php', 10 | fileUpload: 'inc/editor_files.php', 11 | replaceDivs: false, 12 | autoresize: true, 13 | minHeight: 500, 14 | buttonSource: true, 15 | plugins: ['imagemanager','table'] 16 | }); 17 | }); -------------------------------------------------------------------------------- /Master/admin/js/scripts.js: -------------------------------------------------------------------------------- 1 | 2 | // Show/hide meta 3 | $(document).ready(function(){ 4 | $('a.embed_toggle').on('click', function(e) { 5 | e.preventDefault(); 6 | $('.hide').slideToggle(400);}) 7 | }); 8 | 9 | 10 | // Adds tabbing to pages textarea 11 | $(document).ready(function(e) { 12 | $('#textblock').keydown(function(e) { 13 | if(e.keyCode == 9) { 14 | var start = $(this).get(0).selectionStart; 15 | $(this).val($(this).val().substring(0, start) + " " + $(this).val().substring($(this).get(0).selectionEnd)); 16 | $(this).get(0).selectionStart = $(this).get(0).selectionEnd = start + 4; 17 | return false; 18 | } 19 | }); 20 | }); 21 | 22 | 23 | -------------------------------------------------------------------------------- /Master/content/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /Master/content/backups/05.17.15-601.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/backups/05.17.15-601.zip -------------------------------------------------------------------------------- /Master/content/blocks/@menus/sb_dropdown.txt: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 | 11 |
12 | 13 |
14 | 20 |
21 | 22 |
23 |
-------------------------------------------------------------------------------- /Master/content/blocks/@menus/sb_main_menu.txt: -------------------------------------------------------------------------------- 1 |
  • Home
  • 2 |
  • About
  • 3 |
  • Contact
  • 4 |
  • Blog
  • 5 |
  • 6 | 7 |
  • -------------------------------------------------------------------------------- /Master/content/blocks/@sidebar/sb_sidebar_menu.txt: -------------------------------------------------------------------------------- 1 |
    2 |

    Sidebar Menu

    3 | 30 |
    -------------------------------------------------------------------------------- /Master/content/blocks/@system/sb_custom_css.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/content/blocks/@system/sb_custom_js.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/content/blocks/@system/sb_google_analytics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/blocks/@system/sb_google_analytics.txt -------------------------------------------------------------------------------- /Master/content/blocks/@system/sb_meta.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Master/content/blocks/@widgets/demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/blocks/@widgets/demo.txt -------------------------------------------------------------------------------- /Master/content/blog/1.txt: -------------------------------------------------------------------------------- 1 | A Very Flat Blog Post 2 | 3 | 09-27-2014 4 | 5 |

    6 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt 7 | ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation 8 | ullamco laboris nisi ut aliquip ex ea commodo consequat. 9 |

    10 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt 11 | ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation 12 | ullamco laboris nisi ut aliquip ex ea commodo consequat. 13 |

    -------------------------------------------------------------------------------- /Master/content/blog/2.txt: -------------------------------------------------------------------------------- 1 | Flat Blog Post Title 2 | 3 | 09-24-2014 4 | 5 |

    6 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut 7 | labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 8 | laboris nisi ut aliquip ex ea commodo consequat. 9 |

    10 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut 11 | labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris 12 | nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing 13 | elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, 14 | quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 15 |

    -------------------------------------------------------------------------------- /Master/content/blog/3.txt: -------------------------------------------------------------------------------- 1 | Flat Blog Post 2 | 3 | 09-27-2014 4 | 5 |

    6 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt 7 | ut labore et dolore magna aliqua.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. ##more##

    8 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt 9 | ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation 10 | ullamco laboris nisi ut aliquip ex ea commodo consequat.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 11 |

    -------------------------------------------------------------------------------- /Master/content/media/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/img.jpg -------------------------------------------------------------------------------- /Master/content/media/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/1.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/10.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/11.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/12.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/13.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/14.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/2.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/3.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/4.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/5.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/6.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/7.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/8.png -------------------------------------------------------------------------------- /Master/content/media/screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/content/media/screenshots/9.png -------------------------------------------------------------------------------- /Master/content/pages/404.txt: -------------------------------------------------------------------------------- 1 | 404 2 | 3 | Page not found. 4 | 5 | # 404 6 | 7 | Page Not Found -------------------------------------------------------------------------------- /Master/content/pages/about.txt: -------------------------------------------------------------------------------- 1 | Flat-CMS Gallery 2 | 3 | kreatiivan.net 4 | 5 | {{template:page-subheading}} 6 |
    7 | {{ivm-gallery:screenshots}} 8 |
    -------------------------------------------------------------------------------- /Master/content/pages/blog.txt: -------------------------------------------------------------------------------- 1 | Blog 2 | 3 | Flat-CMS Blog Component 4 | 5 | {{template:sidebar-right-subheading}} 6 | 7 | {{ivm-blog}} -------------------------------------------------------------------------------- /Master/content/pages/contact.txt: -------------------------------------------------------------------------------- 1 | Contact 2 | 3 | 4 | 5 |
    6 | {{ivm-map}} 7 |
    8 | 9 |
    10 | {{ivm-form}} 11 |
    -------------------------------------------------------------------------------- /Master/content/pages/home.txt: -------------------------------------------------------------------------------- 1 | Flat CMS 2 | 3 | Flat-File CMS system 4 | 5 |
    6 |
    7 |

    Flat CMS

    8 |
    9 |
    -------------------------------------------------------------------------------- /Master/inc/plugins/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/inc/plugins/.htaccess -------------------------------------------------------------------------------- /Master/inc/plugins/disqus.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 16 | 17 | 18 | 19 | comments powered by Disqus -------------------------------------------------------------------------------- /Master/inc/plugins/mailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- 1 | 8 | * @author Jim Jagielski (jimjag) 9 | * @author Andy Prevost (codeworxtech) 10 | * @author Brent R. Matzelle (original founder) 11 | * @copyright 2013 Marcus Bointon 12 | * @copyright 2010 - 2012 Jim Jagielski 13 | * @copyright 2004 - 2009 Andy Prevost 14 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 15 | * @note This program is distributed in the hope that it will be useful - WITHOUT 16 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17 | * FITNESS FOR A PARTICULAR PURPOSE. 18 | */ 19 | 20 | /** 21 | * PHPMailer SPL autoloader. 22 | * @param string $classname The name of the class to load 23 | */ 24 | function PHPMailerAutoload($classname) 25 | { 26 | //Can't use __DIR__ as it's only in PHP 5.3+ 27 | $filename = dirname(__FILE__).DIRECTORY_SEPARATOR.'class.'.strtolower($classname).'.php'; 28 | if (is_readable($filename)) { 29 | require $filename; 30 | } 31 | } 32 | 33 | spl_autoload_register('PHPMailerAutoload', true, true); 34 | -------------------------------------------------------------------------------- /Master/inc/tags/block.php: -------------------------------------------------------------------------------- 1 | =1 ){ 20 | $exp = explode(':', $get_block); 21 | $vars = array_slice($exp, 1); 22 | $tag_var1 = (!empty($vars[0])) ? $vars[0] : ''; 23 | $tag_var2 = (!empty($vars[1])) ? $vars[1] : ''; 24 | $tag_var3 = (!empty($vars[2])) ? $vars[2] : ''; 25 | $get_block = $exp[0]; 26 | } 27 | ob_start(); 28 | include("inc/tags/$get_block.php"); 29 | $new = ob_get_contents(); 30 | $home = str_replace($get_block1, $new, $home); 31 | ob_end_clean(); 32 | } 33 | } 34 | echo $home; 35 | ?> -------------------------------------------------------------------------------- /Master/inc/tags/css/blog.css: -------------------------------------------------------------------------------- 1 | .blog-wrap { 2 | padding-bottom: 30px; 3 | border-bottom: 1px solid #d5d5d5; 4 | margin-bottom: 50px; 5 | } 6 | 7 | .blog-wrap:last-of-type { 8 | border-bottom: 0; 9 | } 10 | 11 | .blog-title { 12 | color: #333; 13 | font-size: 36px; 14 | line-height: 1.6em; 15 | } 16 | 17 | .blog-title a { 18 | color: #333; 19 | font-size: 36px; 20 | text-decoration: none; 21 | } 22 | 23 | .blog-title a:hover { 24 | text-decoration: none; 25 | } 26 | 27 | .blog-date { 28 | color: #999; 29 | } 30 | 31 | a.older { 32 | border: 1px solid #bbb; 33 | padding: 5px 10px; 34 | color: #666; 35 | margin-right: 10px; 36 | border-radius: 4px; 37 | font-size: 15px; 38 | } 39 | 40 | a.newer { 41 | border: 1px solid #bbb; 42 | padding: 5px 10px; 43 | color: #666; 44 | border-radius: 4px; 45 | font-size: 15px; 46 | } 47 | 48 | #disqus_thread { 49 | margin-top: 80px; 50 | } -------------------------------------------------------------------------------- /Master/inc/tags/css/form.css: -------------------------------------------------------------------------------- 1 | #contact label { 2 | clear: both; 3 | display: block; 4 | color: #666; 5 | font-size: 15px; 6 | } 7 | 8 | #contact button { 9 | padding: 4px 14px; 10 | background-color: #999; 11 | font-size: 14px; 12 | color: white; 13 | } 14 | 15 | #contact input,textarea:focus { 16 | outline:0; 17 | outline:none; 18 | } 19 | 20 | #contact input, textarea { 21 | padding: 4px 8px; 22 | font-size: 14px; 23 | color: #444; 24 | } 25 | 26 | #contact textarea { 27 | max-width: 400px; 28 | width: 100%; 29 | margin-bottom: 10px; 30 | } 31 | 32 | #contact input { 33 | max-width: 400px; 34 | width: 100%; 35 | margin-bottom: 10px; 36 | } 37 | 38 | .green { 39 | color: #3db675 !important; 40 | font-weight: bold; 41 | } 42 | 43 | #human { 44 | display: none; 45 | } -------------------------------------------------------------------------------- /Master/inc/tags/email-list.php: -------------------------------------------------------------------------------- 1 | 43 | 44 |
    45 | 46 | "> 47 | 48 |
    49 | 50 | 51 | 52 | 56 | -------------------------------------------------------------------------------- /Master/ivm/#backup/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | 3 | # RewriteBase / 4 | 5 | RewriteRule ^item-page-([^-]*)$ ?page=$1&p=blog [L] 6 | RewriteRule ^item-([^-]*)+? ?d=$1&p=blog [L] 7 | 8 | RewriteCond %{REQUEST_FILENAME} !-f 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)$ index.php?p=$1 [L] 11 | 12 | # Adds SVG image support 13 | AddType image/svg+xml svg svgz 14 | AddEncoding gzip svgz -------------------------------------------------------------------------------- /Master/ivm/dev-tools/dev-tools.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | 5 |
    6 |
    7 |
    8 | 9 |
    10 |
    11 |
    12 | 13 |
    14 |
    15 |
    -------------------------------------------------------------------------------- /Master/ivm/dev-tools/extensions.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |

    Extensions

    4 | 5 |
    6 | 7 | 8 | 12 | 13 | 14 | 22 | -------------------------------------------------------------------------------- /Master/ivm/dev-tools/extensions/widgets.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 | 6 | 7 | 8 |
    9 | 10 | 11 | 12 | 16 | 17 |
    18 |
    19 | 20 |
    21 | 22 | -------------------------------------------------------------------------------- /Master/ivm/dev-tools/layout.php: -------------------------------------------------------------------------------- 1 |
    2 |

    Layouts

    3 | 4 |
    5 | 6 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Master/ivm/dev-tools/layout/classes.php: -------------------------------------------------------------------------------- 1 | 2 |
    ivm-content
    3 |
    4 | ivm-content 5 |
    6 | 7 |
    ivm-content-small
    8 |
    9 | ivm-content-small 10 |
    11 | 12 |
    13 | 14 |
    ivm-no-space
    15 |
    16 | ivm-no-space 17 |
    18 | 19 |
    ivm-module-space
    20 |
    21 | ivm-module-space 22 |
    23 | 24 |
    ivm-style-primary
    25 |
    26 | ivm-style-primary 27 |
    28 | 29 |
    ivm-style-secondary
    30 |
    31 | ivm-style-secondary 32 |
    33 | 34 |
    ivm-style-bg
    35 |
    36 | ivm-style-bg 37 |
    -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Blond.css: -------------------------------------------------------------------------------- 1 | /* Generated by Fontie - the magic webfont generator */ 2 | 3 | @font-face { 4 | font-family:'FaktPro-Blond'; 5 | src: url('FaktPro-Blond_gdi.eot'); 6 | src: url('FaktPro-Blond_gdi.eot?#iefix') format('embedded-opentype'), 7 | url('FaktPro-Blond_gdi.woff') format('woff'), 8 | url('FaktPro-Blond_gdi.ttf') format('truetype'), 9 | url('FaktPro-Blond_gdi.otf') format('opentype'), 10 | url('FaktPro-Blond_gdi.svg#FaktPro-Blond') format('svg'); 11 | font-weight: 350; 12 | font-style: normal; 13 | font-stretch: normal; 14 | unicode-range: U+0020-25CA; 15 | } -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.eot -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.otf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Blond_gdi.woff -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Hair.css: -------------------------------------------------------------------------------- 1 | /* Generated by Fontie - the magic webfont generator */ 2 | 3 | @font-face { 4 | font-family:'FaktPro-Hair'; 5 | src: url('FaktPro-Hair_gdi.eot'); 6 | src: url('FaktPro-Hair_gdi.eot?#iefix') format('embedded-opentype'), 7 | url('FaktPro-Hair_gdi.woff') format('woff'), 8 | url('FaktPro-Hair_gdi.ttf') format('truetype'), 9 | url('FaktPro-Hair_gdi.otf') format('opentype'), 10 | url('FaktPro-Hair_gdi.svg#FaktPro-Hair') format('svg'); 11 | font-weight: 280; 12 | font-style: normal; 13 | font-stretch: normal; 14 | unicode-range: U+0020-25CA; 15 | } -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.eot -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.otf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Hair_gdi.woff -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Light.css: -------------------------------------------------------------------------------- 1 | /* Generated by Fontie - the magic webfont generator */ 2 | 3 | @font-face { 4 | font-family:'FaktPro-Light'; 5 | src: url('FaktPro-Light_gdi.eot'); 6 | src: url('FaktPro-Light_gdi.eot?#iefix') format('embedded-opentype'), 7 | url('FaktPro-Light_gdi.woff') format('woff'), 8 | url('FaktPro-Light_gdi.ttf') format('truetype'), 9 | url('FaktPro-Light_gdi.otf') format('opentype'), 10 | url('FaktPro-Light_gdi.svg#FaktPro-Light') format('svg'); 11 | font-weight: 300; 12 | font-style: normal; 13 | font-stretch: normal; 14 | unicode-range: U+0020-25CA; 15 | } -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.eot -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.otf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Light_gdi.woff -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Medium.css: -------------------------------------------------------------------------------- 1 | /* Generated by Fontie - the magic webfont generator */ 2 | 3 | @font-face { 4 | font-family:'FaktPro-Medium'; 5 | src: url('FaktPro-Medium_gdi.eot'); 6 | src: url('FaktPro-Medium_gdi.eot?#iefix') format('embedded-opentype'), 7 | url('FaktPro-Medium_gdi.woff') format('woff'), 8 | url('FaktPro-Medium_gdi.ttf') format('truetype'), 9 | url('FaktPro-Medium_gdi.otf') format('opentype'), 10 | url('FaktPro-Medium_gdi.svg#FaktPro-Medium') format('svg'); 11 | font-weight: 500; 12 | font-style: normal; 13 | font-stretch: normal; 14 | unicode-range: U+0020-25CA; 15 | } -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.eot -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.otf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Medium_gdi.woff -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Normal.css: -------------------------------------------------------------------------------- 1 | /* Generated by Fontie - the magic webfont generator */ 2 | 3 | @font-face { 4 | font-family:'FaktPro-Normal'; 5 | src: url('FaktPro-Normal_gdi.eot'); 6 | src: url('FaktPro-Normal_gdi.eot?#iefix') format('embedded-opentype'), 7 | url('FaktPro-Normal_gdi.woff') format('woff'), 8 | url('FaktPro-Normal_gdi.ttf') format('truetype'), 9 | url('FaktPro-Normal_gdi.otf') format('opentype'), 10 | url('FaktPro-Normal_gdi.svg#FaktPro-Normal') format('svg'); 11 | font-weight: 400; 12 | font-style: normal; 13 | font-stretch: normal; 14 | unicode-range: U+0020-25CA; 15 | } -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.eot -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.otf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Normal_gdi.woff -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-SemiBold.css: -------------------------------------------------------------------------------- 1 | /* Generated by Fontie - the magic webfont generator */ 2 | 3 | @font-face { 4 | font-family:'FaktPro-SemiBold'; 5 | src: url('FaktPro-SemiBold_gdi.eot'); 6 | src: url('FaktPro-SemiBold_gdi.eot?#iefix') format('embedded-opentype'), 7 | url('FaktPro-SemiBold_gdi.woff') format('woff'), 8 | url('FaktPro-SemiBold_gdi.ttf') format('truetype'), 9 | url('FaktPro-SemiBold_gdi.otf') format('opentype'), 10 | url('FaktPro-SemiBold_gdi.svg#FaktPro-SemiBold') format('svg'); 11 | font-weight: 600; 12 | font-style: normal; 13 | font-stretch: normal; 14 | unicode-range: U+0020-25CA; 15 | } -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.eot -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.otf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-SemiBold_gdi.woff -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Thin.css: -------------------------------------------------------------------------------- 1 | /* Generated by Fontie - the magic webfont generator */ 2 | 3 | @font-face { 4 | font-family:'FaktPro-Thin'; 5 | src: url('FaktPro-Thin_gdi.eot'); 6 | src: url('FaktPro-Thin_gdi.eot?#iefix') format('embedded-opentype'), 7 | url('FaktPro-Thin_gdi.woff') format('woff'), 8 | url('FaktPro-Thin_gdi.ttf') format('truetype'), 9 | url('FaktPro-Thin_gdi.otf') format('opentype'), 10 | url('FaktPro-Thin_gdi.svg#FaktPro-Thin') format('svg'); 11 | font-weight: 290; 12 | font-style: normal; 13 | font-stretch: normal; 14 | unicode-range: U+0020-25CA; 15 | } -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.eot -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.otf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/fonts/fakt/FaktPro-Thin_gdi.woff -------------------------------------------------------------------------------- /Master/ivm/framework/js/ivm_menu.js: -------------------------------------------------------------------------------- 1 | jQuery(function($) { 2 | 3 | // MAIN MENU ACTIVE CLASS 4 | $(".uk-navbar-nav > li > a").filter(function(){ 5 | return this.href == location.href.replace(/#.*/, ""); 6 | }).parent().addClass("uk-active"); 7 | 8 | // DROPDOWN MAIN MENU ACTIVE CLASS 9 | $('.uk-dropdown a').filter(function(){ 10 | return $(this).attr('href') == location.pathname 11 | }).addClass('uk-active').closest('div').parent().addClass('uk-active'); 12 | 13 | // Add class to header when page heading is on the page 14 | $( ".ivm-page-heading" ).prev().addClass( "ivm-active-header" ); 15 | $( ".ivm-full-screen" ).prev().addClass( "ivm-active-header" ); 16 | 17 | 18 | // SIDEBAR MENU ACTIVE CLASSES 19 | 20 | // sidebar menu active class 21 | $(".uk-nav > li > a").filter(function(){ 22 | return this.href == location.href.replace(/#.*/, ""); 23 | }).parent().addClass("uk-active"); 24 | 25 | // sidebar submenu - parent active class 26 | $(".uk-nav-sub > li > a").filter(function(){ 27 | return this.href == location.href.replace(/#.*/, ""); 28 | }).parentsUntil(".uk-nav").addClass("uk-active"); 29 | 30 | // sidebar submenu - parent active class 31 | $(".uk-nav-sub > li > a").filter(function(){ 32 | return this.href == location.href.replace(/#.*/, ""); 33 | }).parent().addClass("uk-active"); 34 | 35 | // sidebar parent open 36 | $( ".uk-parent.uk-active > div" ).css("height", "auto"); 37 | 38 | }); -------------------------------------------------------------------------------- /Master/ivm/framework/js/svg.js: -------------------------------------------------------------------------------- 1 | // transform all images (img) with svg class into inline svg image () 2 | jQuery(function($) { 3 | 4 | jQuery('img.svg').each(function () { 5 | var $img = jQuery(this); 6 | var imgID = $img.attr('id'); 7 | var imgClass = $img.attr('class'); 8 | var imgURL = $img.attr('src'); 9 | 10 | jQuery.get(imgURL, function (data) { 11 | // Get the SVG tag, ignore the rest 12 | var $svg = jQuery(data).find('svg'); 13 | 14 | // Add replaced image's ID to the new SVG 15 | if (typeof imgID !== 'undefined') { 16 | $svg = $svg.attr('id', imgID); 17 | } 18 | // Add replaced image's classes to the new SVG 19 | if (typeof imgClass !== 'undefined') { 20 | $svg = $svg.attr('class', imgClass + ' replaced-svg'); 21 | } 22 | 23 | // Remove any invalid XML tags as per http://validator.w3.org 24 | $svg = $svg.removeAttr('xmlns:a'); 25 | 26 | // Replace image with new SVG 27 | $img.replaceWith($svg); 28 | 29 | }, 'xml'); 30 | 31 | }); 32 | 33 | }); -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/accordion.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Accordion 4 | ========================================================================== */ 5 | /* Sub-object: `uk-accordion-title` 6 | ========================================================================== */ 7 | .uk-accordion-title { 8 | margin-top: 0; 9 | margin-bottom: 15px; 10 | padding: 5px 15px; 11 | background: #f5f5f5; 12 | font-size: 18px; 13 | line-height: 24px; 14 | cursor: pointer; 15 | border: 1px solid #dddddd; 16 | border-radius: 4px; 17 | } 18 | /* Sub-object: `uk-accordion-content` 19 | ========================================================================== */ 20 | .uk-accordion-content { 21 | padding: 0 15px 15px 15px; 22 | } 23 | /* 24 | * Micro clearfix to make panels more robust 25 | */ 26 | .uk-accordion-content:before, 27 | .uk-accordion-content:after { 28 | content: ""; 29 | display: table; 30 | } 31 | .uk-accordion-content:after { 32 | clear: both; 33 | } 34 | /* 35 | * Remove margin from the last-child 36 | */ 37 | .uk-accordion-content > :last-child { 38 | margin-bottom: 0; 39 | } 40 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/accordion.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#f5f5f5;font-size:18px;line-height:24px;cursor:pointer;border:1px solid #ddd;border-radius:4px}.uk-accordion-content{padding:0 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/accordion.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Accordion 4 | ========================================================================== */ 5 | /* Sub-object: `uk-accordion-title` 6 | ========================================================================== */ 7 | .uk-accordion-title { 8 | margin-top: 0; 9 | margin-bottom: 15px; 10 | padding: 5px 15px; 11 | background: #eeeeee; 12 | font-size: 18px; 13 | line-height: 24px; 14 | cursor: pointer; 15 | } 16 | /* Sub-object: `uk-accordion-content` 17 | ========================================================================== */ 18 | .uk-accordion-content { 19 | padding: 0 15px 15px 15px; 20 | } 21 | /* 22 | * Micro clearfix to make panels more robust 23 | */ 24 | .uk-accordion-content:before, 25 | .uk-accordion-content:after { 26 | content: ""; 27 | display: table; 28 | } 29 | .uk-accordion-content:after { 30 | clear: both; 31 | } 32 | /* 33 | * Remove margin from the last-child 34 | */ 35 | .uk-accordion-content > :last-child { 36 | margin-bottom: 0; 37 | } 38 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/accordion.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Accordion 4 | ========================================================================== */ 5 | /* Sub-object: `uk-accordion-title` 6 | ========================================================================== */ 7 | .uk-accordion-title { 8 | margin-top: 0; 9 | margin-bottom: 15px; 10 | padding: 5px 15px; 11 | background: #f7f7f7; 12 | font-size: 18px; 13 | line-height: 24px; 14 | cursor: pointer; 15 | border: 1px solid #dddddd; 16 | border-radius: 4px; 17 | } 18 | /* Sub-object: `uk-accordion-content` 19 | ========================================================================== */ 20 | .uk-accordion-content { 21 | padding: 0 15px 15px 15px; 22 | } 23 | /* 24 | * Micro clearfix to make panels more robust 25 | */ 26 | .uk-accordion-content:before, 27 | .uk-accordion-content:after { 28 | content: ""; 29 | display: table; 30 | } 31 | .uk-accordion-content:after { 32 | clear: both; 33 | } 34 | /* 35 | * Remove margin from the last-child 36 | */ 37 | .uk-accordion-content > :last-child { 38 | margin-bottom: 0; 39 | } 40 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/accordion.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#f7f7f7;font-size:18px;line-height:24px;cursor:pointer;border:1px solid #ddd;border-radius:4px}.uk-accordion-content{padding:0 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#eee;font-size:18px;line-height:24px;cursor:pointer}.uk-accordion-content{padding:0 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/autocomplete.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Autocomplete 4 | ========================================================================== */ 5 | /* 6 | * 1. Container width fits its content 7 | * 2. Create position context 8 | * 3. Prevent `inline-block` consequences 9 | * 4. Remove the gap between the container and its child element 10 | */ 11 | .uk-autocomplete { 12 | /* 1 */ 13 | display: inline-block; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | max-width: 100%; 18 | /* 4 */ 19 | vertical-align: middle; 20 | } 21 | /* Nav modifier `uk-nav-autocomplete` 22 | ========================================================================== */ 23 | /* 24 | * Items 25 | */ 26 | .uk-nav-autocomplete > li > a { 27 | color: #444444; 28 | } 29 | /* 30 | * Active 31 | * 1. Remove default focus style 32 | */ 33 | .uk-nav-autocomplete > li.uk-active > a { 34 | background: #00a8e6; 35 | color: #ffffff; 36 | /* 1 */ 37 | outline: none; 38 | box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05); 39 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1); 40 | } 41 | /* 42 | * Sub-object: `uk-nav-header` 43 | */ 44 | .uk-nav-autocomplete .uk-nav-header { 45 | color: #999999; 46 | } 47 | /* 48 | * Sub-object: `uk-nav-divider` 49 | */ 50 | .uk-nav-autocomplete .uk-nav-divider { 51 | border-top: 1px solid #dddddd; 52 | } 53 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/autocomplete.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-autocomplete{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-nav-autocomplete>li>a{color:#444}.uk-nav-autocomplete>li.uk-active>a{background:#00a8e6;color:#fff;outline:0;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-nav-autocomplete .uk-nav-header{color:#999}.uk-nav-autocomplete .uk-nav-divider{border-top:1px solid #ddd} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Autocomplete 4 | ========================================================================== */ 5 | /* 6 | * 1. Container width fits its content 7 | * 2. Create position context 8 | * 3. Prevent `inline-block` consequences 9 | * 4. Remove the gap between the container and its child element 10 | */ 11 | .uk-autocomplete { 12 | /* 1 */ 13 | display: inline-block; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | max-width: 100%; 18 | /* 4 */ 19 | vertical-align: middle; 20 | } 21 | /* Nav modifier `uk-nav-autocomplete` 22 | ========================================================================== */ 23 | /* 24 | * Items 25 | */ 26 | .uk-nav-autocomplete > li > a { 27 | color: #444444; 28 | } 29 | /* 30 | * Active 31 | * 1. Remove default focus style 32 | */ 33 | .uk-nav-autocomplete > li.uk-active > a { 34 | background: #00a8e6; 35 | color: #ffffff; 36 | /* 1 */ 37 | outline: none; 38 | } 39 | /* 40 | * Sub-object: `uk-nav-header` 41 | */ 42 | .uk-nav-autocomplete .uk-nav-header { 43 | color: #999999; 44 | } 45 | /* 46 | * Sub-object: `uk-nav-divider` 47 | */ 48 | .uk-nav-autocomplete .uk-nav-divider { 49 | border-top: 1px solid #dddddd; 50 | } 51 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/autocomplete.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Autocomplete 4 | ========================================================================== */ 5 | /* 6 | * 1. Container width fits its content 7 | * 2. Create position context 8 | * 3. Prevent `inline-block` consequences 9 | * 4. Remove the gap between the container and its child element 10 | */ 11 | .uk-autocomplete { 12 | /* 1 */ 13 | display: inline-block; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | max-width: 100%; 18 | /* 4 */ 19 | vertical-align: middle; 20 | } 21 | /* Nav modifier `uk-nav-autocomplete` 22 | ========================================================================== */ 23 | /* 24 | * Items 25 | */ 26 | .uk-nav-autocomplete > li > a { 27 | color: #444444; 28 | } 29 | /* 30 | * Active 31 | * 1. Remove default focus style 32 | */ 33 | .uk-nav-autocomplete > li.uk-active > a { 34 | background: #009dd8; 35 | color: #ffffff; 36 | /* 1 */ 37 | outline: none; 38 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); 39 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); 40 | } 41 | /* 42 | * Sub-object: `uk-nav-header` 43 | */ 44 | .uk-nav-autocomplete .uk-nav-header { 45 | color: #999999; 46 | } 47 | /* 48 | * Sub-object: `uk-nav-divider` 49 | */ 50 | .uk-nav-autocomplete .uk-nav-divider { 51 | border-top: 1px solid #dddddd; 52 | } 53 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/autocomplete.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-autocomplete{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-nav-autocomplete>li>a{color:#444}.uk-nav-autocomplete>li.uk-active>a{background:#009dd8;color:#fff;outline:0;box-shadow:inset 0 2px 4px rgba(0,0,0,.2);text-shadow:0 -1px 0 rgba(0,0,0,.2)}.uk-nav-autocomplete .uk-nav-header{color:#999}.uk-nav-autocomplete .uk-nav-divider{border-top:1px solid #ddd} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-autocomplete{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-nav-autocomplete>li>a{color:#444}.uk-nav-autocomplete>li.uk-active>a{background:#00a8e6;color:#fff;outline:0}.uk-nav-autocomplete .uk-nav-header{color:#999}.uk-nav-autocomplete .uk-nav-divider{border-top:1px solid #ddd} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/datepicker.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-datepicker{z-index:1050;width:auto;-webkit-animation:uk-fade .2s ease-in-out;animation:uk-fade .2s ease-in-out;-webkit-transform-origin:0 0;transform-origin:0 0}.uk-datepicker-nav{margin-bottom:15px;text-align:center;line-height:20px}.uk-datepicker-nav:after,.uk-datepicker-nav:before{content:"";display:table}.uk-datepicker-nav:after{clear:both}.uk-datepicker-nav a{color:#444;text-decoration:none}.uk-datepicker-nav a:hover{color:#444}.uk-datepicker-previous{float:left}.uk-datepicker-next{float:right}.uk-datepicker-next:after,.uk-datepicker-previous:after{width:20px;font-family:FontAwesome}.uk-datepicker-previous:after{content:"\f053"}.uk-datepicker-next:after{content:"\f054"}.uk-datepicker-table{width:100%}.uk-datepicker-table td,.uk-datepicker-table th{padding:2px}.uk-datepicker-table th{font-size:12px}.uk-datepicker-table a{display:block;width:26px;line-height:24px;text-align:center;color:#444;text-decoration:none;border:1px solid transparent;border-radius:4px}a.uk-datepicker-table-muted{color:#999}.uk-datepicker-table a:focus,.uk-datepicker-table a:hover{background-color:#fafafa;color:#444;outline:0;border-color:rgba(0,0,0,.16);text-shadow:0 1px 0 #fff}.uk-datepicker-table a:active{background-color:#eee;color:#444}.uk-datepicker-table a.uk-active{background:#00a8e6;color:#fff;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/datepicker.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-datepicker{z-index:1050;width:auto;-webkit-animation:uk-fade .2s ease-in-out;animation:uk-fade .2s ease-in-out;-webkit-transform-origin:0 0;transform-origin:0 0}.uk-datepicker-nav{margin-bottom:15px;text-align:center;line-height:20px}.uk-datepicker-nav:after,.uk-datepicker-nav:before{content:"";display:table}.uk-datepicker-nav:after{clear:both}.uk-datepicker-nav a{color:#444;text-decoration:none}.uk-datepicker-nav a:hover{color:#444}.uk-datepicker-previous{float:left}.uk-datepicker-next{float:right}.uk-datepicker-next:after,.uk-datepicker-previous:after{width:20px;font-family:FontAwesome}.uk-datepicker-previous:after{content:"\f053"}.uk-datepicker-next:after{content:"\f054"}.uk-datepicker-table{width:100%}.uk-datepicker-table td,.uk-datepicker-table th{padding:2px}.uk-datepicker-table th{font-size:12px}.uk-datepicker-table a{display:block;width:26px;line-height:24px;text-align:center;color:#444;text-decoration:none}a.uk-datepicker-table-muted{color:#999}.uk-datepicker-table a:focus,.uk-datepicker-table a:hover{background-color:#ddd;color:#444;outline:0}.uk-datepicker-table a:active{background-color:#ccc;color:#444}.uk-datepicker-table a.uk-active{background:#00a8e6;color:#fff} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/dotnav.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-dotnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-top:-15px;padding:0;list-style:none}.uk-dotnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:15px;margin-top:15px}.uk-dotnav:after,.uk-dotnav:before{content:"";display:block;overflow:hidden}.uk-dotnav:after{clear:both}.uk-dotnav>*{float:left}.uk-dotnav>*>*{display:block;-moz-box-sizing:content-box;box-sizing:content-box;width:20px;height:20px;border-radius:50%;background:rgba(50,50,50,.1);text-indent:100%;overflow:hidden;white-space:nowrap;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uk-dotnav>*>:focus,.uk-dotnav>*>:hover{background:rgba(50,50,50,.4);outline:0}.uk-dotnav>*>:active{background:rgba(50,50,50,.6)}.uk-dotnav>.uk-active>*{background:rgba(50,50,50,.4);-webkit-transform:scale(1.3);transform:scale(1.3)}.uk-dotnav-contrast>*>*{background:rgba(255,255,255,.4)}.uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover{background:rgba(255,255,255,.7)}.uk-dotnav-contrast>*>:active,.uk-dotnav-contrast>.uk-active>*{background:rgba(255,255,255,.9)}.uk-dotnav-vertical{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-dotnav-vertical>*{float:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/dotnav.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-dotnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-top:-15px;padding:0;list-style:none}.uk-dotnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:15px;margin-top:15px}.uk-dotnav:after,.uk-dotnav:before{content:"";display:block;overflow:hidden}.uk-dotnav:after{clear:both}.uk-dotnav>*{float:left}.uk-dotnav>*>*{display:block;-moz-box-sizing:content-box;box-sizing:content-box;width:20px;height:20px;border-radius:50%;background:rgba(50,50,50,.1);text-indent:100%;overflow:hidden;white-space:nowrap;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uk-dotnav>*>:focus,.uk-dotnav>*>:hover{background:rgba(50,50,50,.4);outline:0}.uk-dotnav>*>:active{background:rgba(50,50,50,.6)}.uk-dotnav>.uk-active>*{background:rgba(50,50,50,.4);-webkit-transform:scale(1.3);transform:scale(1.3)}.uk-dotnav-contrast>*>*{background:rgba(255,255,255,.4)}.uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover{background:rgba(255,255,255,.7)}.uk-dotnav-contrast>*>:active,.uk-dotnav-contrast>.uk-active>*{background:rgba(255,255,255,.9)}.uk-dotnav-vertical{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-dotnav-vertical>*{float:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/dotnav.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-dotnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-top:-15px;padding:0;list-style:none}.uk-dotnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:15px;margin-top:15px}.uk-dotnav:after,.uk-dotnav:before{content:"";display:block;overflow:hidden}.uk-dotnav:after{clear:both}.uk-dotnav>*{float:left}.uk-dotnav>*>*{display:block;-moz-box-sizing:content-box;box-sizing:content-box;width:20px;height:20px;border-radius:50%;background:rgba(50,50,50,.1);text-indent:100%;overflow:hidden;white-space:nowrap}.uk-dotnav>*>:focus,.uk-dotnav>*>:hover{background:rgba(50,50,50,.4);outline:0}.uk-dotnav>*>:active{background:rgba(50,50,50,.6)}.uk-dotnav>.uk-active>*{background:rgba(50,50,50,.4)}.uk-dotnav-contrast>*>*{background:rgba(255,255,255,.4)}.uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover{background:rgba(255,255,255,.7)}.uk-dotnav-contrast>*>:active,.uk-dotnav-contrast>.uk-active>*{background:rgba(255,255,255,.9)}.uk-dotnav-vertical{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-dotnav-vertical>*{float:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-advanced.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form input[type=radio],.uk-form input[type=checkbox]{display:inline-block;height:14px;width:14px;border:1px solid #aaa;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;outline:0;background:0 0}.uk-form input[type=radio]{border-radius:50%}.uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before{display:block}.uk-form input[type=radio]:checked:before{content:'';width:8px;height:8px;margin:2px auto 0;border-radius:50%;background:#00a8e6}.uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before{content:"\f00c";font-family:FontAwesome;font-size:12px;-webkit-font-smoothing:antialiased;text-align:center;line-height:12px;color:#00a8e6}.uk-form input[type=checkbox]:indeterminate:before{content:"\f068"}.uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled{border-color:#ddd}.uk-form input[type=radio]:disabled:checked:before{background-color:#aaa}.uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before{color:#aaa} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-advanced.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form input[type=radio],.uk-form input[type=checkbox]{display:inline-block;height:14px;width:14px;border:1px solid #aaa;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;outline:0;background:0 0}.uk-form input[type=radio]{border-radius:50%}.uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before{display:block}.uk-form input[type=radio]:checked:before{content:'';width:8px;height:8px;margin:2px auto 0;border-radius:50%;background:#00a8e6}.uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before{content:"\f00c";font-family:FontAwesome;font-size:12px;-webkit-font-smoothing:antialiased;text-align:center;line-height:12px;color:#00a8e6}.uk-form input[type=checkbox]:indeterminate:before{content:"\f068"}.uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled{border-color:#ddd}.uk-form input[type=radio]:disabled:checked:before{background-color:#aaa}.uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before{color:#aaa} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-advanced.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form input[type=radio],.uk-form input[type=checkbox]{display:inline-block;height:14px;width:14px;border:1px solid #aaa;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;outline:0;background:0 0}.uk-form input[type=radio]{border-radius:50%}.uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before{display:block}.uk-form input[type=radio]:checked:before{content:'';width:8px;height:8px;margin:2px auto 0;border-radius:50%;background:#00a8e6}.uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before{content:"\f00c";font-family:FontAwesome;font-size:12px;-webkit-font-smoothing:antialiased;text-align:center;line-height:12px;color:#00a8e6}.uk-form input[type=checkbox]:indeterminate:before{content:"\f068"}.uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled{border-color:#ddd}.uk-form input[type=radio]:disabled:checked:before{background-color:#aaa}.uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before{color:#aaa} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-file.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form file 4 | ========================================================================== */ 5 | /* 6 | * 1. Behave like form elements 7 | * 2. Create position context for dropdowns 8 | * 3. Clip content 9 | */ 10 | .uk-form-file { 11 | /* 1 */ 12 | display: inline-block; 13 | vertical-align: middle; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | overflow: hidden; 18 | } 19 | /* 20 | * 1. Required for Firefox 21 | * 2. Expand height and required for the cursor 22 | */ 23 | .uk-form-file input[type="file"] { 24 | position: absolute; 25 | top: 0; 26 | z-index: 1; 27 | width: 100%; 28 | opacity: 0; 29 | cursor: pointer; 30 | /* 1 */ 31 | left: 0; 32 | /* 2 */ 33 | font-size: 500px; 34 | } 35 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-file.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-file{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-file input[type=file]{position:absolute;top:0;z-index:1;width:100%;opacity:0;cursor:pointer;left:0;font-size:500px} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-file.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form file 4 | ========================================================================== */ 5 | /* 6 | * 1. Behave like form elements 7 | * 2. Create position context for dropdowns 8 | * 3. Clip content 9 | */ 10 | .uk-form-file { 11 | /* 1 */ 12 | display: inline-block; 13 | vertical-align: middle; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | overflow: hidden; 18 | } 19 | /* 20 | * 1. Required for Firefox 21 | * 2. Expand height and required for the cursor 22 | */ 23 | .uk-form-file input[type="file"] { 24 | position: absolute; 25 | top: 0; 26 | z-index: 1; 27 | width: 100%; 28 | opacity: 0; 29 | cursor: pointer; 30 | /* 1 */ 31 | left: 0; 32 | /* 2 */ 33 | font-size: 500px; 34 | } 35 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-file.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form file 4 | ========================================================================== */ 5 | /* 6 | * 1. Behave like form elements 7 | * 2. Create position context for dropdowns 8 | * 3. Clip content 9 | */ 10 | .uk-form-file { 11 | /* 1 */ 12 | display: inline-block; 13 | vertical-align: middle; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | overflow: hidden; 18 | } 19 | /* 20 | * 1. Required for Firefox 21 | * 2. Expand height and required for the cursor 22 | */ 23 | .uk-form-file input[type="file"] { 24 | position: absolute; 25 | top: 0; 26 | z-index: 1; 27 | width: 100%; 28 | opacity: 0; 29 | cursor: pointer; 30 | /* 1 */ 31 | left: 0; 32 | /* 2 */ 33 | font-size: 500px; 34 | } 35 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-file.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-file{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-file input[type=file]{position:absolute;top:0;z-index:1;width:100%;opacity:0;cursor:pointer;left:0;font-size:500px} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-file.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-file{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-file input[type=file]{position:absolute;top:0;z-index:1;width:100%;opacity:0;cursor:pointer;left:0;font-size:500px} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-password.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form password 4 | ========================================================================== */ 5 | /* 6 | * 1. Container width fits its content 7 | * 2. Create position context 8 | * 3. Prevent `inline-block` consequences 9 | */ 10 | .uk-form-password { 11 | /* 1 */ 12 | display: inline-block; 13 | /* 2 */ 14 | position: relative; 15 | /* 3 */ 16 | max-width: 100%; 17 | } 18 | .uk-form-password-toggle { 19 | display: block; 20 | position: absolute; 21 | top: 50%; 22 | right: 10px; 23 | margin-top: -6px; 24 | font-size: 13px; 25 | line-height: 13px; 26 | color: #999999; 27 | } 28 | .uk-form-password-toggle:hover { 29 | color: #999999; 30 | text-decoration: none; 31 | } 32 | .uk-form-password > input { 33 | padding-right: 50px !important; 34 | } 35 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-password.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-password{display:inline-block;position:relative;max-width:100%}.uk-form-password-toggle{display:block;position:absolute;top:50%;right:10px;margin-top:-6px;font-size:13px;line-height:13px;color:#999}.uk-form-password-toggle:hover{color:#999;text-decoration:none}.uk-form-password>input{padding-right:50px!important} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-password.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form password 4 | ========================================================================== */ 5 | /* 6 | * 1. Container width fits its content 7 | * 2. Create position context 8 | * 3. Prevent `inline-block` consequences 9 | */ 10 | .uk-form-password { 11 | /* 1 */ 12 | display: inline-block; 13 | /* 2 */ 14 | position: relative; 15 | /* 3 */ 16 | max-width: 100%; 17 | } 18 | .uk-form-password-toggle { 19 | display: block; 20 | position: absolute; 21 | top: 50%; 22 | right: 10px; 23 | margin-top: -6px; 24 | font-size: 13px; 25 | line-height: 13px; 26 | color: #999999; 27 | } 28 | .uk-form-password-toggle:hover { 29 | color: #999999; 30 | text-decoration: none; 31 | } 32 | .uk-form-password > input { 33 | padding-right: 50px !important; 34 | } 35 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-password.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form password 4 | ========================================================================== */ 5 | /* 6 | * 1. Container width fits its content 7 | * 2. Create position context 8 | * 3. Prevent `inline-block` consequences 9 | */ 10 | .uk-form-password { 11 | /* 1 */ 12 | display: inline-block; 13 | /* 2 */ 14 | position: relative; 15 | /* 3 */ 16 | max-width: 100%; 17 | } 18 | .uk-form-password-toggle { 19 | display: block; 20 | position: absolute; 21 | top: 50%; 22 | right: 10px; 23 | margin-top: -6px; 24 | font-size: 13px; 25 | line-height: 13px; 26 | color: #999999; 27 | } 28 | .uk-form-password-toggle:hover { 29 | color: #999999; 30 | text-decoration: none; 31 | } 32 | .uk-form-password > input { 33 | padding-right: 50px !important; 34 | } 35 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-password.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-password{display:inline-block;position:relative;max-width:100%}.uk-form-password-toggle{display:block;position:absolute;top:50%;right:10px;margin-top:-6px;font-size:13px;line-height:13px;color:#999}.uk-form-password-toggle:hover{color:#999;text-decoration:none}.uk-form-password>input{padding-right:50px!important} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-password.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-password{display:inline-block;position:relative;max-width:100%}.uk-form-password-toggle{display:block;position:absolute;top:50%;right:10px;margin-top:-6px;font-size:13px;line-height:13px;color:#999}.uk-form-password-toggle:hover{color:#999;text-decoration:none}.uk-form-password>input{padding-right:50px!important} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-select.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form select 4 | ========================================================================== */ 5 | /* 6 | * 1. Behave like form elements 7 | * 2. Create position context for dropdowns 8 | * 3. Clip content 9 | */ 10 | .uk-form-select { 11 | /* 1 */ 12 | display: inline-block; 13 | vertical-align: middle; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | overflow: hidden; 18 | } 19 | /* 20 | * 1. Required for Firefox 21 | * 1. Required for Webkit to make `height` work 22 | */ 23 | .uk-form-select select { 24 | position: absolute; 25 | top: 0; 26 | z-index: 1; 27 | width: 100%; 28 | height: 100%; 29 | opacity: 0; 30 | cursor: pointer; 31 | /* 1 */ 32 | left: 0; 33 | /* 2 */ 34 | -webkit-appearance: none; 35 | } 36 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-select.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-select{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-select select{position:absolute;top:0;z-index:1;width:100%;height:100%;opacity:0;cursor:pointer;left:0;-webkit-appearance:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-select.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form select 4 | ========================================================================== */ 5 | /* 6 | * 1. Behave like form elements 7 | * 2. Create position context for dropdowns 8 | * 3. Clip content 9 | */ 10 | .uk-form-select { 11 | /* 1 */ 12 | display: inline-block; 13 | vertical-align: middle; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | overflow: hidden; 18 | } 19 | /* 20 | * 1. Required for Firefox 21 | * 1. Required for Webkit to make `height` work 22 | */ 23 | .uk-form-select select { 24 | position: absolute; 25 | top: 0; 26 | z-index: 1; 27 | width: 100%; 28 | height: 100%; 29 | opacity: 0; 30 | cursor: pointer; 31 | /* 1 */ 32 | left: 0; 33 | /* 2 */ 34 | -webkit-appearance: none; 35 | } 36 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-select.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Form select 4 | ========================================================================== */ 5 | /* 6 | * 1. Behave like form elements 7 | * 2. Create position context for dropdowns 8 | * 3. Clip content 9 | */ 10 | .uk-form-select { 11 | /* 1 */ 12 | display: inline-block; 13 | vertical-align: middle; 14 | /* 2 */ 15 | position: relative; 16 | /* 3 */ 17 | overflow: hidden; 18 | } 19 | /* 20 | * 1. Required for Firefox 21 | * 1. Required for Webkit to make `height` work 22 | */ 23 | .uk-form-select select { 24 | position: absolute; 25 | top: 0; 26 | z-index: 1; 27 | width: 100%; 28 | height: 100%; 29 | opacity: 0; 30 | cursor: pointer; 31 | /* 1 */ 32 | left: 0; 33 | /* 2 */ 34 | -webkit-appearance: none; 35 | } 36 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-select.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-select{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-select select{position:absolute;top:0;z-index:1;width:100%;height:100%;opacity:0;cursor:pointer;left:0;-webkit-appearance:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/form-select.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-form-select{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-select select{position:absolute;top:0;z-index:1;width:100%;height:100%;opacity:0;cursor:pointer;left:0;-webkit-appearance:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/nestable.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-nestable{padding:0;list-style:none}.uk-nestable-list{margin:0;padding-left:40px;list-style:none}.uk-nestable-list-dragged{position:absolute;z-index:1050;padding-left:0;pointer-events:none}.uk-nestable-item{margin-bottom:10px;padding:5px;background:#f5f5f5;border-radius:4px;border:1px solid rgba(0,0,0,.06);text-shadow:0 1px 0 #fff}.uk-nestable-placeholder{-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:10px;border:1px dashed #ddd}.uk-nestable-empty{min-height:40px}.uk-nestable-handle{display:inline-block;font-size:18px;color:#ddd;touch-action:none}.uk-nestable-handle:hover{cursor:move}.uk-nestable-handle:after{content:"\f0c9";font-family:FontAwesome}.uk-nestable-moving,.uk-nestable-moving *{cursor:move}[data-nestable-action=toggle]{display:inline-block;color:#999;visibility:hidden}[data-nestable-action=toggle]:hover{color:#444;cursor:pointer}[data-nestable-action=toggle]:after{content:"\f147";font-family:FontAwesome}.uk-parent>.uk-nestable-item [data-nestable-action=toggle]{visibility:visible}.uk-collapsed>.uk-nestable-item [data-nestable-action=toggle]:after{content:"\f196"}.uk-collapsed .uk-nestable-list{display:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/nestable.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-nestable{padding:0;list-style:none}.uk-nestable-list{margin:0;padding-left:40px;list-style:none}.uk-nestable-list-dragged{position:absolute;z-index:1050;padding-left:0;pointer-events:none}.uk-nestable-item{margin-bottom:10px;padding:5px;background:#f7f7f7;border-radius:4px;border:1px solid rgba(0,0,0,.2);border-bottom-color:rgba(0,0,0,.3);background-origin:border-box;background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:linear-gradient(to bottom,#fff,#eee);text-shadow:0 1px 0 #fff}.uk-nestable-placeholder{-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:10px;border:1px dashed #ddd}.uk-nestable-empty{min-height:40px}.uk-nestable-handle{display:inline-block;font-size:18px;color:#ddd;touch-action:none}.uk-nestable-handle:hover{cursor:move}.uk-nestable-handle:after{content:"\f0c9";font-family:FontAwesome}.uk-nestable-moving,.uk-nestable-moving *{cursor:move}[data-nestable-action=toggle]{display:inline-block;color:#999;visibility:hidden}[data-nestable-action=toggle]:hover{color:#444;cursor:pointer}[data-nestable-action=toggle]:after{content:"\f147";font-family:FontAwesome}.uk-parent>.uk-nestable-item [data-nestable-action=toggle]{visibility:visible}.uk-collapsed>.uk-nestable-item [data-nestable-action=toggle]:after{content:"\f196"}.uk-collapsed .uk-nestable-list{display:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/nestable.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-nestable{padding:0;list-style:none}.uk-nestable-list{margin:0;padding-left:40px;list-style:none}.uk-nestable-list-dragged{position:absolute;z-index:1050;padding-left:0;pointer-events:none}.uk-nestable-item{margin-bottom:10px;padding:5px;background:#f5f5f5}.uk-nestable-placeholder{-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:10px;border:1px dashed #ddd}.uk-nestable-empty{min-height:40px}.uk-nestable-handle{display:inline-block;font-size:18px;color:#ddd;touch-action:none}.uk-nestable-handle:hover{cursor:move}.uk-nestable-handle:after{content:"\f0c9";font-family:FontAwesome}.uk-nestable-moving,.uk-nestable-moving *{cursor:move}[data-nestable-action=toggle]{display:inline-block;color:#999;visibility:hidden}[data-nestable-action=toggle]:hover{color:#444;cursor:pointer}[data-nestable-action=toggle]:after{content:"\f147";font-family:FontAwesome}.uk-parent>.uk-nestable-item [data-nestable-action=toggle]{visibility:visible}.uk-collapsed>.uk-nestable-item [data-nestable-action=toggle]:after{content:"\f196"}.uk-collapsed .uk-nestable-list{display:none} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/notify.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-notify{position:fixed;top:10px;left:10px;z-index:1040;-moz-box-sizing:border-box;box-sizing:border-box;width:350px}.uk-notify-bottom-right,.uk-notify-top-right{left:auto;right:10px}.uk-notify-bottom-center,.uk-notify-top-center{left:50%;margin-left:-175px}.uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right{top:auto;bottom:10px}@media (max-width:479px){.uk-notify{left:10px;right:10px;width:auto;margin:0}}.uk-notify-message{position:relative;margin-bottom:10px;padding:15px;background:#444;color:#fff;font-size:16px;line-height:22px;cursor:pointer;border:1px solid #444;border-radius:4px}.uk-notify-message>.uk-close{visibility:hidden;float:right}.uk-notify-message:hover>.uk-close{visibility:visible}.uk-notify-message-primary{background:#ebf7fd;color:#2d7091;border-color:rgba(45,112,145,.3)}.uk-notify-message-success{background:#f2fae3;color:#659f13;border-color:rgba(101,159,19,.3)}.uk-notify-message-warning{background:#fffceb;color:#e28327;border-color:rgba(226,131,39,.3)}.uk-notify-message-danger{background:#fff1f0;color:#d85030;border-color:rgba(216,80,48,.3)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/notify.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-notify{position:fixed;top:10px;left:10px;z-index:1040;-moz-box-sizing:border-box;box-sizing:border-box;width:350px}.uk-notify-bottom-right,.uk-notify-top-right{left:auto;right:10px}.uk-notify-bottom-center,.uk-notify-top-center{left:50%;margin-left:-175px}.uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right{top:auto;bottom:10px}@media (max-width:479px){.uk-notify{left:10px;right:10px;width:auto;margin:0}}.uk-notify-message{position:relative;margin-bottom:10px;padding:15px;background:#444;color:#fff;font-size:16px;line-height:22px;cursor:pointer;border:1px solid #444;border-radius:4px}.uk-notify-message>.uk-close{visibility:hidden;float:right}.uk-notify-message:hover>.uk-close{visibility:visible}.uk-notify-message-primary{background:#ebf7fd;color:#2d7091;border-color:rgba(45,112,145,.3)}.uk-notify-message-success{background:#f2fae3;color:#659f13;border-color:rgba(101,159,19,.3)}.uk-notify-message-warning{background:#fffceb;color:#e28327;border-color:rgba(226,131,39,.3)}.uk-notify-message-danger{background:#fff1f0;color:#d85030;border-color:rgba(216,80,48,.3)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/notify.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-notify{position:fixed;top:10px;left:10px;z-index:1040;-moz-box-sizing:border-box;box-sizing:border-box;width:350px}.uk-notify-bottom-right,.uk-notify-top-right{left:auto;right:10px}.uk-notify-bottom-center,.uk-notify-top-center{left:50%;margin-left:-175px}.uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right{top:auto;bottom:10px}@media (max-width:479px){.uk-notify{left:10px;right:10px;width:auto;margin:0}}.uk-notify-message{position:relative;margin-bottom:10px;padding:15px;background:#444;color:#fff;font-size:16px;line-height:22px;cursor:pointer}.uk-notify-message>.uk-close{visibility:hidden;float:right}.uk-notify-message:hover>.uk-close{visibility:visible}.uk-notify-message-primary{background:#ebf7fd;color:#2d7091}.uk-notify-message-success{background:#f2fae3;color:#659f13}.uk-notify-message-warning{background:#fffceb;color:#e28327}.uk-notify-message-danger{background:#fff1f0;color:#d85030} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/placeholder.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Placeholder 4 | ========================================================================== */ 5 | .uk-placeholder { 6 | margin-bottom: 15px; 7 | padding: 20px; 8 | border: 1px dashed #dddddd; 9 | background: #fafafa; 10 | color: #444444; 11 | } 12 | /* 13 | * Add margin if adjacent element 14 | */ 15 | * + .uk-placeholder { 16 | margin-top: 15px; 17 | } 18 | /* 19 | * Remove margin from the last-child 20 | */ 21 | .uk-placeholder > :last-child { 22 | margin-bottom: 0; 23 | } 24 | /* Modifier: `uk-placeholder-large` 25 | ========================================================================== */ 26 | .uk-placeholder-large { 27 | padding-top: 80px; 28 | padding-bottom: 80px; 29 | } 30 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/placeholder.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-placeholder{margin-bottom:15px;padding:20px;border:1px dashed #ddd;background:#fafafa;color:#444}*+.uk-placeholder{margin-top:15px}.uk-placeholder>:last-child{margin-bottom:0}.uk-placeholder-large{padding-top:80px;padding-bottom:80px} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/placeholder.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Placeholder 4 | ========================================================================== */ 5 | .uk-placeholder { 6 | margin-bottom: 15px; 7 | padding: 20px; 8 | border: 1px dashed #dddddd; 9 | background: #fafafa; 10 | color: #444444; 11 | } 12 | /* 13 | * Add margin if adjacent element 14 | */ 15 | * + .uk-placeholder { 16 | margin-top: 15px; 17 | } 18 | /* 19 | * Remove margin from the last-child 20 | */ 21 | .uk-placeholder > :last-child { 22 | margin-bottom: 0; 23 | } 24 | /* Modifier: `uk-placeholder-large` 25 | ========================================================================== */ 26 | .uk-placeholder-large { 27 | padding-top: 80px; 28 | padding-bottom: 80px; 29 | } 30 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/placeholder.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Placeholder 4 | ========================================================================== */ 5 | .uk-placeholder { 6 | margin-bottom: 15px; 7 | padding: 20px; 8 | border: 1px dashed #dddddd; 9 | background: #fafafa; 10 | color: #444444; 11 | } 12 | /* 13 | * Add margin if adjacent element 14 | */ 15 | * + .uk-placeholder { 16 | margin-top: 15px; 17 | } 18 | /* 19 | * Remove margin from the last-child 20 | */ 21 | .uk-placeholder > :last-child { 22 | margin-bottom: 0; 23 | } 24 | /* Modifier: `uk-placeholder-large` 25 | ========================================================================== */ 26 | .uk-placeholder-large { 27 | padding-top: 80px; 28 | padding-bottom: 80px; 29 | } 30 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/placeholder.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-placeholder{margin-bottom:15px;padding:20px;border:1px dashed #ddd;background:#fafafa;color:#444}*+.uk-placeholder{margin-top:15px}.uk-placeholder>:last-child{margin-bottom:0}.uk-placeholder-large{padding-top:80px;padding-bottom:80px} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/placeholder.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-placeholder{margin-bottom:15px;padding:20px;border:1px dashed #ddd;background:#fafafa;color:#444}*+.uk-placeholder{margin-top:15px}.uk-placeholder>:last-child{margin-bottom:0}.uk-placeholder-large{padding-top:80px;padding-bottom:80px} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/progress.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-progress{-moz-box-sizing:border-box;box-sizing:border-box;height:20px;margin-bottom:15px;background:#f5f5f5;overflow:hidden;line-height:20px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);border-radius:4px}*+.uk-progress{margin-top:15px}.uk-progress-bar{width:0;height:100%;background:#00a8e6;float:left;-webkit-transition:width .6s ease;transition:width .6s ease;font-size:12px;color:#fff;text-align:center;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-progress-mini{height:6px}.uk-progress-small{height:12px}.uk-progress-success .uk-progress-bar{background-color:#8cc14c}.uk-progress-warning .uk-progress-bar{background-color:#faa732}.uk-progress-danger .uk-progress-bar{background-color:#da314b}.uk-progress-striped .uk-progress-bar{background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:30px 30px}.uk-progress-striped.uk-active .uk-progress-bar{-webkit-animation:uk-progress-bar-stripes 2s linear infinite;animation:uk-progress-bar-stripes 2s linear infinite}@-webkit-keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}@keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}.uk-progress-mini,.uk-progress-small{border-radius:500px} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/progress.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-progress{-moz-box-sizing:border-box;box-sizing:border-box;height:20px;margin-bottom:15px;background:#eee;overflow:hidden;line-height:20px}*+.uk-progress{margin-top:15px}.uk-progress-bar{width:0;height:100%;background:#00a8e6;float:left;-webkit-transition:width .6s ease;transition:width .6s ease;font-size:12px;color:#fff;text-align:center}.uk-progress-mini{height:6px}.uk-progress-small{height:12px}.uk-progress-success .uk-progress-bar{background-color:#8cc14c}.uk-progress-warning .uk-progress-bar{background-color:#faa732}.uk-progress-danger .uk-progress-bar{background-color:#da314b}.uk-progress-striped .uk-progress-bar{background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:30px 30px}.uk-progress-striped.uk-active .uk-progress-bar{-webkit-animation:uk-progress-bar-stripes 2s linear infinite;animation:uk-progress-bar-stripes 2s linear infinite}@-webkit-keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}@keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/slidenav.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-slidenav{display:inline-block;-moz-box-sizing:border-box;box-sizing:border-box;width:60px;height:60px;line-height:60px;color:rgba(50,50,50,.4);font-size:60px;text-align:center}.uk-slidenav:focus,.uk-slidenav:hover{outline:0;text-decoration:none;color:rgba(50,50,50,.7);cursor:pointer}.uk-slidenav:active{color:rgba(50,50,50,.9)}.uk-slidenav-previous:before{content:"\f104";font-family:FontAwesome}.uk-slidenav-next:before{content:"\f105";font-family:FontAwesome}.uk-slidenav-position{position:relative}.uk-slidenav-position .uk-slidenav{display:none;position:absolute;top:50%;z-index:1;margin-top:-30px}.uk-slidenav-position:hover .uk-slidenav{display:block}.uk-slidenav-position .uk-slidenav-previous{left:20px}.uk-slidenav-position .uk-slidenav-next{right:20px}.uk-slidenav-contrast{color:rgba(255,255,255,.5)}.uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover{color:rgba(255,255,255,.7)}.uk-slidenav-contrast:active{color:rgba(255,255,255,.9)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/slidenav.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-slidenav{display:inline-block;-moz-box-sizing:border-box;box-sizing:border-box;width:60px;height:60px;line-height:60px;color:rgba(50,50,50,.4);font-size:60px;text-align:center}.uk-slidenav:focus,.uk-slidenav:hover{outline:0;text-decoration:none;color:rgba(50,50,50,.7);cursor:pointer}.uk-slidenav:active{color:rgba(50,50,50,.9)}.uk-slidenav-previous:before{content:"\f104";font-family:FontAwesome}.uk-slidenav-next:before{content:"\f105";font-family:FontAwesome}.uk-slidenav-position{position:relative}.uk-slidenav-position .uk-slidenav{display:none;position:absolute;top:50%;z-index:1;margin-top:-30px}.uk-slidenav-position:hover .uk-slidenav{display:block}.uk-slidenav-position .uk-slidenav-previous{left:20px}.uk-slidenav-position .uk-slidenav-next{right:20px}.uk-slidenav-contrast{color:rgba(255,255,255,.5)}.uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover{color:rgba(255,255,255,.7)}.uk-slidenav-contrast:active{color:rgba(255,255,255,.9)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/slidenav.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-slidenav{display:inline-block;-moz-box-sizing:border-box;box-sizing:border-box;width:60px;height:60px;line-height:60px;color:rgba(50,50,50,.4);font-size:60px;text-align:center}.uk-slidenav:focus,.uk-slidenav:hover{outline:0;text-decoration:none;color:rgba(50,50,50,.7);cursor:pointer}.uk-slidenav:active{color:rgba(50,50,50,.9)}.uk-slidenav-previous:before{content:"\f104";font-family:FontAwesome}.uk-slidenav-next:before{content:"\f105";font-family:FontAwesome}.uk-slidenav-position{position:relative}.uk-slidenav-position .uk-slidenav{display:none;position:absolute;top:50%;z-index:1;margin-top:-30px}.uk-slidenav-position:hover .uk-slidenav{display:block}.uk-slidenav-position .uk-slidenav-previous{left:20px}.uk-slidenav-position .uk-slidenav-next{right:20px}.uk-slidenav-contrast{color:rgba(255,255,255,.5)}.uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover{color:rgba(255,255,255,.7)}.uk-slidenav-contrast:active{color:rgba(255,255,255,.9)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/slider.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-slider{position:relative;z-index:0;touch-action:pan-y}.uk-slider:not(.uk-grid){margin:0;padding:0;list-style:none}.uk-slider>*{position:absolute;top:0;left:0}.uk-slider-container{overflow:hidden}.uk-slider:not(.uk-drag){-webkit-transition:transform 200ms linear;transition:transform 200ms linear}.uk-slider.uk-drag{cursor:col-resize;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-slider a,.uk-slider img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}.uk-slider img{pointer-events:none}.uk-slider-fullscreen,.uk-slider-fullscreen>li{height:100vh} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/slider.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-slider{position:relative;z-index:0;touch-action:pan-y}.uk-slider:not(.uk-grid){margin:0;padding:0;list-style:none}.uk-slider>*{position:absolute;top:0;left:0}.uk-slider-container{overflow:hidden}.uk-slider:not(.uk-drag){-webkit-transition:transform 200ms linear;transition:transform 200ms linear}.uk-slider.uk-drag{cursor:col-resize;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-slider a,.uk-slider img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}.uk-slider img{pointer-events:none}.uk-slider-fullscreen,.uk-slider-fullscreen>li{height:100vh} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/slider.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-slider{position:relative;z-index:0;touch-action:pan-y}.uk-slider:not(.uk-grid){margin:0;padding:0;list-style:none}.uk-slider>*{position:absolute;top:0;left:0}.uk-slider-container{overflow:hidden}.uk-slider:not(.uk-drag){-webkit-transition:transform 200ms linear;transition:transform 200ms linear}.uk-slider.uk-drag{cursor:col-resize;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-slider a,.uk-slider img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}.uk-slider img{pointer-events:none}.uk-slider-fullscreen,.uk-slider-fullscreen>li{height:100vh} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sortable.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-sortable{position:relative}.uk-sortable>*{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;touch-action:none}.uk-sortable>* *{-webkit-user-drag:none;user-drag:none}.uk-sortable-dragged{position:absolute;z-index:1050;pointer-events:none}.uk-sortable-placeholder{opacity:0}.uk-sortable-over{opacity:.3}.uk-sortable-moving,.uk-sortable-moving *{cursor:move} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sortable.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Sortable 4 | ========================================================================== */ 5 | .uk-sortable { 6 | position: relative; 7 | } 8 | /* 9 | * 1. Makes text unselectable 10 | * 2. Deactivate browser touch actions in IE11 11 | */ 12 | .uk-sortable > * { 13 | /* 1 */ 14 | -moz-user-select: none; 15 | -webkit-user-select: none; 16 | -ms-user-select: none; 17 | user-select: none; 18 | /* 2 */ 19 | touch-action: none; 20 | } 21 | /* 22 | * Prevents images and links from being dragged (default browser behavior) 23 | * Currently only works in Webkit 24 | */ 25 | .uk-sortable > * * { 26 | -webkit-user-drag: none; 27 | user-drag: none; 28 | } 29 | /* Sub-modifier `uk-sortable-dragged` 30 | ========================================================================== */ 31 | .uk-sortable-dragged { 32 | position: absolute; 33 | z-index: 1050; 34 | pointer-events: none; 35 | } 36 | /* Sub-modifier `uk-sortable-placeholder` 37 | ========================================================================== */ 38 | .uk-sortable-placeholder { 39 | opacity: 0; 40 | } 41 | /* Sub-modifier `uk-sortable-over` 42 | * Only if `warp:true` 43 | ========================================================================== */ 44 | .uk-sortable-over { 45 | opacity: 0.3; 46 | } 47 | /* Sub-object `uk-sortable-moving` 48 | ========================================================================== */ 49 | .uk-sortable-moving, 50 | .uk-sortable-moving * { 51 | cursor: move; 52 | } 53 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sortable.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-sortable{position:relative}.uk-sortable>*{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;touch-action:none}.uk-sortable>* *{-webkit-user-drag:none;user-drag:none}.uk-sortable-dragged{position:absolute;z-index:1050;pointer-events:none}.uk-sortable-placeholder{opacity:0}.uk-sortable-over{opacity:.3}.uk-sortable-moving,.uk-sortable-moving *{cursor:move} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sortable.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-sortable{position:relative}.uk-sortable>*{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;touch-action:none}.uk-sortable>* *{-webkit-user-drag:none;user-drag:none}.uk-sortable-dragged{position:absolute;z-index:1050;pointer-events:none}.uk-sortable-placeholder{opacity:0}.uk-sortable-over{opacity:.3}.uk-sortable-moving,.uk-sortable-moving *{cursor:move} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sticky.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Sticky 4 | ========================================================================== */ 5 | /* 6 | * 1. More robust if padding and border are used 7 | */ 8 | [data-uk-sticky].uk-active { 9 | z-index: 980; 10 | /* 1 */ 11 | -moz-box-sizing: border-box; 12 | box-sizing: border-box; 13 | } 14 | /* 15 | * 1. Resolve frame-rate issues on devices with lower frame-rates. Forces hardware acceleration 16 | */ 17 | .uk-sticky-placeholder > * { 18 | /* 1 */ 19 | -webkit-backface-visibility: hidden; 20 | backface-visibility: hidden; 21 | } 22 | /* 23 | * Faster animations 24 | */ 25 | [data-uk-sticky][class*='uk-animation-'] { 26 | -webkit-animation-duration: 0.15s; 27 | animation-duration: 0.15s; 28 | } 29 | [data-uk-sticky].uk-animation-reverse { 30 | -webkit-animation-duration: 0.04s; 31 | animation-duration: 0.04s; 32 | } 33 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sticky.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | [data-uk-sticky].uk-active{z-index:980;-moz-box-sizing:border-box;box-sizing:border-box}.uk-sticky-placeholder>*{-webkit-backface-visibility:hidden;backface-visibility:hidden}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.15s;animation-duration:.15s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.04s;animation-duration:.04s} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sticky.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Sticky 4 | ========================================================================== */ 5 | /* 6 | * 1. More robust if padding and border are used 7 | */ 8 | [data-uk-sticky].uk-active { 9 | z-index: 980; 10 | /* 1 */ 11 | -moz-box-sizing: border-box; 12 | box-sizing: border-box; 13 | } 14 | /* 15 | * 1. Resolve frame-rate issues on devices with lower frame-rates. Forces hardware acceleration 16 | */ 17 | .uk-sticky-placeholder > * { 18 | /* 1 */ 19 | -webkit-backface-visibility: hidden; 20 | backface-visibility: hidden; 21 | } 22 | /* 23 | * Faster animations 24 | */ 25 | [data-uk-sticky][class*='uk-animation-'] { 26 | -webkit-animation-duration: 0.15s; 27 | animation-duration: 0.15s; 28 | } 29 | [data-uk-sticky].uk-animation-reverse { 30 | -webkit-animation-duration: 0.04s; 31 | animation-duration: 0.04s; 32 | } 33 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sticky.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Sticky 4 | ========================================================================== */ 5 | /* 6 | * 1. More robust if padding and border are used 7 | */ 8 | [data-uk-sticky].uk-active { 9 | z-index: 980; 10 | /* 1 */ 11 | -moz-box-sizing: border-box; 12 | box-sizing: border-box; 13 | } 14 | /* 15 | * 1. Resolve frame-rate issues on devices with lower frame-rates. Forces hardware acceleration 16 | */ 17 | .uk-sticky-placeholder > * { 18 | /* 1 */ 19 | -webkit-backface-visibility: hidden; 20 | backface-visibility: hidden; 21 | } 22 | /* 23 | * Faster animations 24 | */ 25 | [data-uk-sticky][class*='uk-animation-'] { 26 | -webkit-animation-duration: 0.15s; 27 | animation-duration: 0.15s; 28 | } 29 | [data-uk-sticky].uk-animation-reverse { 30 | -webkit-animation-duration: 0.04s; 31 | animation-duration: 0.04s; 32 | } 33 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sticky.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | [data-uk-sticky].uk-active{z-index:980;-moz-box-sizing:border-box;box-sizing:border-box}.uk-sticky-placeholder>*{-webkit-backface-visibility:hidden;backface-visibility:hidden}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.15s;animation-duration:.15s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.04s;animation-duration:.04s} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/sticky.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | [data-uk-sticky].uk-active{z-index:980;-moz-box-sizing:border-box;box-sizing:border-box}.uk-sticky-placeholder>*{-webkit-backface-visibility:hidden;backface-visibility:hidden}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.15s;animation-duration:.15s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.04s;animation-duration:.04s} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/tooltip.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-tooltip{display:none;position:absolute;z-index:1030;-moz-box-sizing:border-box;box-sizing:border-box;max-width:200px;padding:5px 8px;background:#333;color:rgba(255,255,255,.7);font-size:12px;line-height:18px;text-align:center;border-radius:3px;text-shadow:0 1px 0 rgba(0,0,0,.5)}.uk-tooltip:after{content:"";display:block;position:absolute;width:0;height:0;border:5px dashed #333}.uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after{bottom:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-color:#333}.uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after{top:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent;border-bottom-color:#333}.uk-tooltip-bottom:after,.uk-tooltip-top:after{left:50%;margin-left:-5px}.uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after{left:10px}.uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after{right:10px}.uk-tooltip-left:after{right:-5px;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent;border-left-color:#333}.uk-tooltip-right:after{left:-5px;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent;border-right-color:#333} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/tooltip.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-tooltip{display:none;position:absolute;z-index:1030;-moz-box-sizing:border-box;box-sizing:border-box;max-width:200px;padding:5px 8px;background:#333;color:rgba(255,255,255,.7);font-size:12px;line-height:18px;text-align:center;border-radius:3px;text-shadow:0 1px 0 rgba(0,0,0,.5)}.uk-tooltip:after{content:"";display:block;position:absolute;width:0;height:0;border:5px dashed #333}.uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after{bottom:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-color:#333}.uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after{top:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent;border-bottom-color:#333}.uk-tooltip-bottom:after,.uk-tooltip-top:after{left:50%;margin-left:-5px}.uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after{left:10px}.uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after{right:10px}.uk-tooltip-left:after{right:-5px;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent;border-left-color:#333}.uk-tooltip-right:after{left:-5px;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent;border-right-color:#333} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-tooltip{display:none;position:absolute;z-index:1030;-moz-box-sizing:border-box;box-sizing:border-box;max-width:200px;padding:5px 8px;background:#333;color:rgba(255,255,255,.7);font-size:12px;line-height:18px;text-align:center}.uk-tooltip:after{content:"";display:block;position:absolute;width:0;height:0;border:5px dashed #333}.uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after{bottom:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-color:#333}.uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after{top:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent;border-bottom-color:#333}.uk-tooltip-bottom:after,.uk-tooltip-top:after{left:50%;margin-left:-5px}.uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after{left:10px}.uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after{right:10px}.uk-tooltip-left:after{right:-5px;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent;border-left-color:#333}.uk-tooltip-right:after{left:-5px;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent;border-right-color:#333} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/upload.almost-flat.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Upload 4 | ========================================================================== */ 5 | /* 6 | * Create a box-shadow when dragging a file over the upload area 7 | */ 8 | .uk-dragover { 9 | box-shadow: 0 0 20px rgba(100, 100, 100, 0.3); 10 | } 11 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/upload.almost-flat.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/upload.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Upload 4 | ========================================================================== */ 5 | /* 6 | * Create a box-shadow when dragging a file over the upload area 7 | */ 8 | .uk-dragover { 9 | box-shadow: 0 0 20px rgba(100, 100, 100, 0.3); 10 | } 11 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/upload.gradient.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | /* ======================================================================== 3 | Component: Upload 4 | ========================================================================== */ 5 | /* 6 | * Create a box-shadow when dragging a file over the upload area 7 | */ 8 | .uk-dragover { 9 | box-shadow: 0 0 20px rgba(100, 100, 100, 0.3); 10 | } 11 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/upload.gradient.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/css/components/upload.min.css: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | .uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/uikit/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/uikit/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/uikit/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/uikit/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/framework/uikit/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/js/components/form-password.min.js: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | !function(t){var i;window.UIkit&&(i=t(UIkit)),"function"==typeof define&&define.amd&&define("uikit-form-password",["uikit"],function(){return i||t(UIkit)})}(function(t){"use strict";return t.component("formPassword",{defaults:{lblShow:"Show",lblHide:"Hide"},boot:function(){t.$html.on("click.formpassword.uikit","[data-uk-form-password]",function(i){var e=t.$(this);if(!e.data("formPassword")){i.preventDefault();{t.formPassword(e,t.Utils.options(e.attr("data-uk-form-password")))}e.trigger("click")}})},init:function(){var t=this;this.on("click",function(i){if(i.preventDefault(),t.input.length){var e=t.input.attr("type");t.input.attr("type","text"==e?"password":"text"),t.element.text(t.options["text"==e?"lblShow":"lblHide"])}}),this.input=this.element.next("input").length?this.element.next("input"):this.element.prev("input"),this.element.text(this.options[this.input.is("[type='password']")?"lblShow":"lblHide"]),this.element.data("formPassword",this)}}),t.formPassword}); -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/js/components/form-select.min.js: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | !function(t){var e;window.UIkit&&(e=t(UIkit)),"function"==typeof define&&define.amd&&define("uikit-form-select",["uikit"],function(){return e||t(UIkit)})}(function(t){"use strict";return t.component("formSelect",{defaults:{target:">span:first"},boot:function(){t.ready(function(e){t.$("[data-uk-form-select]",e).each(function(){var e=t.$(this);if(!e.data("formSelect")){t.formSelect(e,t.Utils.options(e.attr("data-uk-form-select")))}})})},init:function(){var t=this;this.target=this.find(this.options.target),this.select=this.find("select"),this.select.on("change",function(){var e=t.select[0],i=function(){try{t.target.text(e.options[e.selectedIndex].text)}catch(n){}return i};return i()}()),this.element.data("formSelect",this)}}),t.formSelect}); -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/js/core/alert.min.js: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | !function(t){"use strict";t.component("alert",{defaults:{fade:!0,duration:200,trigger:".uk-alert-close"},boot:function(){t.$html.on("click.alert.uikit","[data-uk-alert]",function(i){var o=t.$(this);if(!o.data("alert")){var e=t.alert(o,t.Utils.options(o.attr("data-uk-alert")));t.$(i.target).is(e.options.trigger)&&(i.preventDefault(),e.close())}})},init:function(){var t=this;this.on("click",this.options.trigger,function(i){i.preventDefault(),t.close()})},close:function(){var t=this.trigger("close.uk.alert"),i=function(){this.trigger("closed.uk.alert").remove()}.bind(this);this.options.fade?t.css("overflow","hidden").css("max-height",t.height()).animate({height:0,opacity:0,"padding-top":0,"padding-bottom":0,"margin-top":0,"margin-bottom":0},this.options.duration,i):i()}})}(UIkit); -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/js/core/cover.min.js: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | !function(t){"use strict";t.component("cover",{defaults:{automute:!0},boot:function(){t.ready(function(i){t.$("[data-uk-cover]",i).each(function(){var i=t.$(this);if(!i.data("cover")){t.cover(i,t.Utils.options(i.attr("data-uk-cover")))}})})},init:function(){if(this.parent=this.element.parent(),t.$win.on("load resize orientationchange",t.Utils.debounce(function(){this.check()}.bind(this),100)),this.on("display.uk.check",function(){this.element.is(":visible")&&this.check()}.bind(this)),this.check(),this.element.is("iframe")&&this.options.automute){var i=this.element.attr("src");this.element.attr("src","").on("load",function(){this.contentWindow.postMessage('{ "event": "command", "func": "mute", "method":"setVolume", "value":0}',"*")}).attr("src",[i,i.indexOf("?")>-1?"&":"?","enablejsapi=1&api=1"].join(""))}},check:function(){this.element.css({width:"",height:""}),this.dimension={w:this.element.width(),h:this.element.height()},this.element.attr("width")&&!isNaN(this.element.attr("width"))&&(this.dimension.w=this.element.attr("width")),this.element.attr("height")&&!isNaN(this.element.attr("height"))&&(this.dimension.h=this.element.attr("height")),this.ratio=this.dimension.w/this.dimension.h;var t,i,e=this.parent.width(),n=this.parent.height();e/this.ratios&&(n=s-e),t.$("html,body").stop().animate({scrollTop:n},i.duration,i.transition).promise().done(i.complete)}t.component("smoothScroll",{boot:function(){t.$html.on("click.smooth-scroll.uikit","[data-uk-smooth-scroll]",function(){var o=t.$(this);if(!o.data("smoothScroll")){{t.smoothScroll(o,t.Utils.options(o.attr("data-uk-smooth-scroll")))}o.trigger("click")}return!1})},init:function(){var i=this;this.on("click",function(n){n.preventDefault(),o(t.$(this.hash).length?t.$(this.hash):t.$("body"),i.options)})}}),t.Utils.scrollToElement=o,t.$.easing.easeOutExpo||(t.$.easing.easeOutExpo=function(t,o,i,n,s){return o==s?i+n:n*(-Math.pow(2,-10*o/s)+1)+i})}(UIkit); -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/js/core/toggle.min.js: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.20.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | !function(t){"use strict";var i=[];t.component("toggle",{defaults:{target:!1,cls:"uk-hidden",animation:!1,duration:200},boot:function(){t.ready(function(s){t.$("[data-uk-toggle]",s).each(function(){var i=t.$(this);if(!i.data("toggle")){t.toggle(i,t.Utils.options(i.attr("data-uk-toggle")))}}),setTimeout(function(){i.forEach(function(t){t.getToggles()})},0)})},init:function(){var t=this;this.aria=-1!==this.options.cls.indexOf("uk-hidden"),this.getToggles(),this.on("click",function(i){t.element.is('a[href="#"]')&&i.preventDefault(),t.toggle()}),i.push(this)},toggle:function(){if(this.totoggle.length){if(this.options.animation&&t.support.animation){var i=this,s=this.options.animation.split(",");1==s.length&&(s[1]=s[0]),s[0]=s[0].trim(),s[1]=s[1].trim(),this.totoggle.css("animation-duration",this.options.duration+"ms"),this.totoggle.hasClass(this.options.cls)?(this.totoggle.toggleClass(this.options.cls),this.totoggle.each(function(){t.Utils.animate(this,s[0]).then(function(){t.$(this).css("animation-duration",""),t.Utils.checkDisplay(this)})})):this.totoggle.each(function(){t.Utils.animate(this,s[1]+" uk-animation-reverse").then(function(){t.$(this).toggleClass(i.options.cls).css("animation-duration",""),t.Utils.checkDisplay(this)}.bind(this))})}else this.totoggle.toggleClass(this.options.cls),t.Utils.checkDisplay(this.totoggle);this.updateAria()}},getToggles:function(){this.totoggle=this.options.target?t.$(this.options.target):[],this.updateAria()},updateAria:function(){this.aria&&this.totoggle.length&&this.totoggle.each(function(){t.$(this).attr("aria-hidden",t.$(this).hasClass("uk-hidden"))})}})}(UIkit); -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/components/form-file.less: -------------------------------------------------------------------------------- 1 | // Name: Form file 2 | // Description: Extends form component 3 | // 4 | // Component: `uk-form` 5 | // 6 | // Sub-objects: `uk-form-file` 7 | // 8 | // Markup: 9 | // 10 | // 11 | //
    12 | // 13 | // 14 | //
    15 | // 16 | // ======================================================================== 17 | 18 | 19 | /* ======================================================================== 20 | Component: Form file 21 | ========================================================================== */ 22 | 23 | /* 24 | * 1. Behave like form elements 25 | * 2. Create position context for dropdowns 26 | * 3. Clip content 27 | */ 28 | 29 | .uk-form-file { 30 | /* 1 */ 31 | display: inline-block; 32 | vertical-align: middle; 33 | /* 2 */ 34 | position: relative; 35 | /* 3 */ 36 | overflow: hidden; 37 | } 38 | 39 | /* 40 | * 1. Required for Firefox 41 | * 2. Expand height and required for the cursor 42 | */ 43 | 44 | .uk-form-file input[type="file"] { 45 | position: absolute; 46 | top: 0; 47 | z-index: 1; 48 | width: 100%; 49 | opacity: 0; 50 | cursor: pointer; 51 | /* 1 */ 52 | left: 0; 53 | /* 2 */ 54 | font-size: 500px; 55 | } 56 | 57 | 58 | // Hooks 59 | // ======================================================================== 60 | 61 | .hook-form-file-misc; 62 | 63 | .hook-form-file-misc() {} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/components/form-select.less: -------------------------------------------------------------------------------- 1 | // Name: Form select 2 | // Description: Extends form component 3 | // 4 | // Component: `uk-form` 5 | // 6 | // Sub-objects: `uk-form-select` 7 | // 8 | // Markup: 9 | // 10 | // 11 | //
    12 | // 13 | // 16 | //
    17 | // 18 | // ======================================================================== 19 | 20 | 21 | /* ======================================================================== 22 | Component: Form select 23 | ========================================================================== */ 24 | 25 | /* 26 | * 1. Behave like form elements 27 | * 2. Create position context for dropdowns 28 | * 3. Clip content 29 | */ 30 | 31 | .uk-form-select { 32 | /* 1 */ 33 | display: inline-block; 34 | vertical-align: middle; 35 | /* 2 */ 36 | position: relative; 37 | /* 3 */ 38 | overflow: hidden; 39 | } 40 | 41 | /* 42 | * 1. Required for Firefox 43 | * 1. Required for Webkit to make `height` work 44 | */ 45 | 46 | .uk-form-select select { 47 | position: absolute; 48 | top: 0; 49 | z-index: 1; 50 | width: 100%; 51 | height: 100%; 52 | opacity: 0; 53 | cursor: pointer; 54 | /* 1 */ 55 | left: 0; 56 | /* 2 */ 57 | -webkit-appearance: none; 58 | } 59 | 60 | 61 | // Hooks 62 | // ======================================================================== 63 | 64 | .hook-form-select-misc; 65 | 66 | .hook-form-select-misc() {} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/components/sticky.less: -------------------------------------------------------------------------------- 1 | // Name: Sticky 2 | // Description: Make elements remain at the top of the viewport 3 | // 4 | // Component: `data-uk-sticky` 5 | // 6 | // States: `uk-active` 7 | // 8 | // ======================================================================== 9 | 10 | 11 | // Variables 12 | // ======================================================================== 13 | 14 | @sticky-z-index: 980; 15 | 16 | 17 | /* ======================================================================== 18 | Component: Sticky 19 | ========================================================================== */ 20 | 21 | /* 22 | * 1. More robust if padding and border are used 23 | */ 24 | 25 | [data-uk-sticky].uk-active { 26 | z-index: @sticky-z-index; 27 | /* 1 */ 28 | -moz-box-sizing: border-box; 29 | box-sizing: border-box; 30 | } 31 | 32 | /* 33 | * 1. Resolve frame-rate issues on devices with lower frame-rates. Forces hardware acceleration 34 | */ 35 | 36 | .uk-sticky-placeholder > * { 37 | /* 1 */ 38 | -webkit-backface-visibility: hidden; 39 | backface-visibility: hidden; 40 | } 41 | 42 | /* 43 | * Faster animations 44 | */ 45 | 46 | [data-uk-sticky][class*='uk-animation-'] { 47 | -webkit-animation-duration: 0.15s; 48 | animation-duration: 0.15s; 49 | } 50 | 51 | [data-uk-sticky].uk-animation-reverse { 52 | -webkit-animation-duration: 0.04s; 53 | animation-duration: 0.04s; 54 | } 55 | 56 | 57 | // Hooks 58 | // ======================================================================== 59 | 60 | .hook-sticky-misc; 61 | 62 | .hook-sticky-misc() {} 63 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/components/upload.less: -------------------------------------------------------------------------------- 1 | // Name: Upload 2 | // Description: Provides a dragover state for uploads 3 | // 4 | // Component: `uk-upload` 5 | // 6 | // States: `uk-dragover` 7 | // 8 | // ======================================================================== 9 | 10 | 11 | // Variables 12 | // ======================================================================== 13 | 14 | @uk-upload-dragover-box-shadow: rgba(100,100,100,0.3); 15 | @uk-upload-dragover-box-shadow-blur: 20px; 16 | 17 | 18 | /* ======================================================================== 19 | Component: Upload 20 | ========================================================================== */ 21 | 22 | /* 23 | * Create a box-shadow when dragging a file over the upload area 24 | */ 25 | 26 | .uk-dragover { box-shadow: 0 0 @uk-upload-dragover-box-shadow-blur @uk-upload-dragover-box-shadow; } 27 | 28 | 29 | // Hooks 30 | // ======================================================================== 31 | 32 | .hook-upload-misc; 33 | 34 | .hook-upload-misc() {} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/core/print.less: -------------------------------------------------------------------------------- 1 | // Name: Print 2 | // Description: Optimize page for printing 3 | // 4 | // Adapted from http://github.com/h5bp/html5-boilerplate 5 | // 6 | // Modifications: Removed link `href` and `title` related rules 7 | // 8 | // ======================================================================== 9 | 10 | 11 | /* ======================================================================== 12 | Component: Print 13 | ========================================================================== */ 14 | 15 | @media print { 16 | 17 | * { 18 | background: transparent !important; 19 | color: black !important; 20 | box-shadow: none !important; 21 | text-shadow: none !important; 22 | } 23 | 24 | a, 25 | a:visited { text-decoration: underline; } 26 | 27 | pre, 28 | blockquote { 29 | border: 1px solid #999; 30 | page-break-inside: avoid; 31 | } 32 | 33 | thead { display: table-header-group; } 34 | 35 | tr, 36 | img { page-break-inside: avoid; } 37 | 38 | img { max-width: 100% !important; } 39 | 40 | @page { margin: 0.5cm; } 41 | 42 | p, 43 | h2, 44 | h3 { 45 | orphans: 3; 46 | widows: 3; 47 | } 48 | 49 | h2, 50 | h3 { page-break-after: avoid; } 51 | 52 | .hook-print; 53 | 54 | } 55 | 56 | // Hooks 57 | // ======================================================================== 58 | 59 | .hook-print() {} 60 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/core/switcher.less: -------------------------------------------------------------------------------- 1 | // Name: Switcher 2 | // Description: Defines styles for the switcher 3 | // 4 | // Component: `uk-switcher` 5 | // 6 | // States: `uk-active` 7 | // 8 | // ======================================================================== 9 | 10 | 11 | /* ======================================================================== 12 | Component: Switcher 13 | ========================================================================== */ 14 | 15 | /* 16 | * 1. Deactivate browser history navigation in IE11 17 | */ 18 | .uk-switcher { 19 | margin: 0; 20 | padding: 0; 21 | list-style: none; 22 | /* 1 */ 23 | touch-action: cross-slide-y pinch-zoom double-tap-zoom; 24 | } 25 | 26 | /* 27 | * Items 28 | */ 29 | 30 | .uk-switcher > :not(.uk-active) { display: none; } 31 | 32 | 33 | // Hooks 34 | // ======================================================================== 35 | 36 | .hook-switcher-misc; 37 | 38 | .hook-switcher-misc() {} -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/core/variables.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component: Variables 3 | // Description: Defines all color and style related values as variables 4 | // to allow easy customization for the most common cases. 5 | // 6 | // ======================================================================== 7 | 8 | 9 | // Global variables 10 | // ======================================================================== 11 | 12 | // 13 | // Breakpoints 14 | // 15 | @breakpoint-small: 480px; 16 | @breakpoint-medium: 768px; 17 | @breakpoint-large: 960px; 18 | @breakpoint-xlarge: 1220px; 19 | 20 | @breakpoint-mini-max: (@breakpoint-small - 1); 21 | @breakpoint-small-max: (@breakpoint-medium - 1); 22 | @breakpoint-medium-max: (@breakpoint-large - 1); 23 | @breakpoint-large-max: (@breakpoint-xlarge - 1); 24 | -------------------------------------------------------------------------------- /Master/ivm/framework/uikit/less/uikit.less: -------------------------------------------------------------------------------- 1 | // LESS related 2 | @import "core/variables.less"; 3 | 4 | // Defaults 5 | @import "core/base.less"; 6 | 7 | // Layout 8 | @import "core/grid.less"; 9 | @import "core/panel.less"; 10 | @import "core/block.less"; 11 | @import "core/article.less"; 12 | @import "core/comment.less"; 13 | @import "core/cover.less"; 14 | 15 | // Navs 16 | @import "core/nav.less"; 17 | @import "core/navbar.less"; 18 | @import "core/subnav.less"; 19 | @import "core/breadcrumb.less"; 20 | @import "core/pagination.less"; 21 | @import "core/tab.less"; 22 | @import "core/thumbnav.less"; 23 | 24 | // Elements 25 | @import "core/list.less"; 26 | @import "core/description-list.less"; 27 | @import "core/table.less"; 28 | @import "core/form.less"; 29 | 30 | // Common 31 | @import "core/button.less"; 32 | @import "core/icon.less"; 33 | @import "core/close.less"; 34 | @import "core/badge.less"; 35 | @import "core/alert.less"; 36 | @import "core/thumbnail.less"; 37 | @import "core/overlay.less"; 38 | @import "core/animation.less"; 39 | 40 | // JavaScript 41 | @import "core/dropdown.less"; 42 | @import "core/modal.less"; 43 | @import "core/offcanvas.less"; 44 | @import "core/switcher.less"; 45 | 46 | // Need to be loaded last 47 | @import "core/text.less"; 48 | @import "core/utility.less"; 49 | @import "core/flex.less"; 50 | @import "core/contrast.less"; 51 | @import "core/print.less"; 52 | -------------------------------------------------------------------------------- /Master/ivm/lang/english.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2 | 3 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
    21 |

    22 |
    23 | 24 | 25 |
    26 |
    27 | text($content); ?> 28 |
    29 |
    30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Master/ivm/page-templates/article/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
    21 |
    22 | text($content); ?> 23 |
    24 |
    25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Master/ivm/page-templates/page-heading/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
    21 |

    22 |
    23 | 24 | 25 |
    26 | text($content); ?> 27 |
    28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /Master/ivm/page-templates/page-subheading/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
    21 |
    22 |

    23 |

    24 |
    25 |
    26 | 27 | 28 |
    29 | text($content); ?> 30 |
    31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /Master/ivm/page-templates/page/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
    21 | text($content); ?> 22 |
    23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Master/ivm/page-templates/sidebar-left/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
    21 |
    22 | 23 |
    24 |
    25 | 36 |
    37 |
    38 | 39 |
    40 |
    41 | text($content); ?> 42 |
    43 |
    44 | 45 |
    46 |
    47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /Master/ivm/page-templates/sidebar-right/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
    21 |
    22 | 23 |
    24 |
    25 | text($content); ?> 26 |
    27 |
    28 | 29 |
    30 |
    31 | 42 |
    43 |
    44 | 45 |
    46 |
    47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /Master/ivm/plugins/ivm-block.php: -------------------------------------------------------------------------------- 1 | =1 ){ 20 | $exp = explode(':', $get_block); 21 | $vars = array_slice($exp, 1); 22 | $tag_var1 = (!empty($vars[0])) ? $vars[0] : ''; 23 | $tag_var2 = (!empty($vars[1])) ? $vars[1] : ''; 24 | $tag_var3 = (!empty($vars[2])) ? $vars[2] : ''; 25 | $get_block = $exp[0]; 26 | } 27 | ob_start(); 28 | include("ivm/plugins/$get_block.php"); 29 | include("template/widgets/$get_block.php"); 30 | include("inc/tags/$get_block.php"); 31 | $new = ob_get_contents(); 32 | $home = str_replace($get_block1, $new, $home); 33 | ob_end_clean(); 34 | } 35 | } 36 | echo $home; 37 | ?> -------------------------------------------------------------------------------- /Master/ivm/plugins/ivm-breadcrumbs.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
    9 | 10 | $home"); 17 | 18 | $last = end(array_keys($ivm_path)); 19 | 20 | 21 | foreach ($ivm_path AS $x => $crumb) { 22 | $title = ucwords(str_replace(array('.php', '_'), Array('', ' '), $crumb)); 23 | if (($x != $last) && (is_dir($x))){ 24 | 25 | $breadcrumbs[] = ''.str_replace('-', ' ', $title).''; 26 | }else{ 27 | $breadcrumbs[] = ''.str_replace('-', ' ', $title).''; 28 | } 29 | } 30 | 31 | return implode($separator, $breadcrumbs); 32 | } 33 | 34 | echo breadcrumbs($tag_var1); 35 | 36 | ?> 37 | 38 |
    -------------------------------------------------------------------------------- /Master/ivm/plugins/ivm-gallery.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 19 | 20 | 38 | 39 | -------------------------------------------------------------------------------- /Master/ivm/plugins/ivm-panorama.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
    11 | 12 | 17 | 18 |

    19 | 20 | 31 |

    -------------------------------------------------------------------------------- /Master/ivm/plugins/ivm-twitter.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
    14 | 15 |

    16 | 31 | 32 | 33 | 34 | 49 |

    -------------------------------------------------------------------------------- /Master/ivm/plugins/twitter/ivm-tweecool.css: -------------------------------------------------------------------------------- 1 | #tweecool ul { 2 | list-style:none; 3 | padding:0px; 4 | } 5 | 6 | #tweecool ul li { 7 | clear:both; 8 | overflow:hidden; 9 | height:auto; 10 | } 11 | 12 | #tweecool ul li + li { 13 | margin-top:10px; 14 | padding-top:10px; 15 | border-top:1px solid #ddd; 16 | } 17 | 18 | .ivm-tweet-img { 19 | float:left; 20 | border-radius:50%; 21 | overflow:hidden; 22 | } 23 | 24 | .ivm-tweet-txt img { 25 | display:block; 26 | } -------------------------------------------------------------------------------- /Master/ivm/system/assets/css/ivm-login.css: -------------------------------------------------------------------------------- 1 | body#login-page { 2 | margin:0px; 3 | background: #232C39; 4 | } 5 | 6 | #login-form img { 7 | display:none; 8 | } 9 | 10 | #login-form:before { 11 | content:''; 12 | display:block; 13 | margin:auto; 14 | width:300px; 15 | height:100px; 16 | background:url(../img/logo.png) center center no-repeat; 17 | background-size:100%, auto; 18 | } 19 | 20 | #login-form { 21 | margin-top:100px; 22 | } 23 | 24 | #login-form input { 25 | height:35px; 26 | } 27 | 28 | #login-form .btn { 29 | background:#2b81d8; 30 | background:-webkit-linear-gradient(#4e94d9, #2b81d8); 31 | background:-moz-linear-gradient(#4e94d9, #2b81d8); 32 | background:-o-linear-gradient(#4e94d9, #2b81d8); 33 | background:linear-gradient(#4e94d9, #2b81d8); 34 | border:1px solid #2b81d8; 35 | box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2), 0px 2px 3px 0px rgba(0, 0, 0, 0.2); 36 | height:35px; 37 | line-height:34px !important; 38 | padding:0px 35px; 39 | color:#fff !important; 40 | border-radius:3px; 41 | cursor:pointer; 42 | } 43 | 44 | #login-form .btn:hover { 45 | color:#fff; 46 | background: #368be0; 47 | text-decoration:none; 48 | } 49 | 50 | #login-form .btn:focus, 51 | #login-form .btn:active { 52 | box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3); 53 | } -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/flaticon.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Flaticon"; 3 | src: url("flaticon.eot"); 4 | src: url("flaticon.eot#iefix") format("embedded-opentype"), 5 | url("flaticon.woff") format("woff"), 6 | url("flaticon.ttf") format("truetype"), 7 | url("flaticon.svg") format("svg"); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | [class^="flaticon-"]:before, [class*=" flaticon-"]:before, 12 | [class^="flaticon-"]:after, [class*=" flaticon-"]:after { 13 | font-family: Flaticon; 14 | } 15 | .flaticon-delete:before { 16 | content: "\e000"; 17 | } 18 | .flaticon-delete-1:before { 19 | content: "\e001"; 20 | } 21 | .flaticon-eye:before { 22 | content: "\e002"; 23 | } 24 | .flaticon-folder:before { 25 | content: "\e003"; 26 | } 27 | .flaticon-folder-o:before { 28 | content: "\e004"; 29 | } 30 | .flaticon-page:before { 31 | content: "\e005"; 32 | } 33 | .flaticon-menu:before { 34 | content: "\e006"; 35 | } 36 | .flaticon-off:before { 37 | content: "\e007"; 38 | } 39 | .flaticon-save:before { 40 | content: "\e008"; 41 | } 42 | .flaticon-page-1:before { 43 | content: "\e009"; 44 | } 45 | .flaticon-page-2:before { 46 | content: "\e00a"; 47 | } 48 | -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/flaticon.eot -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/flaticon.ttf -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/flaticon.woff -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Master/ivm/system/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/favicon.ico -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/favicon.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/blocks.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/blog.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/code.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/dev.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/email.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/form.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/gallery.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/general.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/gmail.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/home.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/map.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/media.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/menu.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/pages.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/stats.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/system.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/twitter.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/icons/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/icons/widgets.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/ivm/system/assets/img/logo.png -------------------------------------------------------------------------------- /Master/ivm/system/assets/img/protect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Master/ivm/system/assets/js/ivm-menu.js: -------------------------------------------------------------------------------- 1 | jQuery(function($) { 2 | 3 | // MAIN MENU ACTIVE CLASS 4 | $("#ivm-admin-nav > ul > li > a").filter(function(){ 5 | return this.href == location.href.replace(/#.*/, ""); 6 | }).parent().addClass("uk-active"); 7 | 8 | // PARENT OPEN ACTIVE CLASS 9 | $(".uk-nav-sub > li > a").filter(function(){ 10 | return this.href == location.href.replace(/#.*/, ""); 11 | }).parentsUntil(".uk-nav-side").addClass("uk-active"); 12 | 13 | // PARENT OPEN ACTIVE CLASS 14 | $(".uk-nav-sub > li > a").filter(function(){ 15 | return this.href == location.href.replace(/#.*/, ""); 16 | }).parent().addClass("uk-active"); 17 | 18 | 19 | // DROPDOWN MAIN MENU ACTIVE CLASS 20 | $('.uk-dropdown a').filter(function(){ 21 | return $(this).attr('href') == location.pathname 22 | }).addClass('uk-active').closest('div').parent().addClass('uk-active'); 23 | 24 | 25 | }); -------------------------------------------------------------------------------- /Master/ivm/system/assets/js/ivm_layout.js: -------------------------------------------------------------------------------- 1 | jQuery(function($) { 2 | 3 | $( ".folder-row" ).wrap( "
    " ); 4 | $( ".ivm-folder" ).wrapAll( "
    "); 5 | $( ".file-row" ).wrapAll( "
    "); 6 | $( ".folder-row > a" ).wrapInner( ""); 7 | 8 | $( ".create-form" ).before( '

    "Create"

    if you create file (.txt) extensions is required.

    ' ); 9 | $( ".rename-form" ).before( '

    "Rename"

    ' ); 10 | $( ".upload-form" ).before( '

    "Media Upload"

    ' ); 11 | 12 | $( ".embed_toggle" ).click(function() { 13 | $( '.embed_toggle' ).toggleClass( "ivm-active" ); 14 | }); 15 | 16 | $( ".ivm-show-toolbar" ).click(function() { 17 | $( '#ivm-admin-toolbar' ).toggleClass( "ivm-toolbar-hide" ); 18 | }); 19 | 20 | // ivm-gallery 21 | $('a[href^="index.php?p=upload&gallery=media"] + .tagdiv input').val("{{ivm-gallery:folder_name}}"); 22 | 23 | // add html editor to textarea 24 | $("#caption_form > textarea").attr("data-uk-htmleditor","{mode:'tab'}"); 25 | 26 | // redactor + sb_blocks html editor 27 | $("textarea#textblock").attr("data-uk-htmleditor","{mode:'tab'}"); 28 | 29 | }); -------------------------------------------------------------------------------- /Master/ivm/system/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/ivm/system/mobile-menu.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 | 6 | 7 | 8 |
    9 |
    -------------------------------------------------------------------------------- /Master/ivm/system/redactor/redactor_options.js: -------------------------------------------------------------------------------- 1 | $(function() 2 | { 3 | $('#wysiwyg').redactor({ 4 | lang: 'en', 5 | //codemirror: true, 6 | cleanOnPaste: true, 7 | linkTooltip: true, 8 | paragraphize: true, 9 | imageUpload: 'inc/editor_images.php', 10 | imageManagerJson: 'inc/data_json.php', 11 | fileUpload: 'inc/editor_files.php', 12 | replaceDivs: false, 13 | autoresize: true, 14 | minHeight: 500, 15 | buttonSource: true, 16 | plugins: ['imagemanager','table'] 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /Master/ivm/system/settings/dev-config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/ivm/system/settings/email-config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/ivm/system/settings/gallery-config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/ivm/system/settings/general-config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/ivm/system/settings/map-config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/ivm/system/settings/twitter-config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Master/ivm/system/toolbar.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-accordion.php: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 |
    19 | 20 |
    21 | 22 | 30 | 31 |

    32 |
    33 | 34 | 35 |
    36 | 37 |
    38 | 39 | -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-block.php: -------------------------------------------------------------------------------- 1 | =1 ){ 20 | $exp = explode(':', $get_block); 21 | $vars = array_slice($exp, 1); 22 | $tag_var1 = (!empty($vars[0])) ? $vars[0] : ''; 23 | $tag_var2 = (!empty($vars[1])) ? $vars[1] : ''; 24 | $tag_var3 = (!empty($vars[2])) ? $vars[2] : ''; 25 | $get_block = $exp[0]; 26 | } 27 | ob_start(); 28 | include("ivm/widgets/$get_block.php"); 29 | include("template/widgets/$get_block.php"); 30 | include("inc/tags/$get_block.php"); 31 | $new = ob_get_contents(); 32 | $home = str_replace($get_block1, $new, $home); 33 | ob_end_clean(); 34 | } 35 | } 36 | echo $home; 37 | ?> -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-breadcrumbs.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
    9 | 10 | $home"); 17 | 18 | $last = end(array_keys($ivm_path)); 19 | 20 | 21 | foreach ($ivm_path AS $x => $crumb) { 22 | $title = ucwords(str_replace(array('.php', '_'), Array('', ' '), $crumb)); 23 | if (($x != $last) && (is_dir($x))){ 24 | 25 | $breadcrumbs[] = ''.str_replace('-', ' ', $title).''; 26 | }else{ 27 | $breadcrumbs[] = ''.str_replace('-', ' ', $title).''; 28 | } 29 | } 30 | 31 | return implode($separator, $breadcrumbs); 32 | } 33 | 34 | echo breadcrumbs($tag_var1); 35 | 36 | ?> 37 | 38 |
    -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-gallery.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 19 | 20 | 38 | 39 | -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-grid.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 16 | 17 |
    18 |
    19 | 20 | 21 | 29 | 30 |
    31 | 32 | 33 | 34 |
    35 |
    36 | 37 | 46 | 47 | -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-modal.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 17 | 18 | 22 | 23 |
    24 |
    25 | 26 | 27 |
    28 |
    -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-panorama.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
    9 | 10 | 15 | 16 |

    17 | 18 | 29 |

    -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/ivm-twitter.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
    14 | 15 |

    16 | 31 | 32 | 33 | 34 | 49 |

    -------------------------------------------------------------------------------- /Master/ivm/widgets-examples/twitter/ivm-tweecool.css: -------------------------------------------------------------------------------- 1 | #tweecool ul { 2 | list-style:none; 3 | padding:0px; 4 | } 5 | 6 | #tweecool ul li { 7 | clear:both; 8 | overflow:hidden; 9 | height:auto; 10 | } 11 | 12 | #tweecool ul li + li { 13 | margin-top:10px; 14 | padding-top:10px; 15 | border-top:1px solid #ddd; 16 | } 17 | 18 | .ivm-tweet-img { 19 | float:left; 20 | border-radius:50%; 21 | overflow:hidden; 22 | } 23 | 24 | .ivm-tweet-txt img { 25 | display:block; 26 | } -------------------------------------------------------------------------------- /Master/sample.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | 3 | # RewriteBase / 4 | 5 | RewriteRule ^blog-page-([^-]*)$ ?page=$1&p=blog [L] 6 | RewriteRule ^blog-([^-]*)+? ?d=$1&p=blog [L] 7 | 8 | RewriteCond %{REQUEST_FILENAME} !-f 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)$ index.php?p=$1 [L] 11 | 12 | # Adds SVG image support 13 | AddType image/svg+xml svg svgz 14 | AddEncoding gzip svgz -------------------------------------------------------------------------------- /Master/template/admin/menu-multi-lang.php: -------------------------------------------------------------------------------- 1 | 2 |
  • Item
  • 3 | 4 | 5 | -------------------------------------------------------------------------------- /Master/template/admin/menu-widgets.php: -------------------------------------------------------------------------------- 1 |
  • Custom Widget
  • 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Master/template/admin/pages.php: -------------------------------------------------------------------------------- 1 | 2 |
    no custom pages
    3 |
    4 | 5 |
    -------------------------------------------------------------------------------- /Master/template/admin/web-elements.php: -------------------------------------------------------------------------------- 1 | 2 |

    @Custom

    3 |
    4 | 5 |
    @Custom
    6 |
    7 | 8 |
    9 | 10 |
    -------------------------------------------------------------------------------- /Master/template/admin/widgets.php: -------------------------------------------------------------------------------- 1 | 2 |

    custom widget

    3 |
    4 | 5 |
    No widgets
    6 |
    7 | 8 |
    9 | 10 |
    -------------------------------------------------------------------------------- /Master/template/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Ivan Milincic, http://www.ktearivan.net */ -------------------------------------------------------------------------------- /Master/template/css/theme.css: -------------------------------------------------------------------------------- 1 | /* Ivan Milincic, http://www.ktearivan.net */ -------------------------------------------------------------------------------- /Master/template/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Master/template/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Master/template/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Master/template/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Master/template/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Master/template/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/img/apple-touch-icon.png -------------------------------------------------------------------------------- /Master/template/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/img/favicon.ico -------------------------------------------------------------------------------- /Master/template/img/flatinet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/img/flatinet-logo.png -------------------------------------------------------------------------------- /Master/template/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/img/logo.png -------------------------------------------------------------------------------- /Master/template/js/custom.js: -------------------------------------------------------------------------------- 1 | // Ivan Milincic, http://www.kreativan.net 2 | 3 | jQuery(function($) { 4 | 5 | 6 | }); -------------------------------------------------------------------------------- /Master/template/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page_title; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | text($content); ?> 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Master/template/layouts/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 21 |
    22 |
    23 |
    24 |
      25 | 26 |
    27 |
    28 |
    -------------------------------------------------------------------------------- /Master/template/layouts/header.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
    9 |
    10 | 11 | 14 | 15 | 20 | 21 |
    22 |
    -------------------------------------------------------------------------------- /Master/template/less/ivm/sidebar_menu.less: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | Sidebar Menu 3 | ======================================================================== */ 4 | 5 | .uk-nav li.uk-active a { 6 | background: @ivm-primary-background; 7 | color:@ivm-primary-color; 8 | } 9 | 10 | .uk-nav .uk-nav-sub { 11 | border-bottom:1px solid #ddd; 12 | } 13 | 14 | .uk-nav .uk-nav-sub a, 15 | .uk-nav .uk-nav-sub.uk-active a { 16 | background:transparent; 17 | color:@base-body-color; 18 | font-size:@base-body-font-size - 1px; 19 | padding-left:5px; 20 | } 21 | 22 | .uk-nav .uk-nav-sub li.uk-active a, 23 | .uk-nav .uk-nav-sub a:hover, 24 | .uk-nav .uk-nav-sub.uk-active li.uk-active a, 25 | .uk-nav .uk-nav-sub.uk-active a:hover { 26 | color:@base-link-color; 27 | } -------------------------------------------------------------------------------- /Master/template/less/theme.less: -------------------------------------------------------------------------------- 1 | /* UIkit */ 2 | @import "../../ivm/framework/uikit/less/uikit.less"; 3 | 4 | /* UIkit Components */ 5 | @import "../../ivm/framework/uikit/less/components/dotnav.less"; 6 | @import "../../ivm/framework/uikit/less/components/slidenav.less"; 7 | @import "../../ivm/framework/uikit/less/components/progress.less"; 8 | @import "../../ivm/framework/uikit/less/components/sticky.less"; 9 | @import "../../ivm/framework/uikit/less/components/tooltip.less"; 10 | 11 | 12 | // Variables 13 | @import "variables.less"; 14 | 15 | // IVM 16 | @import "ivm/layout.less"; 17 | @import "ivm/header.less"; 18 | @import "ivm/base.less"; 19 | @import "ivm/modules.less"; 20 | @import "ivm/panels.less"; 21 | @import "ivm/page_heading.less"; 22 | @import "ivm/full_screen.less"; 23 | @import "ivm/sidebar_menu.less"; 24 | @import "ivm/buttons.less"; 25 | @import "ivm/form.less"; 26 | @import "ivm/highlight.less"; 27 | 28 | @import "ivm/responsive.less"; -------------------------------------------------------------------------------- /Master/template/page-templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/page-templates/index.html -------------------------------------------------------------------------------- /Master/template/widgets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kreativan/Flat-CMS/3dce3848a8f04650da207362adcb129b3d8ee516/Master/template/widgets/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flat-CMS 2 | PHP Flat-file cms system for smaller websites. Dosent need database, uses .txt files and folders for storing content. 3 | Has integrated uikit framework and code snippets you can drag and drop to build page layouts. Comes with basic widgets 4 | like contact form, gallery, map and blog component, and its extendable. If you have basic php knowladge, you can easly build any type of widget. 5 | 6 | ## Unfortunately i can't maintain this project anymore, just lack of time. 7 | --------------------------------------------------------------------------------