├── asset ├── img │ ├── 404.png │ ├── 500.png │ ├── bg1.jpg │ ├── bg2.jpg │ ├── bg3.jpg │ ├── bg4.jpg │ ├── ss.png │ ├── avatar.jpg │ ├── g3986.png │ ├── logomi.png │ ├── avatar2.png │ ├── avatar3.png │ ├── controls.png │ ├── left-bg.png │ ├── left-bg2.png │ ├── demo-video.png │ ├── sprite-skin-flat.png │ ├── sprite-skin-nice.png │ ├── sprite-skin-modern.png │ ├── sprite-skin-simple.png │ └── bigplay.svg ├── media │ ├── demo.mp3 │ └── demo.mp4 ├── fonts │ ├── FontAwesome.otf │ ├── Simple-Line-Icons.eot │ ├── Simple-Line-Icons.ttf │ ├── Simple-Line-Icons.woff │ ├── Simple-Line-Icons.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── js │ └── plugins │ │ ├── flashmediaelement.swf │ │ ├── flot │ │ ├── examples │ │ │ ├── .DS_Store │ │ │ ├── background.png │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ └── data-eu-gdp-growth-5.json │ │ │ ├── navigate │ │ │ │ ├── arrow-up.gif │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ └── arrow-right.gif │ │ │ ├── axes-time-zones │ │ │ │ └── tz │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── factory │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── systemv │ │ │ │ │ └── etcetera │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ └── jquery-ui.min.css │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ └── realtime │ │ │ │ └── index.html │ │ ├── LICENSE.txt │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.symbol.js │ │ └── jquery.colorhelpers.min.js │ │ ├── silverlightmediaelement.xap │ │ ├── maps │ │ └── continents │ │ │ └── readme.txt │ │ ├── datatables.bootstrap.min.js │ │ ├── jquery.vmap.sampledata.js │ │ └── html5shiv.js └── css │ └── plugins │ ├── icheck │ └── skins │ │ ├── flat │ │ ├── aero.png │ │ ├── blue.png │ │ ├── flat.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── red.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── flat@2x.png │ │ ├── grey@2x.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── yellow.png │ │ ├── green@2x.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ ├── yellow@2x.png │ │ ├── flat.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── line │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── line.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── square │ │ ├── red.png │ │ ├── aero.png │ │ ├── blue.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── green@2x.png │ │ ├── grey@2x.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── square.png │ │ ├── yellow.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ ├── square@2x.png │ │ ├── yellow@2x.png │ │ ├── square.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── minimal │ │ ├── aero.png │ │ ├── blue.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── red.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── green.png │ │ ├── grey@2x.png │ │ ├── minimal.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── yellow.png │ │ ├── green@2x.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ ├── yellow@2x.png │ │ ├── minimal@2x.png │ │ ├── minimal.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── polaris │ │ ├── polaris.png │ │ ├── polaris@2x.png │ │ └── polaris.css │ │ ├── futurico │ │ ├── futurico.png │ │ ├── futurico@2x.png │ │ └── futurico.css │ │ └── all.css │ ├── typebase.css │ ├── ionrangeslider │ ├── ion.rangeSlider.skinNice.css │ ├── ion.rangeSlider.skinSimple.css │ ├── ion.rangeSlider.skinFlat.css │ └── ion.rangeSlider.skinModern.css │ └── nouislider.min.css ├── README.md ├── LICENSE ├── 404.html ├── 500.html ├── lockscreen-v1.html └── forgotpass.html /asset/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/404.png -------------------------------------------------------------------------------- /asset/img/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/500.png -------------------------------------------------------------------------------- /asset/img/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg1.jpg -------------------------------------------------------------------------------- /asset/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg2.jpg -------------------------------------------------------------------------------- /asset/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg3.jpg -------------------------------------------------------------------------------- /asset/img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg4.jpg -------------------------------------------------------------------------------- /asset/img/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/ss.png -------------------------------------------------------------------------------- /asset/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/avatar.jpg -------------------------------------------------------------------------------- /asset/img/g3986.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/g3986.png -------------------------------------------------------------------------------- /asset/img/logomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/logomi.png -------------------------------------------------------------------------------- /asset/media/demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/media/demo.mp3 -------------------------------------------------------------------------------- /asset/media/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/media/demo.mp4 -------------------------------------------------------------------------------- /asset/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/avatar2.png -------------------------------------------------------------------------------- /asset/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/avatar3.png -------------------------------------------------------------------------------- /asset/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/controls.png -------------------------------------------------------------------------------- /asset/img/left-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/left-bg.png -------------------------------------------------------------------------------- /asset/img/left-bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/left-bg2.png -------------------------------------------------------------------------------- /asset/img/demo-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/demo-video.png -------------------------------------------------------------------------------- /asset/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /asset/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /asset/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /asset/img/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-modern.png -------------------------------------------------------------------------------- /asset/img/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-simple.png -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /asset/js/plugins/flashmediaelement.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flashmediaelement.swf -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/.DS_Store -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/line/line.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/red.png -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/background.png -------------------------------------------------------------------------------- /asset/js/plugins/silverlightmediaelement.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/silverlightmediaelement.xap -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/red.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/aero.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/blue.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/green.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/grey.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/pink.png -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/green.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/orange.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/purple.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/square.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/yellow.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /asset/js/plugins/maps/continents/readme.txt: -------------------------------------------------------------------------------- 1 | These maps are just extracted from the world map and re-sized to same level as the world map. No extra details, or polygons added. -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/axes-time-zones/tz/southamerica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/axes-time-zones/tz/southamerica -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/image/hs-2004-27-a-large-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/image/hs-2004-27-a-large-web.jpg -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # What is it? 2 | miminium is a fully responsive admin template. Based on Bootstrap 3 framework. modern design and full animation. [DEMO](http://akivaron.github.io/miminium/) 3 | 4 | ![screenshot](https://github.com/akivaron/miminium/blob/master/asset/img/ss.png "screenshot") 5 | # License 6 | MIMINIUM is an open source project by isna nur azis that is licensed under MIT. Please feel free to use. :P 7 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/axes-time-zones/tz/factory: -------------------------------------------------------------------------------- 1 | #
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # For companies who don't want to put time zone specification in
 6 | # their installation procedures.  When users run date, they'll get the message.
 7 | # Also useful for the "comp.sources" version.
 8 | 
 9 | # Zone	NAME	GMTOFF	RULES	FORMAT
10 | Zone	Factory	0	- "Local time zone must be set--see zic manual page"
11 | 


--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-time-zones/tz/yearistype.sh:
--------------------------------------------------------------------------------
 1 | #! /bin/sh
 2 | 
 3 | : 'This file is in the public domain, so clarified as of'
 4 | : '2006-07-17 by Arthur David Olson.'
 5 | 
 6 | case $#-$1 in
 7 | 	2-|2-0*|2-*[!0-9]*)
 8 | 		echo "$0: wild year - $1" >&2
 9 | 		exit 1 ;;
10 | esac
11 | 
12 | case $#-$2 in
13 | 	2-even)
14 | 		case $1 in
15 | 			*[24680])			exit 0 ;;
16 | 			*)				exit 1 ;;
17 | 		esac ;;
18 | 	2-nonpres|2-nonuspres)
19 | 		case $1 in
20 | 			*[02468][048]|*[13579][26])	exit 1 ;;
21 | 			*)				exit 0 ;;
22 | 		esac ;;
23 | 	2-odd)
24 | 		case $1 in
25 | 			*[13579])			exit 0 ;;
26 | 			*)				exit 1 ;;
27 | 		esac ;;
28 | 	2-uspres)
29 | 		case $1 in
30 | 			*[02468][048]|*[13579][26])	exit 0 ;;
31 | 			*)				exit 1 ;;
32 | 		esac ;;
33 | 	2-*)
34 | 		echo "$0: wild type - $2" >&2 ;;
35 | esac
36 | 
37 | echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
38 | exit 1
39 | 


--------------------------------------------------------------------------------
/asset/img/bigplay.svg:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 6 | 	
 7 | 		
 8 | 		
 9 | 	
10 | 	
11 | 		
12 | 		
13 | 	
14 | 


--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
 1 | The MIT License (MIT)
 2 | 
 3 | Copyright (c) 2015 isna nur azis
 4 | 
 5 | Permission is hereby granted, free of charge, to any person obtaining a copy
 6 | of this software and associated documentation files (the "Software"), to deal
 7 | in the Software without restriction, including without limitation the rights
 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 | 
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 | 
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 | 
23 | 


--------------------------------------------------------------------------------
/asset/js/plugins/flot/LICENSE.txt:
--------------------------------------------------------------------------------
 1 | Copyright (c) 2007-2014 IOLA and Ole Laursen
 2 | 
 3 | Permission is hereby granted, free of charge, to any person
 4 | obtaining a copy of this software and associated documentation
 5 | files (the "Software"), to deal in the Software without
 6 | restriction, including without limitation the rights to use,
 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
 8 | copies of the Software, and to permit persons to whom the
 9 | Software is furnished to do so, subject to the following
10 | conditions:
11 | 
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 | 
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 | 


--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.symbol.min.js:
--------------------------------------------------------------------------------
1 | /* Javascript plotting library for jQuery, version 0.8.3.
2 | 
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 | 
6 | */
7 | (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery);


--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-time-zones/tz/pacificnew:
--------------------------------------------------------------------------------
 1 | # 
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # From Arthur David Olson (1989-04-05):
 6 | # On 1989-04-05, the U. S. House of Representatives passed (238-154) a bill
 7 | # establishing "Pacific Presidential Election Time"; it was not acted on
 8 | # by the Senate or signed into law by the President.
 9 | # You might want to change the "PE" (Presidential Election) below to
10 | # "Q" (Quadrennial) to maintain three-character zone abbreviations.
11 | # If you're really conservative, you might want to change it to "D".
12 | # Avoid "L" (Leap Year), which won't be true in 2100.
13 | 
14 | # If Presidential Election Time is ever established, replace "XXXX" below
15 | # with the year the law takes effect and uncomment the "##" lines.
16 | 
17 | # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
18 | ## Rule	Twilite	XXXX	max	-	Apr	Sun>=1	2:00	1:00	D
19 | ## Rule	Twilite	XXXX	max	uspres	Oct	lastSun	2:00	1:00	PE
20 | ## Rule	Twilite	XXXX	max	uspres	Nov	Sun>=7	2:00	0	S
21 | ## Rule	Twilite	XXXX	max	nonpres	Oct	lastSun	2:00	0	S
22 | 
23 | # Zone	NAME			GMTOFF	RULES/SAVE	FORMAT	[UNTIL]
24 | ## Zone	America/Los_Angeles-PET	-8:00	US		P%sT	XXXX
25 | ##				-8:00	Twilite		P%sT
26 | 
27 | # For now...
28 | Link	America/Los_Angeles	US/Pacific-New	##
29 | 


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/flat.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin flat skin, black
 2 | ----------------------------------- */
 3 | .icheckbox_flat,
 4 | .iradio_flat {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(flat.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat,
48 |     .iradio_flat {
49 |         background-image: url(flat@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/red.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, red
 2 | ----------------------------------- */
 3 | .icheckbox_flat-red,
 4 | .iradio_flat-red {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(red.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-red {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-red.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-red.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-red.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-red {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-red.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-red.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-red.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-red,
48 |     .iradio_flat-red {
49 |         background-image: url(red@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/aero.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, aero
 2 | ----------------------------------- */
 3 | .icheckbox_flat-aero,
 4 | .iradio_flat-aero {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(aero.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-aero {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-aero.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-aero.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-aero.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-aero {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-aero.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-aero.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-aero.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-aero,
48 |     .iradio_flat-aero {
49 |         background-image: url(aero@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/blue.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, blue
 2 | ----------------------------------- */
 3 | .icheckbox_flat-blue,
 4 | .iradio_flat-blue {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(blue.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-blue {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-blue.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-blue.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-blue.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-blue {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-blue.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-blue.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-blue.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-blue,
48 |     .iradio_flat-blue {
49 |         background-image: url(blue@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/grey.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, grey
 2 | ----------------------------------- */
 3 | .icheckbox_flat-grey,
 4 | .iradio_flat-grey {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(grey.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-grey {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-grey.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-grey.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-grey.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-grey {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-grey.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-grey.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-grey.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-grey,
48 |     .iradio_flat-grey {
49 |         background-image: url(grey@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/pink.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, pink
 2 | ----------------------------------- */
 3 | .icheckbox_flat-pink,
 4 | .iradio_flat-pink {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(pink.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-pink {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-pink.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-pink.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-pink.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-pink {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-pink.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-pink.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-pink.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-pink,
48 |     .iradio_flat-pink {
49 |         background-image: url(pink@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/futurico/futurico.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Futurico skin
 2 | ----------------------------------- */
 3 | .icheckbox_futurico,
 4 | .iradio_futurico {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 16px;
11 |     height: 17px;
12 |     background: url(futurico.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_futurico {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_futurico.checked {
21 |         background-position: -18px 0;
22 |     }
23 |     .icheckbox_futurico.disabled {
24 |         background-position: -36px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_futurico.checked.disabled {
28 |         background-position: -54px 0;
29 |     }
30 | 
31 | .iradio_futurico {
32 |     background-position: -72px 0;
33 | }
34 |     .iradio_futurico.checked {
35 |         background-position: -90px 0;
36 |     }
37 |     .iradio_futurico.disabled {
38 |         background-position: -108px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_futurico.checked.disabled {
42 |         background-position: -126px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_futurico,
48 |     .iradio_futurico {
49 |         background-image: url(futurico@2x.png);
50 |         -webkit-background-size: 144px 19px;
51 |         background-size: 144px 19px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/green.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, green
 2 | ----------------------------------- */
 3 | .icheckbox_flat-green,
 4 | .iradio_flat-green {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(green.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-green {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-green.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-green.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-green.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-green {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-green.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-green.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-green.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-green,
48 |     .iradio_flat-green {
49 |         background-image: url(green@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/orange.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, orange
 2 | ----------------------------------- */
 3 | .icheckbox_flat-orange,
 4 | .iradio_flat-orange {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(orange.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-orange {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-orange.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-orange.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-orange.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-orange {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-orange.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-orange.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-orange.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-orange,
48 |     .iradio_flat-orange {
49 |         background-image: url(orange@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/purple.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, purple
 2 | ----------------------------------- */
 3 | .icheckbox_flat-purple,
 4 | .iradio_flat-purple {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(purple.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-purple {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-purple.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-purple.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-purple.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-purple {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-purple.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-purple.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-purple.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-purple,
48 |     .iradio_flat-purple {
49 |         background-image: url(purple@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/yellow.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Flat skin, yellow
 2 | ----------------------------------- */
 3 | .icheckbox_flat-yellow,
 4 | .iradio_flat-yellow {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 20px;
11 |     height: 20px;
12 |     background: url(yellow.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_flat-yellow {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_flat-yellow.checked {
21 |         background-position: -22px 0;
22 |     }
23 |     .icheckbox_flat-yellow.disabled {
24 |         background-position: -44px 0;
25 |         cursor: default;
26 |     }
27 |     .icheckbox_flat-yellow.checked.disabled {
28 |         background-position: -66px 0;
29 |     }
30 | 
31 | .iradio_flat-yellow {
32 |     background-position: -88px 0;
33 | }
34 |     .iradio_flat-yellow.checked {
35 |         background-position: -110px 0;
36 |     }
37 |     .iradio_flat-yellow.disabled {
38 |         background-position: -132px 0;
39 |         cursor: default;
40 |     }
41 |     .iradio_flat-yellow.checked.disabled {
42 |         background-position: -154px 0;
43 |     }
44 | 
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 |     .icheckbox_flat-yellow,
48 |     .iradio_flat-yellow {
49 |         background-image: url(yellow@2x.png);
50 |         -webkit-background-size: 176px 22px;
51 |         background-size: 176px 22px;
52 |     }
53 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/square.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, black
 2 | ----------------------------------- */
 3 | .icheckbox_square,
 4 | .iradio_square {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(square.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square,
54 |     .iradio_square {
55 |         background-image: url(square@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-time-zones/tz/systemv:
--------------------------------------------------------------------------------
 1 | # 
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # Old rules, should the need arise.
 6 | # No attempt is made to handle Newfoundland, since it cannot be expressed
 7 | # using the System V "TZ" scheme (half-hour offset), or anything outside
 8 | # North America (no support for non-standard DST start/end dates), nor
 9 | # the changes in the DST rules in the US after 1976 (which occurred after
10 | # the old rules were written).
11 | #
12 | # If you need the old rules, uncomment ## lines.
13 | # Compile this *without* leap second correction for true conformance.
14 | 
15 | # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
16 | Rule	SystemV	min	1973	-	Apr	lastSun	2:00	1:00	D
17 | Rule	SystemV	min	1973	-	Oct	lastSun	2:00	0	S
18 | Rule	SystemV	1974	only	-	Jan	6	2:00	1:00	D
19 | Rule	SystemV	1974	only	-	Nov	lastSun	2:00	0	S
20 | Rule	SystemV	1975	only	-	Feb	23	2:00	1:00	D
21 | Rule	SystemV	1975	only	-	Oct	lastSun	2:00	0	S
22 | Rule	SystemV	1976	max	-	Apr	lastSun	2:00	1:00	D
23 | Rule	SystemV	1976	max	-	Oct	lastSun	2:00	0	S
24 | 
25 | # Zone	NAME		GMTOFF	RULES/SAVE	FORMAT	[UNTIL]
26 | ## Zone	SystemV/AST4ADT	-4:00	SystemV		A%sT
27 | ## Zone	SystemV/EST5EDT	-5:00	SystemV		E%sT
28 | ## Zone	SystemV/CST6CDT	-6:00	SystemV		C%sT
29 | ## Zone	SystemV/MST7MDT	-7:00	SystemV		M%sT
30 | ## Zone	SystemV/PST8PDT	-8:00	SystemV		P%sT
31 | ## Zone	SystemV/YST9YDT	-9:00	SystemV		Y%sT
32 | ## Zone	SystemV/AST4	-4:00	-		AST
33 | ## Zone	SystemV/EST5	-5:00	-		EST
34 | ## Zone	SystemV/CST6	-6:00	-		CST
35 | ## Zone	SystemV/MST7	-7:00	-		MST
36 | ## Zone	SystemV/PST8	-8:00	-		PST
37 | ## Zone	SystemV/YST9	-9:00	-		YST
38 | ## Zone	SystemV/HST10	-10:00	-		HST
39 | 


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/polaris/polaris.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Polaris skin
 2 | ----------------------------------- */
 3 | .icheckbox_polaris,
 4 | .iradio_polaris {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 29px;
11 |     height: 29px;
12 |     background: url(polaris.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_polaris {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_polaris.hover {
21 |         background-position: -31px 0;
22 |     }
23 |     .icheckbox_polaris.checked {
24 |         background-position: -62px 0;
25 |     }
26 |     .icheckbox_polaris.disabled {
27 |         background-position: -93px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_polaris.checked.disabled {
31 |         background-position: -124px 0;
32 |     }
33 | 
34 | .iradio_polaris {
35 |     background-position: -155px 0;
36 | }
37 |     .iradio_polaris.hover {
38 |         background-position: -186px 0;
39 |     }
40 |     .iradio_polaris.checked {
41 |         background-position: -217px 0;
42 |     }
43 |     .iradio_polaris.disabled {
44 |         background-position: -248px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_polaris.checked.disabled {
48 |         background-position: -279px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_polaris,
54 |     .iradio_polaris {
55 |         background-image: url(polaris@2x.png);
56 |         -webkit-background-size: 310px 31px;
57 |         background-size: 310px 31px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/typebase.css:
--------------------------------------------------------------------------------
 1 | /*! Typebase.less v0.1.0 | MIT License */
 2 | /* Setup */
 3 | html {
 4 |   /* Change default typefaces here */
 5 |   font-family: serif;
 6 |   font-size: 137.5%;
 7 |   -webkit-font-smoothing: antialiased;
 8 | }
 9 | /* Copy & Lists */
10 | p {
11 |   line-height: 1.5rem;
12 |   margin-top: 1.5rem;
13 |   margin-bottom: 0;
14 | }
15 | ul,
16 | ol {
17 |  /* margin-top: 1.5rem;*/
18 |   margin-bottom: 1.5rem;
19 | }
20 | ul li,
21 | ol li {
22 |   line-height: 1.5rem;
23 | }
24 | ul ul,
25 | ol ul,
26 | ul ol,
27 | ol ol {
28 |   margin-top: 0;
29 |   margin-bottom: 0;
30 | }
31 | blockquote {
32 |   line-height: 1.5rem;
33 |   margin-top: 1.5rem;
34 |   margin-bottom: 1.5rem;
35 | }
36 | /* Headings */
37 | h1,
38 | h2,
39 | h3,
40 | h4,
41 | h5,
42 | h6 {
43 |   /* Change heading typefaces here */
44 |   font-family: sans-serif;
45 |   margin-top: 1.5rem;
46 |   margin-bottom: 0;
47 |   line-height: 1.5rem;
48 | }
49 | h1 {
50 |   font-size: 4.242rem;
51 |   line-height: 4.5rem;
52 |   margin-top: 3rem;
53 | }
54 | h2 {
55 |   font-size: 2.828rem;
56 |   line-height: 3rem;
57 |   margin-top: 3rem;
58 | }
59 | h3 {
60 |   font-size: 1.414rem;
61 | }
62 | h4 {
63 |   font-size: 0.707rem;
64 | }
65 | h5 {
66 |   font-size: 0.4713333333333333rem;
67 | }
68 | h6 {
69 |   font-size: 0.3535rem;
70 | }
71 | /* Tables */
72 | table {
73 |   margin-top: 1.5rem;
74 |   border-spacing: 0px;
75 |   border-collapse: collapse;
76 | }
77 | table td,
78 | table th {
79 |   padding: 0;
80 |   line-height: 33px;
81 | }
82 | /* Code blocks */
83 | code {
84 |   vertical-align: bottom;
85 | }
86 | /* Leading paragraph text */
87 | .lead {
88 |   font-size: 1.414rem;
89 | }
90 | /* Hug the block above you */
91 | .hug {
92 |   margin-top: 0;
93 | }
94 | 


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/minimal.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, black
 2 | ----------------------------------- */
 3 | .icheckbox_minimal,
 4 | .iradio_minimal {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(minimal.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal,
54 |     .iradio_minimal {
55 |         background-image: url(minimal@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/red.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, red
 2 | ----------------------------------- */
 3 | .icheckbox_square-red,
 4 | .iradio_square-red {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(red.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-red {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-red.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-red.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-red.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-red.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-red {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-red.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-red.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-red.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-red.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-red,
54 |     .iradio_square-red {
55 |         background-image: url(red@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/shared/jquery-ui/jquery-ui.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.0 - 2013-01-26
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.core.css, jquery.ui.resizable.css
4 | * Copyright (c) 2013 jQuery Foundation and other contributors Licensed MIT */
5 | 
6 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/red.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, red
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-red,
 4 | .iradio_minimal-red {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(red.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-red {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-red.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-red.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-red.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-red.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-red {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-red.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-red.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-red.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-red.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-red,
54 |     .iradio_minimal-red {
55 |         background-image: url(red@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/aero.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, aero
 2 | ----------------------------------- */
 3 | .icheckbox_square-aero,
 4 | .iradio_square-aero {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(aero.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-aero {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-aero.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-aero.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-aero.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-aero.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-aero {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-aero.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-aero.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-aero.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-aero.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-aero,
54 |     .iradio_square-aero {
55 |         background-image: url(aero@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/blue.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, blue
 2 | ----------------------------------- */
 3 | .icheckbox_square-blue,
 4 | .iradio_square-blue {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(blue.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-blue {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-blue.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-blue.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-blue.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-blue.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-blue {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-blue.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-blue.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-blue.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-blue.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-blue,
54 |     .iradio_square-blue {
55 |         background-image: url(blue@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/grey.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, grey
 2 | ----------------------------------- */
 3 | .icheckbox_square-grey,
 4 | .iradio_square-grey {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(grey.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-grey {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-grey.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-grey.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-grey.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-grey.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-grey {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-grey.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-grey.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-grey.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-grey.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-grey,
54 |     .iradio_square-grey {
55 |         background-image: url(grey@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/pink.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, pink
 2 | ----------------------------------- */
 3 | .icheckbox_square-pink,
 4 | .iradio_square-pink {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(pink.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-pink {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-pink.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-pink.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-pink.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-pink.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-pink {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-pink.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-pink.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-pink.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-pink.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-pink,
54 |     .iradio_square-pink {
55 |         background-image: url(pink@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/aero.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, aero
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-aero,
 4 | .iradio_minimal-aero {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(aero.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-aero {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-aero.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-aero.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-aero.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-aero.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-aero {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-aero.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-aero.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-aero.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-aero.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-aero,
54 |     .iradio_minimal-aero {
55 |         background-image: url(aero@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/blue.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, blue
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-blue,
 4 | .iradio_minimal-blue {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(blue.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-blue {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-blue.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-blue.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-blue.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-blue.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-blue {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-blue.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-blue.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-blue.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-blue.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-blue,
54 |     .iradio_minimal-blue {
55 |         background-image: url(blue@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/grey.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, grey
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-grey,
 4 | .iradio_minimal-grey {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(grey.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-grey {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-grey.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-grey.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-grey.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-grey.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-grey {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-grey.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-grey.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-grey.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-grey.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-grey,
54 |     .iradio_minimal-grey {
55 |         background-image: url(grey@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/pink.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, pink
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-pink,
 4 | .iradio_minimal-pink {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(pink.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-pink {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-pink.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-pink.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-pink.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-pink.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-pink {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-pink.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-pink.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-pink.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-pink.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-pink,
54 |     .iradio_minimal-pink {
55 |         background-image: url(pink@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/green.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, green
 2 | ----------------------------------- */
 3 | .icheckbox_square-green,
 4 | .iradio_square-green {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(green.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-green {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-green.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-green.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-green.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-green.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-green {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-green.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-green.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-green.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-green.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-green,
54 |     .iradio_square-green {
55 |         background-image: url(green@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/green.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, green
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-green,
 4 | .iradio_minimal-green {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(green.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-green {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-green.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-green.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-green.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-green.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-green {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-green.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-green.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-green.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-green.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-green,
54 |     .iradio_minimal-green {
55 |         background-image: url(green@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/orange.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, orange
 2 | ----------------------------------- */
 3 | .icheckbox_square-orange,
 4 | .iradio_square-orange {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(orange.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-orange {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-orange.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-orange.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-orange.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-orange.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-orange {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-orange.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-orange.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-orange.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-orange.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-orange,
54 |     .iradio_square-orange {
55 |         background-image: url(orange@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/purple.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, purple
 2 | ----------------------------------- */
 3 | .icheckbox_square-purple,
 4 | .iradio_square-purple {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(purple.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-purple {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-purple.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-purple.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-purple.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-purple.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-purple {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-purple.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-purple.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-purple.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-purple.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-purple,
54 |     .iradio_square-purple {
55 |         background-image: url(purple@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/yellow.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, yellow
 2 | ----------------------------------- */
 3 | .icheckbox_square-yellow,
 4 | .iradio_square-yellow {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(yellow.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-yellow {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-yellow.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-yellow.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-yellow.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-yellow.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-yellow {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-yellow.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-yellow.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-yellow.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-yellow.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-yellow,
54 |     .iradio_square-yellow {
55 |         background-image: url(yellow@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/orange.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, orange
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-orange,
 4 | .iradio_minimal-orange {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(orange.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-orange {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-orange.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-orange.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-orange.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-orange.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-orange {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-orange.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-orange.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-orange.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-orange.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-orange,
54 |     .iradio_minimal-orange {
55 |         background-image: url(orange@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/purple.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, purple
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-purple,
 4 | .iradio_minimal-purple {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(purple.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-purple {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-purple.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-purple.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-purple.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-purple.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-purple {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-purple.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-purple.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-purple.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-purple.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-purple,
54 |     .iradio_minimal-purple {
55 |         background-image: url(purple@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/yellow.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, yellow
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-yellow,
 4 | .iradio_minimal-yellow {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(yellow.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-yellow {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-yellow.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-yellow.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-yellow.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-yellow.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-yellow {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-yellow.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-yellow.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-yellow.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-yellow.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-yellow,
54 |     .iradio_minimal-yellow {
55 |         background-image: url(yellow@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/all.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin skins
 2 | ----------------------------------- */
 3 | @import url("minimal/_all.css");
 4 | /*
 5 | @import url("minimal/minimal.css");
 6 | @import url("minimal/red.css");
 7 | @import url("minimal/green.css");
 8 | @import url("minimal/blue.css");
 9 | @import url("minimal/aero.css");
10 | @import url("minimal/grey.css");
11 | @import url("minimal/orange.css");
12 | @import url("minimal/yellow.css");
13 | @import url("minimal/pink.css");
14 | @import url("minimal/purple.css");
15 | */
16 | 
17 | @import url("square/_all.css");
18 | /*
19 | @import url("square/square.css");
20 | @import url("square/red.css");
21 | @import url("square/green.css");
22 | @import url("square/blue.css");
23 | @import url("square/aero.css");
24 | @import url("square/grey.css");
25 | @import url("square/orange.css");
26 | @import url("square/yellow.css");
27 | @import url("square/pink.css");
28 | @import url("square/purple.css");
29 | */
30 | 
31 | @import url("flat/_all.css");
32 | /*
33 | @import url("flat/flat.css");
34 | @import url("flat/red.css");
35 | @import url("flat/green.css");
36 | @import url("flat/blue.css");
37 | @import url("flat/aero.css");
38 | @import url("flat/grey.css");
39 | @import url("flat/orange.css");
40 | @import url("flat/yellow.css");
41 | @import url("flat/pink.css");
42 | @import url("flat/purple.css");
43 | */
44 | 
45 | @import url("line/_all.css");
46 | /*
47 | @import url("line/line.css");
48 | @import url("line/red.css");
49 | @import url("line/green.css");
50 | @import url("line/blue.css");
51 | @import url("line/aero.css");
52 | @import url("line/grey.css");
53 | @import url("line/orange.css");
54 | @import url("line/yellow.css");
55 | @import url("line/pink.css");
56 | @import url("line/purple.css");
57 | */
58 | 
59 | @import url("polaris/polaris.css");
60 | 
61 | @import url("futurico/futurico.css");


--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/categories/index.html:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 	
 5 | 	Flot Examples: Categories
 6 | 	
 7 | 	
 8 | 	
 9 | 	
10 | 	
11 | 	
37 | 
38 | 
39 | 
40 | 	
43 | 
44 | 	
45 | 46 |
47 |
48 |
49 | 50 |

With the categories plugin you can plot categories/textual data easily.

51 | 52 |
53 | 54 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/jquery.flot.threshold.min.js: -------------------------------------------------------------------------------- 1 | /* Javascript plotting library for jQuery, version 0.8.3. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | */ 7 | (function($){var options={series:{threshold:null}};function init(plot){function thresholdData(plot,s,datapoints,below,color){var ps=datapoints.pointsize,i,x,y,p,prevp,thresholded=$.extend({},s);thresholded.datapoints={points:[],pointsize:ps,format:datapoints.format};thresholded.label=null;thresholded.color=color;thresholded.threshold=null;thresholded.originSeries=s;thresholded.data=[];var origpoints=datapoints.points,addCrossingPoints=s.lines.show;var threspoints=[];var newpoints=[];var m;for(i=0;i0&&origpoints[i-ps]!=null){var interx=x+(below-y)*(x-origpoints[i-ps])/(y-origpoints[i-ps+1]);prevp.push(interx);prevp.push(below);for(m=2;m0){var origIndex=$.inArray(s,plot.getData());plot.getData().splice(origIndex+1,0,thresholded)}}function processThresholds(plot,s,datapoints){if(!s.threshold)return;if(s.threshold instanceof Array){s.threshold.sort(function(a,b){return a.below-b.below});$(s.threshold).each(function(i,th){thresholdData(plot,s,datapoints,th.below,th.color)})}else{thresholdData(plot,s,datapoints,s.threshold.below,s.threshold.color)}}plot.hooks.processDatapoints.push(processThresholds)}$.plot.plugins.push({init:init,options:options,name:"threshold",version:"1.2"})})(jQuery); -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/basic-usage/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Flot Examples: Basic Usage 6 | 7 | 8 | 9 | 10 | 33 | 34 | 35 | 36 | 39 | 40 |
41 | 42 |
43 |
44 |
45 | 46 |

You don't have to do much to get an attractive plot. Create a placeholder, make sure it has dimensions (so Flot knows at what size to draw the plot), then call the plot function with your data.

47 | 48 |

The axes are automatically scaled.

49 | 50 |
51 | 52 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/jquery.flot.crosshair.min.js: -------------------------------------------------------------------------------- 1 | /* Javascript plotting library for jQuery, version 0.8.3. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | */ 7 | (function($){var options={crosshair:{mode:null,color:"rgba(170, 0, 0, 0.80)",lineWidth:1}};function init(plot){var crosshair={x:-1,y:-1,locked:false};plot.setCrosshair=function setCrosshair(pos){if(!pos)crosshair.x=-1;else{var o=plot.p2c(pos);crosshair.x=Math.max(0,Math.min(o.left,plot.width()));crosshair.y=Math.max(0,Math.min(o.top,plot.height()))}plot.triggerRedrawOverlay()};plot.clearCrosshair=plot.setCrosshair;plot.lockCrosshair=function lockCrosshair(pos){if(pos)plot.setCrosshair(pos);crosshair.locked=true};plot.unlockCrosshair=function unlockCrosshair(){crosshair.locked=false};function onMouseOut(e){if(crosshair.locked)return;if(crosshair.x!=-1){crosshair.x=-1;plot.triggerRedrawOverlay()}}function onMouseMove(e){if(crosshair.locked)return;if(plot.getSelection&&plot.getSelection()){crosshair.x=-1;return}var offset=plot.offset();crosshair.x=Math.max(0,Math.min(e.pageX-offset.left,plot.width()));crosshair.y=Math.max(0,Math.min(e.pageY-offset.top,plot.height()));plot.triggerRedrawOverlay()}plot.hooks.bindEvents.push(function(plot,eventHolder){if(!plot.getOptions().crosshair.mode)return;eventHolder.mouseout(onMouseOut);eventHolder.mousemove(onMouseMove)});plot.hooks.drawOverlay.push(function(plot,ctx){var c=plot.getOptions().crosshair;if(!c.mode)return;var plotOffset=plot.getPlotOffset();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);if(crosshair.x!=-1){var adj=plot.getOptions().crosshair.lineWidth%2?.5:0;ctx.strokeStyle=c.color;ctx.lineWidth=c.lineWidth;ctx.lineJoin="round";ctx.beginPath();if(c.mode.indexOf("x")!=-1){var drawX=Math.floor(crosshair.x)+adj;ctx.moveTo(drawX,0);ctx.lineTo(drawX,plot.height())}if(c.mode.indexOf("y")!=-1){var drawY=Math.floor(crosshair.y)+adj;ctx.moveTo(0,drawY);ctx.lineTo(plot.width(),drawY)}ctx.stroke()}ctx.restore()});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mouseout",onMouseOut);eventHolder.unbind("mousemove",onMouseMove)})}$.plot.plugins.push({init:init,options:options,name:"crosshair",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/examples.css: -------------------------------------------------------------------------------- 1 | * { padding: 0; margin: 0; vertical-align: top; } 2 | 3 | body { 4 | background: url(background.png) repeat-x; 5 | font: 18px/1.5em "proxima-nova", Helvetica, Arial, sans-serif; 6 | } 7 | 8 | a { color: #069; } 9 | a:hover { color: #28b; } 10 | 11 | h2 { 12 | margin-top: 15px; 13 | font: normal 32px "omnes-pro", Helvetica, Arial, sans-serif; 14 | } 15 | 16 | h3 { 17 | margin-left: 30px; 18 | font: normal 26px "omnes-pro", Helvetica, Arial, sans-serif; 19 | color: #666; 20 | } 21 | 22 | p { 23 | margin-top: 10px; 24 | } 25 | 26 | button { 27 | font-size: 18px; 28 | padding: 1px 7px; 29 | } 30 | 31 | input { 32 | font-size: 18px; 33 | } 34 | 35 | input[type=checkbox] { 36 | margin: 7px; 37 | } 38 | 39 | #header { 40 | position: relative; 41 | width: 900px; 42 | margin: auto; 43 | } 44 | 45 | #header h2 { 46 | margin-left: 10px; 47 | vertical-align: middle; 48 | font-size: 42px; 49 | font-weight: bold; 50 | text-decoration: none; 51 | color: #000; 52 | } 53 | 54 | #content { 55 | width: 880px; 56 | margin: 0 auto; 57 | padding: 10px; 58 | } 59 | 60 | #footer { 61 | margin-top: 25px; 62 | margin-bottom: 10px; 63 | text-align: center; 64 | font-size: 12px; 65 | color: #999; 66 | } 67 | 68 | .demo-container { 69 | box-sizing: border-box; 70 | width: 850px; 71 | height: 450px; 72 | padding: 20px 15px 15px 15px; 73 | margin: 15px auto 30px auto; 74 | border: 1px solid #ddd; 75 | background: #fff; 76 | background: linear-gradient(#f6f6f6 0, #fff 50px); 77 | background: -o-linear-gradient(#f6f6f6 0, #fff 50px); 78 | background: -ms-linear-gradient(#f6f6f6 0, #fff 50px); 79 | background: -moz-linear-gradient(#f6f6f6 0, #fff 50px); 80 | background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px); 81 | box-shadow: 0 3px 10px rgba(0,0,0,0.15); 82 | -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1); 83 | -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1); 84 | -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1); 85 | -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1); 86 | } 87 | 88 | .demo-placeholder { 89 | width: 100%; 90 | height: 100%; 91 | font-size: 14px; 92 | line-height: 1.2em; 93 | } 94 | 95 | .legend table { 96 | border-spacing: 5px; 97 | } -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Miminium 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 |
33 | 34 | 35 |
36 | 43 |
44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Miminium 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 |
33 | 34 | 35 |
36 | 43 |
44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/jquery.flot.fillbetween.min.js: -------------------------------------------------------------------------------- 1 | /* Javascript plotting library for jQuery, version 0.8.3. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | */ 7 | (function($){var options={series:{fillBetween:null}};function init(plot){function findBottomSeries(s,allseries){var i;for(i=0;i=allseries.length){return null}return allseries[s.fillBetween]}return null}function computeFillBottoms(plot,s,datapoints){if(s.fillBetween==null){return}var other=findBottomSeries(s,plot.getData());if(!other){return}var ps=datapoints.pointsize,points=datapoints.points,otherps=other.datapoints.pointsize,otherpoints=other.datapoints.points,newpoints=[],px,py,intery,qx,qy,bottom,withlines=s.lines.show,withbottom=ps>2&&datapoints.format[2].y,withsteps=withlines&&s.lines.steps,fromgap=true,i=0,j=0,l,m;while(true){if(i>=points.length){break}l=newpoints.length;if(points[i]==null){for(m=0;m=otherpoints.length){if(!withlines){for(m=0;mqx){if(withlines&&i>0&&points[i-ps]!=null){intery=py+(points[i-ps+1]-py)*(qx-px)/(points[i-ps]-px);newpoints.push(qx);newpoints.push(intery);for(m=2;m0&&otherpoints[j-otherps]!=null){bottom=qy+(otherpoints[j-otherps+1]-qy)*(px-qx)/(otherpoints[j-otherps]-qx)}i+=ps}fromgap=false;if(l!==newpoints.length&&withbottom){newpoints[l+2]=bottom}}if(withsteps&&l!==newpoints.length&&l>0&&newpoints[l]!==null&&newpoints[l]!==newpoints[l-ps]&&newpoints[l+1]!==newpoints[l-ps+1]){for(m=0;m=0;t--){if(i[t]==this){i.splice(t,1);break}}e.removeData(m);if(!i.length){if(r){cancelAnimationFrame(a)}else{clearTimeout(a)}a=null}},add:function(e){if(!n[f]&&this[s]){return false}var i;function a(e,n,a){var r=$(this),s=r.data(m)||{};s.w=n!==t?n:r.width();s.h=a!==t?a:r.height();i.apply(this,arguments)}if($.isFunction(e)){i=e;return a}else{i=e.handler;e.handler=a}}};function h(t){if(r===true){r=t||1}for(var s=i.length-1;s>=0;s--){var l=$(i[s]);if(l[0]==e||l.is(":visible")){var f=l.width(),c=l.height(),d=l.data(m);if(d&&(f!==d.w||c!==d.h)){l.trigger(u,[d.w=f,d.h=c]);r=t||true}}else{d=l.data(m);d.w=0;d.h=0}}if(a!==null){if(r&&(t==null||t-r<1e3)){a=e.requestAnimationFrame(h)}else{a=setTimeout(h,n[o]);r=false}}}if(!e.requestAnimationFrame){e.requestAnimationFrame=function(){return e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t,i){return e.setTimeout(function(){t((new Date).getTime())},n[l])}}()}if(!e.cancelAnimationFrame){e.cancelAnimationFrame=function(){return e.webkitCancelRequestAnimationFrame||e.mozCancelRequestAnimationFrame||e.oCancelRequestAnimationFrame||e.msCancelRequestAnimationFrame||clearTimeout}()}})(jQuery,this);(function($){var options={};function init(plot){function onResize(){var placeholder=plot.getPlaceholder();if(placeholder.width()==0||placeholder.height()==0)return;plot.resize();plot.setupGrid();plot.draw()}function bindEvents(plot,eventHolder){plot.getPlaceholder().resize(onResize)}function shutdown(plot,eventHolder){plot.getPlaceholder().unbind("resize",onResize)}plot.hooks.bindEvents.push(bindEvents);plot.hooks.shutdown.push(shutdown)}$.plot.plugins.push({init:init,options:options,name:"resize",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /asset/js/plugins/datatables.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables Bootstrap 3 integration 3 | ©2011-2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(b){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(a){return b(a,window,document)}):"object"===typeof exports?module.exports=function(a,e){a||(a=window);if(!e||!e.fn.dataTable)e=require("datatables.net")(a,e).$;return b(e,a,a.document)}:b(jQuery,window,document)})(function(b,a,e){var d=b.fn.dataTable;b.extend(!0,d.defaults,{dom:"<'row'<'col-sm-6'l><'col-sm-6'f>><'row'<'col-sm-12'tr>><'row'<'col-sm-5'i><'col-sm-7'p>>",renderer:"bootstrap"});b.extend(d.ext.classes, 6 | {sWrapper:"dataTables_wrapper form-inline dt-bootstrap",sFilterInput:"form-control input-sm",sLengthSelect:"form-control input-sm",sProcessing:"dataTables_processing panel panel-default"});d.ext.renderer.pageButton.bootstrap=function(a,h,r,m,j,n){var o=new d.Api(a),s=a.oClasses,k=a.oLanguage.oPaginate,t=a.oLanguage.oAria.paginate||{},f,g,p=0,q=function(d,e){var l,h,i,c,m=function(a){a.preventDefault();!b(a.currentTarget).hasClass("disabled")&&o.page()!=a.data.action&&o.page(a.data.action).draw("page")}; 7 | l=0;for(h=e.length;l",{"class":s.sPageButton+" "+g,id:0===r&&"string"===typeof c?a.sTableId+"_"+c:null}).append(b("",{href:"#", 8 | "aria-controls":a.sTableId,"aria-label":t[c],"data-dt-idx":p,tabindex:a.iTabIndex}).html(f)).appendTo(d),a.oApi._fnBindAction(i,{action:c},m),p++)}},i;try{i=b(h).find(e.activeElement).data("dt-idx")}catch(u){}q(b(h).empty().html('