├── .gitignore ├── www ├── css │ └── style.css ├── page2.html ├── page3.html ├── navigator.html ├── components │ ├── monaca-onsenui │ │ ├── js │ │ │ └── angular │ │ │ │ ├── index.js │ │ │ │ ├── bower.json │ │ │ │ ├── angular.min.js.gzip │ │ │ │ ├── angular-csp.css │ │ │ │ └── package.json │ │ ├── css │ │ │ ├── ionicons │ │ │ │ ├── fonts │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ └── ionicons.woff │ │ │ │ └── css │ │ │ │ │ └── ionicons.min.css │ │ │ ├── font_awesome │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ └── css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ └── font-awesome.css │ │ │ └── onsenui.css │ │ ├── .bower.json │ │ └── bower.json │ ├── monaca-cordova-loader │ │ ├── bower.json │ │ ├── cordova-loader.js │ │ └── .bower.json │ ├── monaca-core-utils │ │ ├── bower.json │ │ └── .bower.json │ └── loader.css ├── page1.html ├── new_page.html ├── new_page2.html ├── page4.html ├── README.md └── index.html ├── res ├── ios │ ├── icon │ │ ├── icon.png │ │ ├── icon-40.png │ │ ├── icon-50.png │ │ ├── icon-60.png │ │ ├── icon-72.png │ │ ├── icon-76.png │ │ ├── icon@2x.png │ │ ├── icon-40@2x.png │ │ ├── icon-50@2x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72@2x.png │ │ ├── icon-76@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ └── icon-83.5@2x~ipad.png │ └── screen │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default~iphone.png │ │ ├── Default@2x~iphone.png │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ └── Default-Landscape@2x~ipad.png ├── android │ ├── icon │ │ ├── hdpi.png │ │ ├── ldpi.png │ │ ├── mdpi.png │ │ ├── xhdpi.png │ │ ├── xxhdpi.png │ │ └── xxxhdpi.png │ └── screen │ │ ├── splash-port-hdpi.9.png │ │ ├── splash-port-ldpi.9.png │ │ ├── splash-port-mdpi.9.png │ │ ├── splash-port-xhdpi.9.png │ │ ├── splash-port-xxhdpi.9.png │ │ └── splash-port-xxxhdpi.9.png └── winrt │ ├── icon │ ├── app_logo_winrt.png │ ├── package_logo_winrt.png │ ├── app_small_logo_winrt.png │ └── app_tile_wide_logo_winrt.png │ └── screen │ └── app_splash_screen_winrt.png ├── platforms ├── chrome │ ├── icon.png │ ├── background.js │ └── manifest.json ├── winrt │ ├── app_logo_winrt.png │ ├── package_logo_winrt.png │ ├── app_small_logo_winrt.png │ ├── app_splash_screen_winrt.png │ └── app_tile_wide_logo_winrt.png ├── android │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable-xxxhdpi │ │ │ └── icon.png │ └── AndroidManifest.xml └── ios │ ├── MonacaApp │ └── Resources │ │ ├── icons │ │ ├── icon.png │ │ ├── icon-40.png │ │ ├── icon-50.png │ │ ├── icon-60.png │ │ ├── icon-72.png │ │ ├── icon-76.png │ │ ├── icon@2x.png │ │ ├── icon-40@2x.png │ │ ├── icon-50@2x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72@2x.png │ │ ├── icon-76@2x.png │ │ ├── icon-small.png │ │ └── icon-small@2x.png │ │ └── splash │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default~iphone.png │ │ ├── Default@2x~iphone.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Landscape@2x~ipad.png │ │ └── Default-Portrait@2x~ipad.png │ └── MonacaApp-Info.plist ├── .monaca └── project_info.json └── config.xml /.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /www/css/style.css: -------------------------------------------------------------------------------- 1 | /**/ 2 | 3 | -------------------------------------------------------------------------------- /www/page2.html: -------------------------------------------------------------------------------- 1 | 2 |
Page2
3 |
4 | -------------------------------------------------------------------------------- /www/page3.html: -------------------------------------------------------------------------------- 1 | 2 |
Page3
3 |
4 | -------------------------------------------------------------------------------- /www/navigator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /www/components/monaca-onsenui/js/angular/index.js: -------------------------------------------------------------------------------- 1 | require('./angular'); 2 | module.exports = angular; 3 | -------------------------------------------------------------------------------- /res/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon.png -------------------------------------------------------------------------------- /platforms/chrome/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/chrome/icon.png -------------------------------------------------------------------------------- /res/android/icon/hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/icon/hdpi.png -------------------------------------------------------------------------------- /res/android/icon/ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/icon/ldpi.png -------------------------------------------------------------------------------- /res/android/icon/mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/icon/mdpi.png -------------------------------------------------------------------------------- /res/android/icon/xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/icon/xhdpi.png -------------------------------------------------------------------------------- /res/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-40.png -------------------------------------------------------------------------------- /res/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-50.png -------------------------------------------------------------------------------- /res/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-60.png -------------------------------------------------------------------------------- /res/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-72.png -------------------------------------------------------------------------------- /res/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-76.png -------------------------------------------------------------------------------- /res/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /res/android/icon/xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/icon/xxhdpi.png -------------------------------------------------------------------------------- /res/android/icon/xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/icon/xxxhdpi.png -------------------------------------------------------------------------------- /res/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /res/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /res/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /res/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /res/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /res/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /res/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-small.png -------------------------------------------------------------------------------- /res/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /res/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /res/ios/screen/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-667h.png -------------------------------------------------------------------------------- /res/ios/screen/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-736h.png -------------------------------------------------------------------------------- /res/ios/screen/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default~iphone.png -------------------------------------------------------------------------------- /res/winrt/icon/app_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/winrt/icon/app_logo_winrt.png -------------------------------------------------------------------------------- /platforms/winrt/app_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/winrt/app_logo_winrt.png -------------------------------------------------------------------------------- /res/ios/icon/icon-83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/icon/icon-83.5@2x~ipad.png -------------------------------------------------------------------------------- /res/ios/screen/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default@2x~iphone.png -------------------------------------------------------------------------------- /platforms/winrt/package_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/winrt/package_logo_winrt.png -------------------------------------------------------------------------------- /res/winrt/icon/package_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/winrt/icon/package_logo_winrt.png -------------------------------------------------------------------------------- /platforms/winrt/app_small_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/winrt/app_small_logo_winrt.png -------------------------------------------------------------------------------- /res/android/screen/splash-port-hdpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/screen/splash-port-hdpi.9.png -------------------------------------------------------------------------------- /res/android/screen/splash-port-ldpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/screen/splash-port-ldpi.9.png -------------------------------------------------------------------------------- /res/android/screen/splash-port-mdpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/screen/splash-port-mdpi.9.png -------------------------------------------------------------------------------- /res/ios/screen/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /res/ios/screen/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-Landscape-736h.png -------------------------------------------------------------------------------- /res/ios/screen/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /res/ios/screen/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /res/winrt/icon/app_small_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/winrt/icon/app_small_logo_winrt.png -------------------------------------------------------------------------------- /platforms/winrt/app_splash_screen_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/winrt/app_splash_screen_winrt.png -------------------------------------------------------------------------------- /res/android/screen/splash-port-xhdpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/screen/splash-port-xhdpi.9.png -------------------------------------------------------------------------------- /res/android/screen/splash-port-xxhdpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/screen/splash-port-xxhdpi.9.png -------------------------------------------------------------------------------- /res/ios/screen/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /res/winrt/icon/app_tile_wide_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/winrt/icon/app_tile_wide_logo_winrt.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/android/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /platforms/winrt/app_tile_wide_logo_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/winrt/app_tile_wide_logo_winrt.png -------------------------------------------------------------------------------- /res/android/screen/splash-port-xxxhdpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/android/screen/splash-port-xxxhdpi.9.png -------------------------------------------------------------------------------- /res/ios/screen/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/ios/screen/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /res/winrt/screen/app_splash_screen_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/res/winrt/screen/app_splash_screen_winrt.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/android/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-40.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-50.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-60.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-72.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-76.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon@2x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-40@2x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-50@2x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-60@2x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-60@3x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-72@2x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-76@2x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-small.png -------------------------------------------------------------------------------- /www/components/monaca-onsenui/js/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.3", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/icons/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/icons/icon-small@2x.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-667h.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-736h.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default~iphone.png -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/css/ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/css/ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /www/components/monaca-onsenui/js/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/js/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/css/ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/font_awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/css/font_awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /platforms/ios/MonacaApp/Resources/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/platforms/ios/MonacaApp/Resources/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/font_awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/css/font_awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/font_awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/css/font_awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/font_awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigeya/cins2016-monaca-onsenui-v1-tabber-test-1/master/www/components/monaca-onsenui/css/font_awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /www/page1.html: -------------------------------------------------------------------------------- 1 | 2 |
Page1
3 |
4 | 5 |
6 |
7 | 9 | Push New Page 10 | 11 |
12 | -------------------------------------------------------------------------------- /www/new_page.html: -------------------------------------------------------------------------------- 1 | 2 |
Back
3 |
New Page
4 |
5 | 6 |
7 |
8 | 9 | Pop Page 10 | 11 |
12 | -------------------------------------------------------------------------------- /platforms/chrome/background.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Create a new Window for the app 3 | */ 4 | chrome.app.runtime.onLaunched.addListener(function() { 5 | chrome.app.window.create('www/index.html', { 6 | bounds: { 7 | width: 480, 8 | height: 640, 9 | left: 500, 10 | top: 200 11 | } 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /www/new_page2.html: -------------------------------------------------------------------------------- 1 | 2 |
Back
3 |
Navigated Page
4 |
5 | 6 |
7 |
8 | 9 | Pop Page 10 | 11 |
12 | -------------------------------------------------------------------------------- /.monaca/project_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "mobi.monaca.plugins.Monaca" 4 | ], 5 | "framework_version": "3.5", 6 | "xcode_version": "7", 7 | "cordova_version": "6.2", 8 | "plugin_settings": [], 9 | "external_plugins": [ 10 | "cordova-plugin-whitelist@1.2.2", 11 | "cordova-plugin-splashscreen@3.2.2", 12 | "cordova-custom-config@2.0.3" 13 | ] 14 | } -------------------------------------------------------------------------------- /www/page4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
Lazy Repeat
5 |
6 | 7 | 8 | 9 | {{item.name}} 10 | 11 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /www/components/monaca-onsenui/js/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide:not(.ng-hide-animate) { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-shim { 16 | visibility:hidden; 17 | } 18 | 19 | .ng-anchor { 20 | position:absolute; 21 | } 22 | -------------------------------------------------------------------------------- /www/components/monaca-cordova-loader/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "monaca-cordova-loader", 3 | "version": "1.0.0", 4 | "description": "Load cordova.js for Monaca apps.", 5 | "main": "cordova-loader.js", 6 | "monaca" : { 7 | "main": [ 8 | "cordova-loader.js" 9 | ] 10 | }, 11 | "keywords": [ 12 | "monaca" 13 | ], 14 | "authors": [ 15 | "Monaca" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com:monaca/monaca-component-cordova-loader.git" 20 | }, 21 | "homepage": "http://monaca.mobi/", 22 | "ignore": [ 23 | "**/.*", 24 | "node_modules", 25 | "test", 26 | "README.md" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /www/components/monaca-core-utils/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "monaca-core-utils", 3 | "version": "2.0.4", 4 | "description": "Monaca core APIs necessary for running Monaca apps.", 5 | "main": "monaca-core-utils.js", 6 | "monaca" : { 7 | "main": [ 8 | "monaca-core-utils.js" 9 | ] 10 | }, 11 | "keywords": [ 12 | "monaca" 13 | ], 14 | "authors": [ 15 | "Monaca" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com:monaca/monaca-component-monaca-core-utils.git" 20 | }, 21 | "homepage": "http://monaca.mobi/", 22 | "ignore": [ 23 | "**/.*", 24 | "node_modules", 25 | "test", 26 | "README.md" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /platforms/chrome/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "MyApp", 4 | "description": "Description of the app", 5 | "version": "0.1.0", 6 | "app": { 7 | "background": { 8 | "scripts": [ 9 | "background.js" 10 | ] 11 | } 12 | }, 13 | "icons": { 14 | "128": "icon.png" 15 | }, 16 | "permissions": [ 17 | "clipboardWrite", 18 | "clipboardRead", 19 | { 20 | "fileSystem": [ 21 | "write", 22 | "retainEntries", 23 | "directory" 24 | ] 25 | }, 26 | "unlimitedStorage" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /www/components/monaca-onsenui/js/angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.3", 4 | "description": "HTML enhanced for web apps", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/angular/angular.js.git" 12 | }, 13 | "keywords": [ 14 | "angular", 15 | "framework", 16 | "browser", 17 | "client-side" 18 | ], 19 | "author": "Angular Core Team ", 20 | "license": "MIT", 21 | "bugs": { 22 | "url": "https://github.com/angular/angular.js/issues" 23 | }, 24 | "homepage": "http://angularjs.org" 25 | } 26 | -------------------------------------------------------------------------------- /www/components/loader.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This is an auto-generated code by Monaca JS/CSS Components. 3 | * Please do not edit by hand. 4 | */ 5 | 6 | /*** ***/ 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | /*** ***/ 24 | /*** ***/ 25 | @import url("monaca-onsenui/css/onsenui.css"); 26 | /*** ***/ 27 | /*** ***/ 28 | @import url("monaca-onsenui/css/onsen-css-components-blue-basic-theme.css"); 29 | /*** ***/ 30 | /*** ***/ -------------------------------------------------------------------------------- /www/components/monaca-cordova-loader/cordova-loader.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | if ((navigator.userAgent.match(/Android/i)) || (navigator.userAgent.match(/iPhone|iPad|iPod/i))) { 3 | if (typeof location.href === "string") { 4 | var relativePath = location.href.split("/www")[1]; 5 | var paths = relativePath.split("/"); 6 | var cordovaJsUrl = ""; 7 | for (var i = 0; i < paths.length - 2; i++) { 8 | cordovaJsUrl += "../"; 9 | } 10 | document.write(""); 11 | } 12 | } else if ((navigator.userAgent.match(/MSIE\s10.0/)) && (navigator.userAgent.match(/Windows\sNT\s6.2/))) { 13 | var elm = document.createElement('script'); 14 | elm.setAttribute("src", "cordova.js"); 15 | document.getElementsByTagName("head")[0].appendChild(elm); 16 | }; 17 | })(); -------------------------------------------------------------------------------- /www/components/monaca-onsenui/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "monaca-onsenui", 3 | "version": "1.3.17", 4 | "description": "Dist version of OnsenUI for Monaca Component.", 5 | "main": "onsenui.js", 6 | "monaca" : { 7 | "main": [ 8 | "js/onsenui_all.min.js", 9 | "css/onsenui.css" 10 | ], 11 | "option": [ 12 | "css/onsen-css-components-blue-basic-theme.css", 13 | "css/onsen-css-components-blue-theme.css", 14 | "css/onsen-css-components-dark-theme.css", 15 | "css/onsen-css-components-purple-theme.css", 16 | "css/onsen-css-components-sunshine-theme.css" 17 | ] 18 | }, 19 | "keywords": [ 20 | "monaca" 21 | ], 22 | "authors": [ 23 | "Monaca" 24 | ], 25 | "repository": { 26 | "type": "git", 27 | "url": "git://github.com:monaca/monaca-component-onsenui.git" 28 | }, 29 | "homepage": "http://onsenui.io/", 30 | "ignore": [ 31 | "**/.*", 32 | "node_modules", 33 | "test", 34 | "README.md" 35 | ] 36 | } -------------------------------------------------------------------------------- /www/components/monaca-onsenui/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "monaca-onsenui", 3 | "version": "1.3.17", 4 | "description": "Dist version of OnsenUI for Monaca Component.", 5 | "main": "onsenui.js", 6 | "monaca" : { 7 | "main": [ 8 | "js/onsenui_all.min.js", 9 | "css/onsenui.css" 10 | ], 11 | "option": [ 12 | "css/onsen-css-components-blue-basic-theme.css", 13 | "css/onsen-css-components-blue-theme.css", 14 | "css/onsen-css-components-dark-theme.css", 15 | "css/onsen-css-components-purple-theme.css", 16 | "css/onsen-css-components-sunshine-theme.css" 17 | ] 18 | }, 19 | "keywords": [ 20 | "monaca" 21 | ], 22 | "authors": [ 23 | "Monaca" 24 | ], 25 | "repository": { 26 | "type": "git", 27 | "url": "git://github.com:monaca/monaca-component-onsenui.git" 28 | }, 29 | "homepage": "http://onsenui.io/", 30 | "ignore": [ 31 | "**/.*", 32 | "node_modules", 33 | "test", 34 | "README.md" 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /www/components/monaca-cordova-loader/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "monaca-cordova-loader", 3 | "version": "1.0.0", 4 | "description": "Load cordova.js for Monaca apps.", 5 | "main": "cordova-loader.js", 6 | "monaca": { 7 | "main": [ 8 | "cordova-loader.js" 9 | ] 10 | }, 11 | "keywords": [ 12 | "monaca" 13 | ], 14 | "authors": [ 15 | "Monaca" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com:monaca/monaca-component-cordova-loader.git" 20 | }, 21 | "homepage": "http://monaca.mobi/", 22 | "ignore": [ 23 | "**/.*", 24 | "node_modules", 25 | "test", 26 | "README.md" 27 | ], 28 | "_release": "1.0.0", 29 | "_resolution": { 30 | "type": "version", 31 | "tag": "1.0.0", 32 | "commit": "b023355858b19fc8c7fc8adcb7889e1c23b0f5a2" 33 | }, 34 | "_source": "git://github.com/monaca/monaca-component-cordova-loader.git", 35 | "_target": "1.0.0", 36 | "_originalSource": "monaca-cordova-loader", 37 | "_direct": true 38 | } -------------------------------------------------------------------------------- /www/components/monaca-core-utils/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "monaca-core-utils", 3 | "version": "2.0.4", 4 | "description": "Monaca core APIs necessary for running Monaca apps.", 5 | "main": "monaca-core-utils.js", 6 | "monaca": { 7 | "main": [ 8 | "monaca-core-utils.js" 9 | ] 10 | }, 11 | "keywords": [ 12 | "monaca" 13 | ], 14 | "authors": [ 15 | "Monaca" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com:monaca/monaca-component-monaca-core-utils.git" 20 | }, 21 | "homepage": "http://monaca.mobi/", 22 | "ignore": [ 23 | "**/.*", 24 | "node_modules", 25 | "test", 26 | "README.md" 27 | ], 28 | "_release": "2.0.4", 29 | "_resolution": { 30 | "type": "version", 31 | "tag": "2.0.4", 32 | "commit": "7bd0a7aaf1c750ca8525a1159e15fd2e98ae9ba7" 33 | }, 34 | "_source": "git://github.com/monaca/monaca-component-monaca-core-utils.git", 35 | "_target": "~2.0.4", 36 | "_originalSource": "monaca-core-utils", 37 | "_direct": true 38 | } -------------------------------------------------------------------------------- /platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /www/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started to Onsen UI Tab Bar 2 | 3 | This template is using Onsen UI, a HTML5 framework that is focusing on the speed and ease of use. 4 | For details, please check out [Onsen UI Website](http://onsenui.io) and [its documents](http://onsenui.io/guide/overview.html). 5 | 6 | ## For non-AngularJS Users 7 | 8 | Here are the resources that might help you: 9 | 10 | - [List of Components](http://onsenui.io/guide/components.html) 11 | - [Onsen UI Guide](http://onsenui.io/guide/overview.html) 12 | 13 | ## For AngularJS Users 14 | 15 | You need to edit `index.html` to have more tighter integration with AngularJS. More precisely, you need to add `ng-app` definition and call `angular.module()` to add `onsen` module to your app. 16 | 17 | Here is the code snippet that you can copy & paste for quicker setup. 18 | 19 | ``` 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 31 | 32 | 33 | 34 | 39 | 43 | 47 | 48 | 49 | 50 | 51 | ``` 52 | -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 31 | 32 | 33 | 34 | 39 | 43 | 47 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Onsen UI Tabbar 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | en 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /platforms/ios/MonacaApp-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | ja_JP 7 | CFBundleDisplayName 8 | ${APP_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIconFile 12 | icon.png 13 | CFBundleIcons 14 | 15 | CFBundlePrimaryIcon 16 | 17 | CFBundleIconFiles 18 | 19 | icon-40 20 | icon-small 21 | icon-60 22 | icon.png 23 | icon@2x 24 | icon-72 25 | icon-72@2x 26 | 27 | UIPrerenderedIcon 28 | 29 | 30 | 31 | CFBundleIcons~ipad 32 | 33 | CFBundlePrimaryIcon 34 | 35 | CFBundleIconFiles 36 | 37 | icon-small 38 | icon-40 39 | icon-50 40 | icon-76 41 | icon-60 42 | icon 43 | icon@2x 44 | icon-72 45 | icon-72@2x 46 | 47 | UIPrerenderedIcon 48 | 49 | 50 | 51 | CFBundleIdentifier 52 | ${APP_ID} 53 | CFBundleInfoDictionaryVersion 54 | 6.0 55 | CFBundleName 56 | ${APP_NAME} 57 | CFBundlePackageType 58 | APPL 59 | CFBundleShortVersionString 60 | ${VERSION} 61 | CFBundleSignature 62 | ???? 63 | CFBundleVersion 64 | ${VERSION} 65 | LSRequiresIPhoneOS 66 | 67 | UIStatusBarHidden 68 | 69 | UIViewControllerBasedStatusBarAppearance 70 | 71 | UISupportedInterfaceOrientations 72 | 73 | UIInterfaceOrientationPortrait 74 | UIInterfaceOrientationLandscapeLeft 75 | UIInterfaceOrientationLandscapeRight 76 | 77 | UISupportedInterfaceOrientations~ipad 78 | 79 | UIInterfaceOrientationPortrait 80 | UIInterfaceOrientationPortraitUpsideDown 81 | UIInterfaceOrientationLandscapeLeft 82 | UIInterfaceOrientationLandscapeRight 83 | 84 | 85 | NSMainNibFile 86 | 87 | NSMainNibFile~ipad 88 | 89 | UILaunchImages 90 | 91 | 92 | UILaunchImageMinimumOSVersion 93 | 8.0 94 | UILaunchImageName 95 | Default 96 | UILaunchImageOrientation 97 | Portrait 98 | UILaunchImageSize 99 | {320, 480} 100 | 101 | 102 | UILaunchImageMinimumOSVersion 103 | 8.0 104 | UILaunchImageName 105 | Default 106 | UILaunchImageOrientation 107 | Landscape 108 | UILaunchImageSize 109 | {320, 480} 110 | 111 | 112 | UILaunchImageMinimumOSVersion 113 | 8.0 114 | UILaunchImageName 115 | Default-568h 116 | UILaunchImageOrientation 117 | Portrait 118 | UILaunchImageSize 119 | {320, 568} 120 | 121 | 122 | UILaunchImageMinimumOSVersion 123 | 8.0 124 | UILaunchImageName 125 | Default-568h 126 | UILaunchImageOrientation 127 | Landscape 128 | UILaunchImageSize 129 | {320, 568} 130 | 131 | 132 | UILaunchImageMinimumOSVersion 133 | 8.0 134 | UILaunchImageName 135 | Default-667h 136 | UILaunchImageOrientation 137 | Portrait 138 | UILaunchImageSize 139 | {375, 667} 140 | 141 | 142 | UILaunchImageMinimumOSVersion 143 | 8.0 144 | UILaunchImageName 145 | Default-667h 146 | UILaunchImageOrientation 147 | Landscape 148 | UILaunchImageSize 149 | {375, 667} 150 | 151 | 152 | UILaunchImageMinimumOSVersion 153 | 8.0 154 | UILaunchImageName 155 | Default-736h 156 | UILaunchImageOrientation 157 | Portrait 158 | UILaunchImageSize 159 | {414, 736} 160 | 161 | 162 | UILaunchImageMinimumOSVersion 163 | 8.0 164 | UILaunchImageName 165 | Default-Landscape-736h 166 | UILaunchImageOrientation 167 | Landscape 168 | UILaunchImageSize 169 | {414, 736} 170 | 171 | 172 | UILaunchImageMinimumOSVersion 173 | 8.0 174 | UILaunchImageName 175 | Default-Portrait 176 | UILaunchImageOrientation 177 | Portrait 178 | UILaunchImageSize 179 | {768, 1024} 180 | 181 | 182 | UILaunchImageMinimumOSVersion 183 | 8.0 184 | UILaunchImageName 185 | Default-Landscape 186 | UILaunchImageOrientation 187 | Landscape 188 | UILaunchImageSize 189 | {768, 1024} 190 | 191 | 192 | CFBundleLocalizations 193 | 194 | en 195 | 196 | 197 | 198 | -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/font_awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"} -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/onsenui.css: -------------------------------------------------------------------------------- 1 | /*! onsenui - v1.3.17 - 2016-06-29 */ 2 | /* 3 | Copyright 2013-2015 ASIAL CORPORATION 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | 17 | */ 18 | 19 | @import url("font_awesome/css/font-awesome.min.css"); 20 | @import url("ionicons/css/ionicons.min.css"); 21 | 22 | /* cutsom elements */ 23 | ons-page, ons-navigator, 24 | ons-split-view, ons-sliding-menu, ons-tabbar, 25 | ons-gesture-detector { 26 | display: block; 27 | } 28 | 29 | ons-navigator, 30 | ons-tabbar { 31 | position: absolute; 32 | top: 0; 33 | left: 0; 34 | bottom: 0; 35 | right: 0; 36 | overflow: hidden; 37 | } 38 | 39 | ons-page, ons-navigator, ons-tabbar, ons-sliding-menu, ons-split-view { 40 | z-index: 2; 41 | } 42 | 43 | * { 44 | -webkit-touch-callout: none; 45 | -webkit-user-select: none; 46 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; 47 | } 48 | 49 | ::-webkit-scrollbar { 50 | display: none; 51 | } 52 | 53 | input, textarea { 54 | -webkit-user-select: auto; 55 | } 56 | 57 | .page, 58 | .page__content { 59 | background-color: transparent !important; 60 | background: transparent !important; 61 | } 62 | 63 | .page__status-bar-fill + .page__background + .page__content { 64 | padding-top: 20px; 65 | } 66 | 67 | ons-toolbar + .page__background + .page__content { 68 | top: 44px; 69 | } 70 | 71 | .page__status-bar-fill + ons-toolbar { 72 | height: 64px; 73 | } 74 | 75 | .page__status-bar-fill + ons-toolbar > .center, 76 | .page__status-bar-fill + ons-toolbar > .left, 77 | .page__status-bar-fill + ons-toolbar > .right { 78 | padding-top: 20px; 79 | } 80 | 81 | .page__status-bar-fill + ons-toolbar + .page__background + .page__content { 82 | top: 64px; 83 | padding-top: 0px; 84 | } 85 | 86 | .page__content { 87 | overflow: scroll; 88 | -webkit-overflow-scrolling: touch; 89 | z-index: 0; 90 | -ms-touch-action: pan-y; 91 | } 92 | 93 | .page__bottom-bar-fill ~ .page__content { 94 | bottom: 44px; 95 | } 96 | 97 | .page__content::-webkit-scrollbar { 98 | display: none; 99 | } 100 | 101 | .tab-bar__status-bar-fill ~ .tab-bar--top__content { 102 | top: 71px; 103 | } 104 | 105 | .tab-bar__status-bar-fill ~ .tab-bar--top { 106 | padding-top: 22px; 107 | } 108 | 109 | ons-dialog[disabled] > .dialog, 110 | ons-alert-dialog[disabled], 111 | ons-popover[disabled] { 112 | pointer-events: none; 113 | opacity: 0.75; 114 | } 115 | 116 | ons-pull-hook { 117 | position: absolute; 118 | left: 0; 119 | right: 0; 120 | margin: auto; 121 | text-align: center; 122 | } 123 | 124 | 125 | /* 126 | Copyright 2013-2015 ASIAL CORPORATION 127 | 128 | Licensed under the Apache License, Version 2.0 (the "License"); 129 | you may not use this file except in compliance with the License. 130 | You may obtain a copy of the License at 131 | 132 | http://www.apache.org/licenses/LICENSE-2.0 133 | 134 | Unless required by applicable law or agreed to in writing, software 135 | distributed under the License is distributed on an "AS IS" BASIS, 136 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 137 | See the License for the specific language governing permissions and 138 | limitations under the License. 139 | 140 | */ 141 | 142 | ons-carousel { 143 | display: block; 144 | position: relative; 145 | width: 100%; 146 | overflow: hidden; 147 | } 148 | 149 | ons-carousel-item { 150 | display: block; 151 | height: 100%; 152 | visibility: hidden; 153 | } 154 | 155 | ons-carousel-cover { 156 | display: block; 157 | position: absolute; 158 | width: 100%; 159 | height: 100%; 160 | z-index: 2; 161 | pointer-events: none; 162 | } 163 | 164 | ons-carousel[fullscreen] { 165 | position: absolute; 166 | top: 0px; 167 | right: 0px; 168 | left: 0px; 169 | bottom: 0px; 170 | } 171 | 172 | ons-carousel[disabled] { 173 | pointer-events: none; 174 | opacity: 0.75; 175 | } 176 | 177 | .effeckt-button { 178 | position: relative; 179 | font-family: inherit; 180 | cursor: pointer; 181 | -webkit-appearance: none; 182 | -webkit-font-smoothing: antialiased; 183 | } 184 | 185 | .effeckt-button[data-loading] { 186 | cursor: default; 187 | } 188 | 189 | .effeckt-button > .spinner { 190 | position: absolute; 191 | width: 26px; 192 | height: 13px; 193 | top: 50%; 194 | margin-top: -12px; 195 | opacity: 0; 196 | border: 3px solid white; 197 | border-bottom: 0; 198 | -webkit-border-radius: 40px 40px 0 0; 199 | border-radius: 40px 40px 0 0; 200 | -webkit-transform-origin: bottom center; 201 | background: transparent; 202 | -webkit-box-sizing: border-box; 203 | -moz-box-sizing: border-box; 204 | box-sizing: border-box; 205 | } 206 | 207 | .effeckt-button[data-loading] > .spinner { 208 | -webkit-animation: spinner .8s infinite linear; 209 | -o-animation: spinner .8s infinite linear; 210 | -moz-animation: spinner .8s infinite linear; 211 | animation: spinner .8s infinite linear; 212 | } 213 | 214 | @-webkit-keyframes spinner { 215 | 0% { 216 | -webkit-transform: rotate(0deg); 217 | transform: rotate(0deg); 218 | } 219 | 220 | 50% { 221 | -webkit-transform: rotate(180deg); 222 | transform: rotate(180deg); 223 | } 224 | 225 | 100% { 226 | -webkit-transform: rotate(360deg); 227 | transform: rotate(360deg); 228 | } 229 | } 230 | 231 | @-o-keyframes spinner { 232 | 0% { 233 | -o-transform: rotate(0deg); 234 | transform: rotate(0deg); 235 | } 236 | 237 | 50% { 238 | -o-transform: rotate(180deg); 239 | transform: rotate(180deg); 240 | } 241 | 242 | 100% { 243 | -o-transform: rotate(360deg); 244 | transform: rotate(360deg); 245 | } 246 | } 247 | 248 | @-moz-keyframes spinner { 249 | 0% { 250 | -webkit-transform: rotate(0deg); 251 | -ms-transform: rotate(0deg); 252 | -o-transform: rotate(0deg); 253 | -moz-transform: rotate(0deg); 254 | transform: rotate(0deg); 255 | } 256 | 257 | 50% { 258 | -webkit-transform: rotate(180deg); 259 | -ms-transform: rotate(180deg); 260 | -o-transform: rotate(180deg); 261 | -moz-transform: rotate(180deg); 262 | transform: rotate(180deg); 263 | } 264 | 265 | 100% { 266 | -webkit-transform: rotate(360deg); 267 | -ms-transform: rotate(360deg); 268 | -o-transform: rotate(360deg); 269 | -moz-transform: rotate(360deg); 270 | transform: rotate(360deg); 271 | } 272 | } 273 | 274 | @keyframes spinner { 275 | 0% { 276 | -webkit-transform: rotate(0deg); 277 | -ms-transform: rotate(0deg); 278 | -o-transform: rotate(0deg); 279 | -moz-transform: rotate(0deg); 280 | transform: rotate(0deg); 281 | } 282 | 283 | 50% { 284 | -webkit-transform: rotate(180deg); 285 | -ms-transform: rotate(180deg); 286 | -o-transform: rotate(180deg); 287 | -moz-transform: rotate(180deg); 288 | transform: rotate(180deg); 289 | } 290 | 291 | 100% { 292 | -webkit-transform: rotate(360deg); 293 | -ms-transform: rotate(360deg); 294 | -o-transform: rotate(360deg); 295 | -moz-transform: rotate(360deg); 296 | transform: rotate(360deg); 297 | } 298 | } 299 | 300 | .effeckt-button, 301 | .effeckt-button > .spinner, 302 | .effeckt-button > .label { 303 | -webkit-transition-property: padding, opacity, left, right, top, bottom, margin; 304 | -moz-transition-property: padding, opacity, left, right, top, bottom, margin; 305 | -o-transition-property: padding, opacity, left, right, top, bottom, margin; 306 | transition-property: padding, opacity, left, right, top, bottom, margin; 307 | -webkit-transition-duration: 500ms; 308 | -moz-transition-duration: 500ms; 309 | -o-transition-duration: 500ms; 310 | transition-duration: 500ms; 311 | -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); 312 | -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); 313 | -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); 314 | transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); 315 | } 316 | 317 | .effeckt-button.zoom-in, 318 | .effeckt-button.zoom-in > .spinner, 319 | .effeckt-button.zoom-in > .label, 320 | .effeckt-button.zoom-out, 321 | .effeckt-button.zoom-out > .spinner, 322 | .effeckt-button.zoom-out > .label { 323 | -webkit-transition: 500ms ease all; 324 | -o-transition: 500ms ease all; 325 | -moz-transition: 500ms ease all; 326 | transition: 500ms ease all; 327 | } 328 | 329 | .effeckt-button.expand-right > .spinner { 330 | right: 16px; 331 | } 332 | 333 | .effeckt-button.expand-right[data-loading] { 334 | padding-right: 64px; 335 | } 336 | 337 | .effeckt-button.expand-right[data-loading] > .spinner { 338 | opacity: 1; 339 | } 340 | 341 | .effeckt-button.expand-left > .spinner { 342 | left: 16px; 343 | } 344 | 345 | .effeckt-button.expand-left[data-loading] { 346 | padding-left: 64px; 347 | } 348 | 349 | .effeckt-button.expand-left[data-loading] > .spinner { 350 | opacity: 1; 351 | } 352 | 353 | .effeckt-button.expand-up { 354 | overflow: hidden; 355 | } 356 | 357 | .effeckt-button.expand-up > .spinner { 358 | top: 32px; 359 | left: 50%; 360 | margin-left: -16px; 361 | } 362 | 363 | .effeckt-button.expand-up[data-loading] { 364 | padding-top: 64px; 365 | } 366 | 367 | .effeckt-button.expand-up[data-loading] > .spinner { 368 | opacity: 1; 369 | top: 16px; 370 | margin-top: 0; 371 | } 372 | 373 | .effeckt-button.expand-down { 374 | overflow: hidden; 375 | } 376 | 377 | .effeckt-button.expand-down > .spinner { 378 | left: 50%; 379 | top: 100%; 380 | margin-left: -16px; 381 | margin-top: -48px; 382 | } 383 | 384 | .effeckt-button.expand-down[data-loading] { 385 | padding-bottom: 64px; 386 | } 387 | 388 | .effeckt-button.expand-down[data-loading] > .spinner { 389 | opacity: 1; 390 | } 391 | 392 | .effeckt-button.slide-left { 393 | overflow: hidden; 394 | } 395 | 396 | .effeckt-button.slide-left > .label { 397 | position: relative; 398 | } 399 | 400 | .effeckt-button.slide-left > .spinner { 401 | left: 100%; 402 | margin-left: -16px; 403 | } 404 | 405 | .effeckt-button.slide-left[data-loading] > .label { 406 | opacity: 0; 407 | left: -100%; 408 | } 409 | 410 | .effeckt-button.slide-left[data-loading] > .spinner { 411 | opacity: 1; 412 | left: 50%; 413 | } 414 | 415 | .effeckt-button.slide-right { 416 | overflow: hidden; 417 | } 418 | 419 | .effeckt-button.slide-right > .label { 420 | position: relative; 421 | } 422 | 423 | .effeckt-button.slide-right > .spinner { 424 | right: 100%; 425 | margin-left: -16px; 426 | } 427 | 428 | .effeckt-button.slide-right[data-loading] > .label { 429 | opacity: 0; 430 | left: 100%; 431 | } 432 | 433 | .effeckt-button.slide-right[data-loading] > .spinner { 434 | opacity: 1; 435 | left: 50%; 436 | } 437 | 438 | .effeckt-button.slide-up { 439 | overflow: hidden; 440 | } 441 | 442 | .effeckt-button.slide-up > .label { 443 | position: relative; 444 | } 445 | 446 | .effeckt-button.slide-up > .spinner { 447 | left: 50%; 448 | margin-left: -16px; 449 | margin-top: 1em; 450 | } 451 | 452 | .effeckt-button.slide-up[data-loading] > .label { 453 | opacity: 0; 454 | top: -1em; 455 | } 456 | 457 | .effeckt-button.slide-up[data-loading] > .spinner { 458 | opacity: 1; 459 | margin-top: -16px; 460 | } 461 | 462 | .effeckt-button.slide-down { 463 | overflow: hidden; 464 | } 465 | 466 | .effeckt-button.slide-down > .label { 467 | position: relative; 468 | } 469 | 470 | .effeckt-button.slide-down > .spinner { 471 | left: 50%; 472 | margin-left: -16px; 473 | margin-top: -32px; 474 | } 475 | 476 | .effeckt-button.slide-down[data-loading] > .label { 477 | opacity: 0; 478 | top: 1em; 479 | } 480 | 481 | .effeckt-button.slide-down[data-loading] > .spinner { 482 | opacity: 1; 483 | margin-top: -16px; 484 | } 485 | 486 | .effeckt-button.zoom-out { 487 | overflow: hidden; 488 | } 489 | 490 | .effeckt-button.zoom-out > .spinner { 491 | left: 50%; 492 | margin-left: -16px; 493 | -webkit-transform: scale(2.5); 494 | -ms-transform: scale(2.5); 495 | -o-transform: scale(2.5); 496 | -moz-transform: scale(2.5); 497 | transform: scale(2.5); 498 | } 499 | 500 | .effeckt-button.zoom-out > .label { 501 | position: relative; 502 | display: inline-block; 503 | } 504 | 505 | .effeckt-button.zoom-out[data-loading] > .label { 506 | opacity: 0; 507 | -webkit-transform: scale(0.5); 508 | -ms-transform: scale(0.5); 509 | -o-transform: scale(0.5); 510 | -moz-transform: scale(0.5); 511 | transform: scale(0.5); 512 | } 513 | 514 | .effeckt-button.zoom-out[data-loading] > .spinner { 515 | opacity: 1; 516 | -webkit-transform: none; 517 | -ms-transform: none; 518 | -o-transform: none; 519 | -moz-transform: none; 520 | transform: none; 521 | } 522 | 523 | .effeckt-button.zoom-in { 524 | overflow: hidden; 525 | } 526 | 527 | .effeckt-button.zoom-in > .spinner { 528 | left: 50%; 529 | margin-left: -16px; 530 | -webkit-transform: scale(0.2); 531 | -ms-transform: scale(0.2); 532 | -o-transform: scale(0.2); 533 | -moz-transform: scale(0.2); 534 | transform: scale(0.2); 535 | } 536 | 537 | .effeckt-button.zoom-in > .label { 538 | position: relative; 539 | display: inline-block; 540 | } 541 | 542 | .effeckt-button.zoom-in[data-loading] > .label { 543 | opacity: 0; 544 | -webkit-transform: scale(2.2); 545 | -ms-transform: scale(2.2); 546 | -o-transform: scale(2.2); 547 | -moz-transform: scale(2.2); 548 | transform: scale(2.2); 549 | } 550 | 551 | .effeckt-button.zoom-in[data-loading] > .spinner { 552 | opacity: 1; 553 | -webkit-transform: none; 554 | -ms-transform: none; 555 | -o-transform: none; 556 | -moz-transform: none; 557 | transform: none; 558 | } 559 | 560 | /** 561 | * Grid 562 | * -------------------------------------------------- 563 | * Using flexbox for the grid, inspired by Philip Walton: 564 | * http://philipwalton.github.io/solved-by-flexbox/demos/grids/ 565 | * By default each .col within a .row will evenly take up 566 | * available width, and the height of each .col with take 567 | * up the height of the tallest .col in the same .row. 568 | */ 569 | .row { 570 | display: -webkit-box; 571 | display: -webkit-flex; 572 | display: -moz-box; 573 | display: -moz-flex; 574 | display: -ms-flexbox; 575 | display: flex; 576 | -webkit-flex-wrap: wrap; 577 | -ms-flex-wrap: wrap; 578 | flex-wrap: wrap; 579 | width: 100%; 580 | -webkit-box-sizing: border-box; 581 | -moz-box-sizing: border-box; 582 | box-sizing: border-box; 583 | } 584 | 585 | .row + .row { 586 | padding-top: 0; 587 | } 588 | 589 | .col { 590 | -webkit-box-flex: 1; 591 | -webkit-flex: 1; 592 | -moz-box-flex: 1; 593 | -moz-flex: 1; 594 | -ms-flex: 1; 595 | flex: 1; 596 | display: block; 597 | width: 100%; 598 | -webkit-box-sizing: border-box; 599 | -moz-box-sizing: border-box; 600 | box-sizing: border-box; 601 | } 602 | 603 | /* Vertically Align Columns */ 604 | /* .row-* vertically aligns every .col in the .row */ 605 | .row-top { 606 | -webkit-box-align: start; 607 | box-align: start; 608 | -ms-flex-align: start; 609 | -webkit-align-items: flex-start; 610 | -moz-align-items: flex-start; 611 | -moz-box-align: start; 612 | align-items: flex-start; 613 | } 614 | 615 | .row-bottom { 616 | -webkit-box-align: end; 617 | box-align: end; 618 | -ms-flex-align: end; 619 | -webkit-align-items: flex-end; 620 | -moz-align-items: flex-end; 621 | -moz-box-align: end; 622 | align-items: flex-end; 623 | } 624 | 625 | .row-center { 626 | -webkit-box-align: center; 627 | box-align: center; 628 | -ms-flex-align: center; 629 | -webkit-align-items: center; 630 | -moz-align-items: center; 631 | -moz-box-align: center; 632 | align-items: center; 633 | text-align: inherit; 634 | } 635 | 636 | /* .col-* vertically aligns an individual .col */ 637 | .col-top { 638 | -webkit-align-self: flex-start; 639 | -moz-align-self: flex-start; 640 | -ms-flex-item-align: start; 641 | align-self: flex-start; } 642 | 643 | .col-bottom { 644 | -webkit-align-self: flex-end; 645 | -moz-align-self: flex-end; 646 | -ms-flex-item-align: end; 647 | align-self: flex-end; } 648 | 649 | .col-center { 650 | -webkit-align-self: center; 651 | -moz-align-self: center; 652 | -ms-flex-item-align: center; 653 | text-align: inherit; 654 | } 655 | 656 | /* Column Offsets */ 657 | .col-offset-10 { 658 | margin-left: 10%; } 659 | 660 | .col-offset-20 { 661 | margin-left: 20%; } 662 | 663 | .col-offset-25 { 664 | margin-left: 25%; } 665 | 666 | .col-offset-33, .col-offset-34 { 667 | margin-left: 33.3333%; } 668 | 669 | .col-offset-50 { 670 | margin-left: 50%; } 671 | 672 | .col-offset-66, .col-offset-67 { 673 | margin-left: 66.6666%; } 674 | 675 | .col-offset-75 { 676 | margin-left: 75%; } 677 | 678 | .col-offset-80 { 679 | margin-left: 80%; } 680 | 681 | .col-offset-90 { 682 | margin-left: 90%; } 683 | 684 | .row--fit > .col { 685 | -webkit-box-flex: 1; 686 | -webkit-flex: 1; 687 | -moz-box-flex: 1; 688 | -ms-flex: 1; 689 | flex: 1; 690 | } 691 | .row--100 > .col { 692 | -webkit-box-flex: 0; 693 | -webkit-flex: 0 0 100%; 694 | -moz-box-flex: 0; 695 | -ms-flex: 0 0 100%; 696 | flex: 0 0 100%; 697 | } 698 | 699 | /* 700 | Copyright 2013-2015 ASIAL CORPORATION 701 | 702 | Licensed under the Apache License, Version 2.0 (the "License"); 703 | you may not use this file except in compliance with the License. 704 | You may obtain a copy of the License at 705 | 706 | http://www.apache.org/licenses/LICENSE-2.0 707 | 708 | Unless required by applicable law or agreed to in writing, software 709 | distributed under the License is distributed on an "AS IS" BASIS, 710 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 711 | See the License for the specific language governing permissions and 712 | limitations under the License. 713 | 714 | */ 715 | 716 | .ons-icon { 717 | display: inline-block; 718 | font-style: normal; 719 | font-weight: normal; 720 | line-height: 1; 721 | -webkit-font-smoothing: antialiased; 722 | -moz-osx-font-smoothing: grayscale; 723 | } 724 | 725 | .ons-icon--ion { 726 | line-height: 0.75em; 727 | vertical-align: -25%; 728 | } 729 | 730 | ons-icon[spin="true"] { 731 | -webkit-animation: ons-icon-spin 2s infinite linear; 732 | -moz-animation: ons-icon-spin 2s infinite linear; 733 | -o-animation: ons-icon-spin 2s infinite linear; 734 | animation: ons-icon-spin 2s infinite linear; 735 | } 736 | 737 | @-moz-keyframes ons-icon-spin { 738 | 0% { 739 | -moz-transform: rotate(0deg); 740 | } 741 | 100% { 742 | -moz-transform: rotate(359deg); 743 | } 744 | } 745 | 746 | @-webkit-keyframes ons-icon-spin { 747 | 0% { 748 | -webkit-transform: rotate(0deg); 749 | } 750 | 100% { 751 | -webkit-transform: rotate(359deg); 752 | } 753 | } 754 | 755 | @-o-keyframes ons-icon-spin { 756 | 0% { 757 | -webkit-transform: rotate(0deg); 758 | -o-transform: rotate(0deg); 759 | transform: rotate(0deg); 760 | } 761 | 100% { 762 | -webkit-transform: rotate(359deg); 763 | -o-transform: rotate(359deg); 764 | transform: rotate(359deg); 765 | } 766 | } 767 | 768 | @keyframes ons-icon-spin { 769 | 0% { 770 | -webkit-transform: rotate(0deg); 771 | -moz-transform: rotate(0deg); 772 | -ms-transform: rotate(0deg); 773 | -o-transform: rotate(0deg); 774 | transform: rotate(0deg); 775 | } 776 | 100% { 777 | -webkit-transform: rotate(359deg); 778 | -moz-transform: rotate(359deg); 779 | -ms-transform: rotate(359deg); 780 | -o-transform: rotate(359deg); 781 | transform: rotate(359deg); 782 | } 783 | } 784 | 785 | .ons-icon[rotate="90"] { 786 | -webkit-transform: rotate(90deg); 787 | -moz-transform: rotate(90deg); 788 | -ms-transform: rotate(90deg); 789 | -o-transform: rotate(90deg); 790 | transform: rotate(90deg); 791 | } 792 | 793 | .ons-icon[rotate="180"] { 794 | -webkit-transform: rotate(180deg); 795 | -moz-transform: rotate(180deg); 796 | -ms-transform: rotate(180deg); 797 | -o-transform: rotate(180deg); 798 | transform: rotate(180deg); 799 | } 800 | 801 | .ons-icon[rotate="270"] { 802 | -webkit-transform: rotate(270deg); 803 | -moz-transform: rotate(270deg); 804 | -ms-transform: rotate(270deg); 805 | -o-transform: rotate(270deg); 806 | transform: rotate(270deg); 807 | } 808 | 809 | ons-icon[flip="horizontal"] { 810 | -webkit-transform: scale(-1, 1); 811 | -moz-transform: scale(-1, 1); 812 | -ms-transform: scale(-1, 1); 813 | -o-transform: scale(-1, 1); 814 | transform: scale(-1, 1); 815 | } 816 | 817 | ons-icon[flip="vertical"] { 818 | -webkit-transform: scale(1, -1); 819 | -moz-transform: scale(1, -1); 820 | -ms-transform: scale(1, -1); 821 | -o-transform: scale(1, -1); 822 | transform: scale(1, -1); 823 | } 824 | 825 | ons-icon[fixed-width="true"] { 826 | width: 1.28571429em; 827 | text-align: center; 828 | } 829 | 830 | .ons-icon--lg { 831 | font-size: 1.33333333em; 832 | line-height: 0.75em; 833 | vertical-align: -15%; 834 | } 835 | 836 | .ons-icon--2x { 837 | font-size: 2em; 838 | } 839 | 840 | .ons-icon--3x { 841 | font-size: 3em; 842 | } 843 | 844 | .ons-icon--4x { 845 | font-size: 4em; 846 | } 847 | 848 | .ons-icon--5x { 849 | font-size: 5em; 850 | } 851 | 852 | /* 853 | Copyright 2013-2015 ASIAL CORPORATION 854 | 855 | Licensed under the Apache License, Version 2.0 (the "License"); 856 | you may not use this file except in compliance with the License. 857 | You may obtain a copy of the License at 858 | 859 | http://www.apache.org/licenses/LICENSE-2.0 860 | 861 | Unless required by applicable law or agreed to in writing, software 862 | distributed under the License is distributed on an "AS IS" BASIS, 863 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 864 | See the License for the specific language governing permissions and 865 | limitations under the License. 866 | 867 | */ 868 | 869 | ons-scroller { 870 | display: block; 871 | height: 100%; 872 | overflow: scroll; 873 | -webkit-overflow-scrolling: touch; 874 | -ms-overflow-style: none; 875 | } 876 | 877 | ons-scroller::-webkit-scrollbar { 878 | display: none; 879 | } 880 | 881 | .ons-scroller__content { 882 | height: 100%; 883 | overflow: scroll; 884 | } 885 | 886 | /* 887 | Copyright 2013-2015 ASIAL CORPORATION 888 | 889 | Licensed under the Apache License, Version 2.0 (the "License"); 890 | you may not use this file except in compliance with the License. 891 | You may obtain a copy of the License at 892 | 893 | http://www.apache.org/licenses/LICENSE-2.0 894 | 895 | Unless required by applicable law or agreed to in writing, software 896 | distributed under the License is distributed on an "AS IS" BASIS, 897 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 898 | See the License for the specific language governing permissions and 899 | limitations under the License. 900 | 901 | */ 902 | 903 | ons-sliding-menu { 904 | position: absolute; 905 | left: 0px; 906 | right: 0px; 907 | top: 0px; 908 | bottom: 0px; 909 | z-index: 0; 910 | overflow-x: hidden; 911 | } 912 | 913 | .onsen-sliding-menu__menu, 914 | .onsen-sliding-menu__main { 915 | position: absolute; 916 | top: 0px; 917 | left: 0px; 918 | bottom: 0px; 919 | right: 0px; 920 | z-index: 0; 921 | margin: 0; 922 | padding: 0; 923 | } 924 | 925 | .onsen-sliding-menu__menu { 926 | opacity: 0; 927 | } 928 | 929 | 930 | /* 931 | Copyright 2013-2015 ASIAL CORPORATION 932 | 933 | Licensed under the Apache License, Version 2.0 (the "License"); 934 | you may not use this file except in compliance with the License. 935 | You may obtain a copy of the License at 936 | 937 | http://www.apache.org/licenses/LICENSE-2.0 938 | 939 | Unless required by applicable law or agreed to in writing, software 940 | distributed under the License is distributed on an "AS IS" BASIS, 941 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 942 | See the License for the specific language governing permissions and 943 | limitations under the License. 944 | 945 | */ 946 | 947 | ons-split-view { 948 | position: absolute; 949 | left: 0px; 950 | right: 0px; 951 | top: 0px; 952 | bottom: 0px; 953 | z-index: 0; 954 | overflow: hidden; 955 | } 956 | 957 | .onsen-split-view__secondary { 958 | opacity: 0; 959 | width: 100%; 960 | } 961 | 962 | .onsen-split-view__secondary, 963 | .onsen-split-view__main { 964 | position: absolute; 965 | top: 0px; 966 | left: 0px; 967 | bottom: 0px; 968 | right: 0px; 969 | z-index: 0; 970 | overflow-x: hidden; 971 | } 972 | -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/font_awesome/css/font-awesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | /* FONT PATH 6 | * -------------------------- */ 7 | @font-face { 8 | font-family: 'FontAwesome'; 9 | src: url('../fonts/fontawesome-webfont.eot?v=4.1.0'); 10 | src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | } 14 | .fa { 15 | display: inline-block; 16 | font-family: FontAwesome; 17 | font-style: normal; 18 | font-weight: normal; 19 | line-height: 1; 20 | -webkit-font-smoothing: antialiased; 21 | -moz-osx-font-smoothing: grayscale; 22 | } 23 | /* makes the font 33% larger relative to the icon container */ 24 | .fa-lg { 25 | font-size: 1.33333333em; 26 | line-height: 0.75em; 27 | vertical-align: -15%; 28 | } 29 | .fa-2x { 30 | font-size: 2em; 31 | } 32 | .fa-3x { 33 | font-size: 3em; 34 | } 35 | .fa-4x { 36 | font-size: 4em; 37 | } 38 | .fa-5x { 39 | font-size: 5em; 40 | } 41 | .fa-fw { 42 | width: 1.28571429em; 43 | text-align: center; 44 | } 45 | .fa-ul { 46 | padding-left: 0; 47 | margin-left: 2.14285714em; 48 | list-style-type: none; 49 | } 50 | .fa-ul > li { 51 | position: relative; 52 | } 53 | .fa-li { 54 | position: absolute; 55 | left: -2.14285714em; 56 | width: 2.14285714em; 57 | top: 0.14285714em; 58 | text-align: center; 59 | } 60 | .fa-li.fa-lg { 61 | left: -1.85714286em; 62 | } 63 | .fa-border { 64 | padding: .2em .25em .15em; 65 | border: solid 0.08em #eeeeee; 66 | border-radius: .1em; 67 | } 68 | .pull-right { 69 | float: right; 70 | } 71 | .pull-left { 72 | float: left; 73 | } 74 | .fa.pull-left { 75 | margin-right: .3em; 76 | } 77 | .fa.pull-right { 78 | margin-left: .3em; 79 | } 80 | .fa-spin { 81 | -webkit-animation: spin 2s infinite linear; 82 | -moz-animation: spin 2s infinite linear; 83 | -o-animation: spin 2s infinite linear; 84 | animation: spin 2s infinite linear; 85 | } 86 | @-moz-keyframes spin { 87 | 0% { 88 | -moz-transform: rotate(0deg); 89 | } 90 | 100% { 91 | -moz-transform: rotate(359deg); 92 | } 93 | } 94 | @-webkit-keyframes spin { 95 | 0% { 96 | -webkit-transform: rotate(0deg); 97 | } 98 | 100% { 99 | -webkit-transform: rotate(359deg); 100 | } 101 | } 102 | @-o-keyframes spin { 103 | 0% { 104 | -o-transform: rotate(0deg); 105 | } 106 | 100% { 107 | -o-transform: rotate(359deg); 108 | } 109 | } 110 | @keyframes spin { 111 | 0% { 112 | -webkit-transform: rotate(0deg); 113 | transform: rotate(0deg); 114 | } 115 | 100% { 116 | -webkit-transform: rotate(359deg); 117 | transform: rotate(359deg); 118 | } 119 | } 120 | .fa-rotate-90 { 121 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 122 | -webkit-transform: rotate(90deg); 123 | -moz-transform: rotate(90deg); 124 | -ms-transform: rotate(90deg); 125 | -o-transform: rotate(90deg); 126 | transform: rotate(90deg); 127 | } 128 | .fa-rotate-180 { 129 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 130 | -webkit-transform: rotate(180deg); 131 | -moz-transform: rotate(180deg); 132 | -ms-transform: rotate(180deg); 133 | -o-transform: rotate(180deg); 134 | transform: rotate(180deg); 135 | } 136 | .fa-rotate-270 { 137 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 138 | -webkit-transform: rotate(270deg); 139 | -moz-transform: rotate(270deg); 140 | -ms-transform: rotate(270deg); 141 | -o-transform: rotate(270deg); 142 | transform: rotate(270deg); 143 | } 144 | .fa-flip-horizontal { 145 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); 146 | -webkit-transform: scale(-1, 1); 147 | -moz-transform: scale(-1, 1); 148 | -ms-transform: scale(-1, 1); 149 | -o-transform: scale(-1, 1); 150 | transform: scale(-1, 1); 151 | } 152 | .fa-flip-vertical { 153 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); 154 | -webkit-transform: scale(1, -1); 155 | -moz-transform: scale(1, -1); 156 | -ms-transform: scale(1, -1); 157 | -o-transform: scale(1, -1); 158 | transform: scale(1, -1); 159 | } 160 | .fa-stack { 161 | position: relative; 162 | display: inline-block; 163 | width: 2em; 164 | height: 2em; 165 | line-height: 2em; 166 | vertical-align: middle; 167 | } 168 | .fa-stack-1x, 169 | .fa-stack-2x { 170 | position: absolute; 171 | left: 0; 172 | width: 100%; 173 | text-align: center; 174 | } 175 | .fa-stack-1x { 176 | line-height: inherit; 177 | } 178 | .fa-stack-2x { 179 | font-size: 2em; 180 | } 181 | .fa-inverse { 182 | color: #ffffff; 183 | } 184 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 185 | readers do not read off random characters that represent icons */ 186 | .fa-glass:before { 187 | content: "\f000"; 188 | } 189 | .fa-music:before { 190 | content: "\f001"; 191 | } 192 | .fa-search:before { 193 | content: "\f002"; 194 | } 195 | .fa-envelope-o:before { 196 | content: "\f003"; 197 | } 198 | .fa-heart:before { 199 | content: "\f004"; 200 | } 201 | .fa-star:before { 202 | content: "\f005"; 203 | } 204 | .fa-star-o:before { 205 | content: "\f006"; 206 | } 207 | .fa-user:before { 208 | content: "\f007"; 209 | } 210 | .fa-film:before { 211 | content: "\f008"; 212 | } 213 | .fa-th-large:before { 214 | content: "\f009"; 215 | } 216 | .fa-th:before { 217 | content: "\f00a"; 218 | } 219 | .fa-th-list:before { 220 | content: "\f00b"; 221 | } 222 | .fa-check:before { 223 | content: "\f00c"; 224 | } 225 | .fa-times:before { 226 | content: "\f00d"; 227 | } 228 | .fa-search-plus:before { 229 | content: "\f00e"; 230 | } 231 | .fa-search-minus:before { 232 | content: "\f010"; 233 | } 234 | .fa-power-off:before { 235 | content: "\f011"; 236 | } 237 | .fa-signal:before { 238 | content: "\f012"; 239 | } 240 | .fa-gear:before, 241 | .fa-cog:before { 242 | content: "\f013"; 243 | } 244 | .fa-trash-o:before { 245 | content: "\f014"; 246 | } 247 | .fa-home:before { 248 | content: "\f015"; 249 | } 250 | .fa-file-o:before { 251 | content: "\f016"; 252 | } 253 | .fa-clock-o:before { 254 | content: "\f017"; 255 | } 256 | .fa-road:before { 257 | content: "\f018"; 258 | } 259 | .fa-download:before { 260 | content: "\f019"; 261 | } 262 | .fa-arrow-circle-o-down:before { 263 | content: "\f01a"; 264 | } 265 | .fa-arrow-circle-o-up:before { 266 | content: "\f01b"; 267 | } 268 | .fa-inbox:before { 269 | content: "\f01c"; 270 | } 271 | .fa-play-circle-o:before { 272 | content: "\f01d"; 273 | } 274 | .fa-rotate-right:before, 275 | .fa-repeat:before { 276 | content: "\f01e"; 277 | } 278 | .fa-refresh:before { 279 | content: "\f021"; 280 | } 281 | .fa-list-alt:before { 282 | content: "\f022"; 283 | } 284 | .fa-lock:before { 285 | content: "\f023"; 286 | } 287 | .fa-flag:before { 288 | content: "\f024"; 289 | } 290 | .fa-headphones:before { 291 | content: "\f025"; 292 | } 293 | .fa-volume-off:before { 294 | content: "\f026"; 295 | } 296 | .fa-volume-down:before { 297 | content: "\f027"; 298 | } 299 | .fa-volume-up:before { 300 | content: "\f028"; 301 | } 302 | .fa-qrcode:before { 303 | content: "\f029"; 304 | } 305 | .fa-barcode:before { 306 | content: "\f02a"; 307 | } 308 | .fa-tag:before { 309 | content: "\f02b"; 310 | } 311 | .fa-tags:before { 312 | content: "\f02c"; 313 | } 314 | .fa-book:before { 315 | content: "\f02d"; 316 | } 317 | .fa-bookmark:before { 318 | content: "\f02e"; 319 | } 320 | .fa-print:before { 321 | content: "\f02f"; 322 | } 323 | .fa-camera:before { 324 | content: "\f030"; 325 | } 326 | .fa-font:before { 327 | content: "\f031"; 328 | } 329 | .fa-bold:before { 330 | content: "\f032"; 331 | } 332 | .fa-italic:before { 333 | content: "\f033"; 334 | } 335 | .fa-text-height:before { 336 | content: "\f034"; 337 | } 338 | .fa-text-width:before { 339 | content: "\f035"; 340 | } 341 | .fa-align-left:before { 342 | content: "\f036"; 343 | } 344 | .fa-align-center:before { 345 | content: "\f037"; 346 | } 347 | .fa-align-right:before { 348 | content: "\f038"; 349 | } 350 | .fa-align-justify:before { 351 | content: "\f039"; 352 | } 353 | .fa-list:before { 354 | content: "\f03a"; 355 | } 356 | .fa-dedent:before, 357 | .fa-outdent:before { 358 | content: "\f03b"; 359 | } 360 | .fa-indent:before { 361 | content: "\f03c"; 362 | } 363 | .fa-video-camera:before { 364 | content: "\f03d"; 365 | } 366 | .fa-photo:before, 367 | .fa-image:before, 368 | .fa-picture-o:before { 369 | content: "\f03e"; 370 | } 371 | .fa-pencil:before { 372 | content: "\f040"; 373 | } 374 | .fa-map-marker:before { 375 | content: "\f041"; 376 | } 377 | .fa-adjust:before { 378 | content: "\f042"; 379 | } 380 | .fa-tint:before { 381 | content: "\f043"; 382 | } 383 | .fa-edit:before, 384 | .fa-pencil-square-o:before { 385 | content: "\f044"; 386 | } 387 | .fa-share-square-o:before { 388 | content: "\f045"; 389 | } 390 | .fa-check-square-o:before { 391 | content: "\f046"; 392 | } 393 | .fa-arrows:before { 394 | content: "\f047"; 395 | } 396 | .fa-step-backward:before { 397 | content: "\f048"; 398 | } 399 | .fa-fast-backward:before { 400 | content: "\f049"; 401 | } 402 | .fa-backward:before { 403 | content: "\f04a"; 404 | } 405 | .fa-play:before { 406 | content: "\f04b"; 407 | } 408 | .fa-pause:before { 409 | content: "\f04c"; 410 | } 411 | .fa-stop:before { 412 | content: "\f04d"; 413 | } 414 | .fa-forward:before { 415 | content: "\f04e"; 416 | } 417 | .fa-fast-forward:before { 418 | content: "\f050"; 419 | } 420 | .fa-step-forward:before { 421 | content: "\f051"; 422 | } 423 | .fa-eject:before { 424 | content: "\f052"; 425 | } 426 | .fa-chevron-left:before { 427 | content: "\f053"; 428 | } 429 | .fa-chevron-right:before { 430 | content: "\f054"; 431 | } 432 | .fa-plus-circle:before { 433 | content: "\f055"; 434 | } 435 | .fa-minus-circle:before { 436 | content: "\f056"; 437 | } 438 | .fa-times-circle:before { 439 | content: "\f057"; 440 | } 441 | .fa-check-circle:before { 442 | content: "\f058"; 443 | } 444 | .fa-question-circle:before { 445 | content: "\f059"; 446 | } 447 | .fa-info-circle:before { 448 | content: "\f05a"; 449 | } 450 | .fa-crosshairs:before { 451 | content: "\f05b"; 452 | } 453 | .fa-times-circle-o:before { 454 | content: "\f05c"; 455 | } 456 | .fa-check-circle-o:before { 457 | content: "\f05d"; 458 | } 459 | .fa-ban:before { 460 | content: "\f05e"; 461 | } 462 | .fa-arrow-left:before { 463 | content: "\f060"; 464 | } 465 | .fa-arrow-right:before { 466 | content: "\f061"; 467 | } 468 | .fa-arrow-up:before { 469 | content: "\f062"; 470 | } 471 | .fa-arrow-down:before { 472 | content: "\f063"; 473 | } 474 | .fa-mail-forward:before, 475 | .fa-share:before { 476 | content: "\f064"; 477 | } 478 | .fa-expand:before { 479 | content: "\f065"; 480 | } 481 | .fa-compress:before { 482 | content: "\f066"; 483 | } 484 | .fa-plus:before { 485 | content: "\f067"; 486 | } 487 | .fa-minus:before { 488 | content: "\f068"; 489 | } 490 | .fa-asterisk:before { 491 | content: "\f069"; 492 | } 493 | .fa-exclamation-circle:before { 494 | content: "\f06a"; 495 | } 496 | .fa-gift:before { 497 | content: "\f06b"; 498 | } 499 | .fa-leaf:before { 500 | content: "\f06c"; 501 | } 502 | .fa-fire:before { 503 | content: "\f06d"; 504 | } 505 | .fa-eye:before { 506 | content: "\f06e"; 507 | } 508 | .fa-eye-slash:before { 509 | content: "\f070"; 510 | } 511 | .fa-warning:before, 512 | .fa-exclamation-triangle:before { 513 | content: "\f071"; 514 | } 515 | .fa-plane:before { 516 | content: "\f072"; 517 | } 518 | .fa-calendar:before { 519 | content: "\f073"; 520 | } 521 | .fa-random:before { 522 | content: "\f074"; 523 | } 524 | .fa-comment:before { 525 | content: "\f075"; 526 | } 527 | .fa-magnet:before { 528 | content: "\f076"; 529 | } 530 | .fa-chevron-up:before { 531 | content: "\f077"; 532 | } 533 | .fa-chevron-down:before { 534 | content: "\f078"; 535 | } 536 | .fa-retweet:before { 537 | content: "\f079"; 538 | } 539 | .fa-shopping-cart:before { 540 | content: "\f07a"; 541 | } 542 | .fa-folder:before { 543 | content: "\f07b"; 544 | } 545 | .fa-folder-open:before { 546 | content: "\f07c"; 547 | } 548 | .fa-arrows-v:before { 549 | content: "\f07d"; 550 | } 551 | .fa-arrows-h:before { 552 | content: "\f07e"; 553 | } 554 | .fa-bar-chart-o:before { 555 | content: "\f080"; 556 | } 557 | .fa-twitter-square:before { 558 | content: "\f081"; 559 | } 560 | .fa-facebook-square:before { 561 | content: "\f082"; 562 | } 563 | .fa-camera-retro:before { 564 | content: "\f083"; 565 | } 566 | .fa-key:before { 567 | content: "\f084"; 568 | } 569 | .fa-gears:before, 570 | .fa-cogs:before { 571 | content: "\f085"; 572 | } 573 | .fa-comments:before { 574 | content: "\f086"; 575 | } 576 | .fa-thumbs-o-up:before { 577 | content: "\f087"; 578 | } 579 | .fa-thumbs-o-down:before { 580 | content: "\f088"; 581 | } 582 | .fa-star-half:before { 583 | content: "\f089"; 584 | } 585 | .fa-heart-o:before { 586 | content: "\f08a"; 587 | } 588 | .fa-sign-out:before { 589 | content: "\f08b"; 590 | } 591 | .fa-linkedin-square:before { 592 | content: "\f08c"; 593 | } 594 | .fa-thumb-tack:before { 595 | content: "\f08d"; 596 | } 597 | .fa-external-link:before { 598 | content: "\f08e"; 599 | } 600 | .fa-sign-in:before { 601 | content: "\f090"; 602 | } 603 | .fa-trophy:before { 604 | content: "\f091"; 605 | } 606 | .fa-github-square:before { 607 | content: "\f092"; 608 | } 609 | .fa-upload:before { 610 | content: "\f093"; 611 | } 612 | .fa-lemon-o:before { 613 | content: "\f094"; 614 | } 615 | .fa-phone:before { 616 | content: "\f095"; 617 | } 618 | .fa-square-o:before { 619 | content: "\f096"; 620 | } 621 | .fa-bookmark-o:before { 622 | content: "\f097"; 623 | } 624 | .fa-phone-square:before { 625 | content: "\f098"; 626 | } 627 | .fa-twitter:before { 628 | content: "\f099"; 629 | } 630 | .fa-facebook:before { 631 | content: "\f09a"; 632 | } 633 | .fa-github:before { 634 | content: "\f09b"; 635 | } 636 | .fa-unlock:before { 637 | content: "\f09c"; 638 | } 639 | .fa-credit-card:before { 640 | content: "\f09d"; 641 | } 642 | .fa-rss:before { 643 | content: "\f09e"; 644 | } 645 | .fa-hdd-o:before { 646 | content: "\f0a0"; 647 | } 648 | .fa-bullhorn:before { 649 | content: "\f0a1"; 650 | } 651 | .fa-bell:before { 652 | content: "\f0f3"; 653 | } 654 | .fa-certificate:before { 655 | content: "\f0a3"; 656 | } 657 | .fa-hand-o-right:before { 658 | content: "\f0a4"; 659 | } 660 | .fa-hand-o-left:before { 661 | content: "\f0a5"; 662 | } 663 | .fa-hand-o-up:before { 664 | content: "\f0a6"; 665 | } 666 | .fa-hand-o-down:before { 667 | content: "\f0a7"; 668 | } 669 | .fa-arrow-circle-left:before { 670 | content: "\f0a8"; 671 | } 672 | .fa-arrow-circle-right:before { 673 | content: "\f0a9"; 674 | } 675 | .fa-arrow-circle-up:before { 676 | content: "\f0aa"; 677 | } 678 | .fa-arrow-circle-down:before { 679 | content: "\f0ab"; 680 | } 681 | .fa-globe:before { 682 | content: "\f0ac"; 683 | } 684 | .fa-wrench:before { 685 | content: "\f0ad"; 686 | } 687 | .fa-tasks:before { 688 | content: "\f0ae"; 689 | } 690 | .fa-filter:before { 691 | content: "\f0b0"; 692 | } 693 | .fa-briefcase:before { 694 | content: "\f0b1"; 695 | } 696 | .fa-arrows-alt:before { 697 | content: "\f0b2"; 698 | } 699 | .fa-group:before, 700 | .fa-users:before { 701 | content: "\f0c0"; 702 | } 703 | .fa-chain:before, 704 | .fa-link:before { 705 | content: "\f0c1"; 706 | } 707 | .fa-cloud:before { 708 | content: "\f0c2"; 709 | } 710 | .fa-flask:before { 711 | content: "\f0c3"; 712 | } 713 | .fa-cut:before, 714 | .fa-scissors:before { 715 | content: "\f0c4"; 716 | } 717 | .fa-copy:before, 718 | .fa-files-o:before { 719 | content: "\f0c5"; 720 | } 721 | .fa-paperclip:before { 722 | content: "\f0c6"; 723 | } 724 | .fa-save:before, 725 | .fa-floppy-o:before { 726 | content: "\f0c7"; 727 | } 728 | .fa-square:before { 729 | content: "\f0c8"; 730 | } 731 | .fa-navicon:before, 732 | .fa-reorder:before, 733 | .fa-bars:before { 734 | content: "\f0c9"; 735 | } 736 | .fa-list-ul:before { 737 | content: "\f0ca"; 738 | } 739 | .fa-list-ol:before { 740 | content: "\f0cb"; 741 | } 742 | .fa-strikethrough:before { 743 | content: "\f0cc"; 744 | } 745 | .fa-underline:before { 746 | content: "\f0cd"; 747 | } 748 | .fa-table:before { 749 | content: "\f0ce"; 750 | } 751 | .fa-magic:before { 752 | content: "\f0d0"; 753 | } 754 | .fa-truck:before { 755 | content: "\f0d1"; 756 | } 757 | .fa-pinterest:before { 758 | content: "\f0d2"; 759 | } 760 | .fa-pinterest-square:before { 761 | content: "\f0d3"; 762 | } 763 | .fa-google-plus-square:before { 764 | content: "\f0d4"; 765 | } 766 | .fa-google-plus:before { 767 | content: "\f0d5"; 768 | } 769 | .fa-money:before { 770 | content: "\f0d6"; 771 | } 772 | .fa-caret-down:before { 773 | content: "\f0d7"; 774 | } 775 | .fa-caret-up:before { 776 | content: "\f0d8"; 777 | } 778 | .fa-caret-left:before { 779 | content: "\f0d9"; 780 | } 781 | .fa-caret-right:before { 782 | content: "\f0da"; 783 | } 784 | .fa-columns:before { 785 | content: "\f0db"; 786 | } 787 | .fa-unsorted:before, 788 | .fa-sort:before { 789 | content: "\f0dc"; 790 | } 791 | .fa-sort-down:before, 792 | .fa-sort-desc:before { 793 | content: "\f0dd"; 794 | } 795 | .fa-sort-up:before, 796 | .fa-sort-asc:before { 797 | content: "\f0de"; 798 | } 799 | .fa-envelope:before { 800 | content: "\f0e0"; 801 | } 802 | .fa-linkedin:before { 803 | content: "\f0e1"; 804 | } 805 | .fa-rotate-left:before, 806 | .fa-undo:before { 807 | content: "\f0e2"; 808 | } 809 | .fa-legal:before, 810 | .fa-gavel:before { 811 | content: "\f0e3"; 812 | } 813 | .fa-dashboard:before, 814 | .fa-tachometer:before { 815 | content: "\f0e4"; 816 | } 817 | .fa-comment-o:before { 818 | content: "\f0e5"; 819 | } 820 | .fa-comments-o:before { 821 | content: "\f0e6"; 822 | } 823 | .fa-flash:before, 824 | .fa-bolt:before { 825 | content: "\f0e7"; 826 | } 827 | .fa-sitemap:before { 828 | content: "\f0e8"; 829 | } 830 | .fa-umbrella:before { 831 | content: "\f0e9"; 832 | } 833 | .fa-paste:before, 834 | .fa-clipboard:before { 835 | content: "\f0ea"; 836 | } 837 | .fa-lightbulb-o:before { 838 | content: "\f0eb"; 839 | } 840 | .fa-exchange:before { 841 | content: "\f0ec"; 842 | } 843 | .fa-cloud-download:before { 844 | content: "\f0ed"; 845 | } 846 | .fa-cloud-upload:before { 847 | content: "\f0ee"; 848 | } 849 | .fa-user-md:before { 850 | content: "\f0f0"; 851 | } 852 | .fa-stethoscope:before { 853 | content: "\f0f1"; 854 | } 855 | .fa-suitcase:before { 856 | content: "\f0f2"; 857 | } 858 | .fa-bell-o:before { 859 | content: "\f0a2"; 860 | } 861 | .fa-coffee:before { 862 | content: "\f0f4"; 863 | } 864 | .fa-cutlery:before { 865 | content: "\f0f5"; 866 | } 867 | .fa-file-text-o:before { 868 | content: "\f0f6"; 869 | } 870 | .fa-building-o:before { 871 | content: "\f0f7"; 872 | } 873 | .fa-hospital-o:before { 874 | content: "\f0f8"; 875 | } 876 | .fa-ambulance:before { 877 | content: "\f0f9"; 878 | } 879 | .fa-medkit:before { 880 | content: "\f0fa"; 881 | } 882 | .fa-fighter-jet:before { 883 | content: "\f0fb"; 884 | } 885 | .fa-beer:before { 886 | content: "\f0fc"; 887 | } 888 | .fa-h-square:before { 889 | content: "\f0fd"; 890 | } 891 | .fa-plus-square:before { 892 | content: "\f0fe"; 893 | } 894 | .fa-angle-double-left:before { 895 | content: "\f100"; 896 | } 897 | .fa-angle-double-right:before { 898 | content: "\f101"; 899 | } 900 | .fa-angle-double-up:before { 901 | content: "\f102"; 902 | } 903 | .fa-angle-double-down:before { 904 | content: "\f103"; 905 | } 906 | .fa-angle-left:before { 907 | content: "\f104"; 908 | } 909 | .fa-angle-right:before { 910 | content: "\f105"; 911 | } 912 | .fa-angle-up:before { 913 | content: "\f106"; 914 | } 915 | .fa-angle-down:before { 916 | content: "\f107"; 917 | } 918 | .fa-desktop:before { 919 | content: "\f108"; 920 | } 921 | .fa-laptop:before { 922 | content: "\f109"; 923 | } 924 | .fa-tablet:before { 925 | content: "\f10a"; 926 | } 927 | .fa-mobile-phone:before, 928 | .fa-mobile:before { 929 | content: "\f10b"; 930 | } 931 | .fa-circle-o:before { 932 | content: "\f10c"; 933 | } 934 | .fa-quote-left:before { 935 | content: "\f10d"; 936 | } 937 | .fa-quote-right:before { 938 | content: "\f10e"; 939 | } 940 | .fa-spinner:before { 941 | content: "\f110"; 942 | } 943 | .fa-circle:before { 944 | content: "\f111"; 945 | } 946 | .fa-mail-reply:before, 947 | .fa-reply:before { 948 | content: "\f112"; 949 | } 950 | .fa-github-alt:before { 951 | content: "\f113"; 952 | } 953 | .fa-folder-o:before { 954 | content: "\f114"; 955 | } 956 | .fa-folder-open-o:before { 957 | content: "\f115"; 958 | } 959 | .fa-smile-o:before { 960 | content: "\f118"; 961 | } 962 | .fa-frown-o:before { 963 | content: "\f119"; 964 | } 965 | .fa-meh-o:before { 966 | content: "\f11a"; 967 | } 968 | .fa-gamepad:before { 969 | content: "\f11b"; 970 | } 971 | .fa-keyboard-o:before { 972 | content: "\f11c"; 973 | } 974 | .fa-flag-o:before { 975 | content: "\f11d"; 976 | } 977 | .fa-flag-checkered:before { 978 | content: "\f11e"; 979 | } 980 | .fa-terminal:before { 981 | content: "\f120"; 982 | } 983 | .fa-code:before { 984 | content: "\f121"; 985 | } 986 | .fa-mail-reply-all:before, 987 | .fa-reply-all:before { 988 | content: "\f122"; 989 | } 990 | .fa-star-half-empty:before, 991 | .fa-star-half-full:before, 992 | .fa-star-half-o:before { 993 | content: "\f123"; 994 | } 995 | .fa-location-arrow:before { 996 | content: "\f124"; 997 | } 998 | .fa-crop:before { 999 | content: "\f125"; 1000 | } 1001 | .fa-code-fork:before { 1002 | content: "\f126"; 1003 | } 1004 | .fa-unlink:before, 1005 | .fa-chain-broken:before { 1006 | content: "\f127"; 1007 | } 1008 | .fa-question:before { 1009 | content: "\f128"; 1010 | } 1011 | .fa-info:before { 1012 | content: "\f129"; 1013 | } 1014 | .fa-exclamation:before { 1015 | content: "\f12a"; 1016 | } 1017 | .fa-superscript:before { 1018 | content: "\f12b"; 1019 | } 1020 | .fa-subscript:before { 1021 | content: "\f12c"; 1022 | } 1023 | .fa-eraser:before { 1024 | content: "\f12d"; 1025 | } 1026 | .fa-puzzle-piece:before { 1027 | content: "\f12e"; 1028 | } 1029 | .fa-microphone:before { 1030 | content: "\f130"; 1031 | } 1032 | .fa-microphone-slash:before { 1033 | content: "\f131"; 1034 | } 1035 | .fa-shield:before { 1036 | content: "\f132"; 1037 | } 1038 | .fa-calendar-o:before { 1039 | content: "\f133"; 1040 | } 1041 | .fa-fire-extinguisher:before { 1042 | content: "\f134"; 1043 | } 1044 | .fa-rocket:before { 1045 | content: "\f135"; 1046 | } 1047 | .fa-maxcdn:before { 1048 | content: "\f136"; 1049 | } 1050 | .fa-chevron-circle-left:before { 1051 | content: "\f137"; 1052 | } 1053 | .fa-chevron-circle-right:before { 1054 | content: "\f138"; 1055 | } 1056 | .fa-chevron-circle-up:before { 1057 | content: "\f139"; 1058 | } 1059 | .fa-chevron-circle-down:before { 1060 | content: "\f13a"; 1061 | } 1062 | .fa-html5:before { 1063 | content: "\f13b"; 1064 | } 1065 | .fa-css3:before { 1066 | content: "\f13c"; 1067 | } 1068 | .fa-anchor:before { 1069 | content: "\f13d"; 1070 | } 1071 | .fa-unlock-alt:before { 1072 | content: "\f13e"; 1073 | } 1074 | .fa-bullseye:before { 1075 | content: "\f140"; 1076 | } 1077 | .fa-ellipsis-h:before { 1078 | content: "\f141"; 1079 | } 1080 | .fa-ellipsis-v:before { 1081 | content: "\f142"; 1082 | } 1083 | .fa-rss-square:before { 1084 | content: "\f143"; 1085 | } 1086 | .fa-play-circle:before { 1087 | content: "\f144"; 1088 | } 1089 | .fa-ticket:before { 1090 | content: "\f145"; 1091 | } 1092 | .fa-minus-square:before { 1093 | content: "\f146"; 1094 | } 1095 | .fa-minus-square-o:before { 1096 | content: "\f147"; 1097 | } 1098 | .fa-level-up:before { 1099 | content: "\f148"; 1100 | } 1101 | .fa-level-down:before { 1102 | content: "\f149"; 1103 | } 1104 | .fa-check-square:before { 1105 | content: "\f14a"; 1106 | } 1107 | .fa-pencil-square:before { 1108 | content: "\f14b"; 1109 | } 1110 | .fa-external-link-square:before { 1111 | content: "\f14c"; 1112 | } 1113 | .fa-share-square:before { 1114 | content: "\f14d"; 1115 | } 1116 | .fa-compass:before { 1117 | content: "\f14e"; 1118 | } 1119 | .fa-toggle-down:before, 1120 | .fa-caret-square-o-down:before { 1121 | content: "\f150"; 1122 | } 1123 | .fa-toggle-up:before, 1124 | .fa-caret-square-o-up:before { 1125 | content: "\f151"; 1126 | } 1127 | .fa-toggle-right:before, 1128 | .fa-caret-square-o-right:before { 1129 | content: "\f152"; 1130 | } 1131 | .fa-euro:before, 1132 | .fa-eur:before { 1133 | content: "\f153"; 1134 | } 1135 | .fa-gbp:before { 1136 | content: "\f154"; 1137 | } 1138 | .fa-dollar:before, 1139 | .fa-usd:before { 1140 | content: "\f155"; 1141 | } 1142 | .fa-rupee:before, 1143 | .fa-inr:before { 1144 | content: "\f156"; 1145 | } 1146 | .fa-cny:before, 1147 | .fa-rmb:before, 1148 | .fa-yen:before, 1149 | .fa-jpy:before { 1150 | content: "\f157"; 1151 | } 1152 | .fa-ruble:before, 1153 | .fa-rouble:before, 1154 | .fa-rub:before { 1155 | content: "\f158"; 1156 | } 1157 | .fa-won:before, 1158 | .fa-krw:before { 1159 | content: "\f159"; 1160 | } 1161 | .fa-bitcoin:before, 1162 | .fa-btc:before { 1163 | content: "\f15a"; 1164 | } 1165 | .fa-file:before { 1166 | content: "\f15b"; 1167 | } 1168 | .fa-file-text:before { 1169 | content: "\f15c"; 1170 | } 1171 | .fa-sort-alpha-asc:before { 1172 | content: "\f15d"; 1173 | } 1174 | .fa-sort-alpha-desc:before { 1175 | content: "\f15e"; 1176 | } 1177 | .fa-sort-amount-asc:before { 1178 | content: "\f160"; 1179 | } 1180 | .fa-sort-amount-desc:before { 1181 | content: "\f161"; 1182 | } 1183 | .fa-sort-numeric-asc:before { 1184 | content: "\f162"; 1185 | } 1186 | .fa-sort-numeric-desc:before { 1187 | content: "\f163"; 1188 | } 1189 | .fa-thumbs-up:before { 1190 | content: "\f164"; 1191 | } 1192 | .fa-thumbs-down:before { 1193 | content: "\f165"; 1194 | } 1195 | .fa-youtube-square:before { 1196 | content: "\f166"; 1197 | } 1198 | .fa-youtube:before { 1199 | content: "\f167"; 1200 | } 1201 | .fa-xing:before { 1202 | content: "\f168"; 1203 | } 1204 | .fa-xing-square:before { 1205 | content: "\f169"; 1206 | } 1207 | .fa-youtube-play:before { 1208 | content: "\f16a"; 1209 | } 1210 | .fa-dropbox:before { 1211 | content: "\f16b"; 1212 | } 1213 | .fa-stack-overflow:before { 1214 | content: "\f16c"; 1215 | } 1216 | .fa-instagram:before { 1217 | content: "\f16d"; 1218 | } 1219 | .fa-flickr:before { 1220 | content: "\f16e"; 1221 | } 1222 | .fa-adn:before { 1223 | content: "\f170"; 1224 | } 1225 | .fa-bitbucket:before { 1226 | content: "\f171"; 1227 | } 1228 | .fa-bitbucket-square:before { 1229 | content: "\f172"; 1230 | } 1231 | .fa-tumblr:before { 1232 | content: "\f173"; 1233 | } 1234 | .fa-tumblr-square:before { 1235 | content: "\f174"; 1236 | } 1237 | .fa-long-arrow-down:before { 1238 | content: "\f175"; 1239 | } 1240 | .fa-long-arrow-up:before { 1241 | content: "\f176"; 1242 | } 1243 | .fa-long-arrow-left:before { 1244 | content: "\f177"; 1245 | } 1246 | .fa-long-arrow-right:before { 1247 | content: "\f178"; 1248 | } 1249 | .fa-apple:before { 1250 | content: "\f179"; 1251 | } 1252 | .fa-windows:before { 1253 | content: "\f17a"; 1254 | } 1255 | .fa-android:before { 1256 | content: "\f17b"; 1257 | } 1258 | .fa-linux:before { 1259 | content: "\f17c"; 1260 | } 1261 | .fa-dribbble:before { 1262 | content: "\f17d"; 1263 | } 1264 | .fa-skype:before { 1265 | content: "\f17e"; 1266 | } 1267 | .fa-foursquare:before { 1268 | content: "\f180"; 1269 | } 1270 | .fa-trello:before { 1271 | content: "\f181"; 1272 | } 1273 | .fa-female:before { 1274 | content: "\f182"; 1275 | } 1276 | .fa-male:before { 1277 | content: "\f183"; 1278 | } 1279 | .fa-gittip:before { 1280 | content: "\f184"; 1281 | } 1282 | .fa-sun-o:before { 1283 | content: "\f185"; 1284 | } 1285 | .fa-moon-o:before { 1286 | content: "\f186"; 1287 | } 1288 | .fa-archive:before { 1289 | content: "\f187"; 1290 | } 1291 | .fa-bug:before { 1292 | content: "\f188"; 1293 | } 1294 | .fa-vk:before { 1295 | content: "\f189"; 1296 | } 1297 | .fa-weibo:before { 1298 | content: "\f18a"; 1299 | } 1300 | .fa-renren:before { 1301 | content: "\f18b"; 1302 | } 1303 | .fa-pagelines:before { 1304 | content: "\f18c"; 1305 | } 1306 | .fa-stack-exchange:before { 1307 | content: "\f18d"; 1308 | } 1309 | .fa-arrow-circle-o-right:before { 1310 | content: "\f18e"; 1311 | } 1312 | .fa-arrow-circle-o-left:before { 1313 | content: "\f190"; 1314 | } 1315 | .fa-toggle-left:before, 1316 | .fa-caret-square-o-left:before { 1317 | content: "\f191"; 1318 | } 1319 | .fa-dot-circle-o:before { 1320 | content: "\f192"; 1321 | } 1322 | .fa-wheelchair:before { 1323 | content: "\f193"; 1324 | } 1325 | .fa-vimeo-square:before { 1326 | content: "\f194"; 1327 | } 1328 | .fa-turkish-lira:before, 1329 | .fa-try:before { 1330 | content: "\f195"; 1331 | } 1332 | .fa-plus-square-o:before { 1333 | content: "\f196"; 1334 | } 1335 | .fa-space-shuttle:before { 1336 | content: "\f197"; 1337 | } 1338 | .fa-slack:before { 1339 | content: "\f198"; 1340 | } 1341 | .fa-envelope-square:before { 1342 | content: "\f199"; 1343 | } 1344 | .fa-wordpress:before { 1345 | content: "\f19a"; 1346 | } 1347 | .fa-openid:before { 1348 | content: "\f19b"; 1349 | } 1350 | .fa-institution:before, 1351 | .fa-bank:before, 1352 | .fa-university:before { 1353 | content: "\f19c"; 1354 | } 1355 | .fa-mortar-board:before, 1356 | .fa-graduation-cap:before { 1357 | content: "\f19d"; 1358 | } 1359 | .fa-yahoo:before { 1360 | content: "\f19e"; 1361 | } 1362 | .fa-google:before { 1363 | content: "\f1a0"; 1364 | } 1365 | .fa-reddit:before { 1366 | content: "\f1a1"; 1367 | } 1368 | .fa-reddit-square:before { 1369 | content: "\f1a2"; 1370 | } 1371 | .fa-stumbleupon-circle:before { 1372 | content: "\f1a3"; 1373 | } 1374 | .fa-stumbleupon:before { 1375 | content: "\f1a4"; 1376 | } 1377 | .fa-delicious:before { 1378 | content: "\f1a5"; 1379 | } 1380 | .fa-digg:before { 1381 | content: "\f1a6"; 1382 | } 1383 | .fa-pied-piper-square:before, 1384 | .fa-pied-piper:before { 1385 | content: "\f1a7"; 1386 | } 1387 | .fa-pied-piper-alt:before { 1388 | content: "\f1a8"; 1389 | } 1390 | .fa-drupal:before { 1391 | content: "\f1a9"; 1392 | } 1393 | .fa-joomla:before { 1394 | content: "\f1aa"; 1395 | } 1396 | .fa-language:before { 1397 | content: "\f1ab"; 1398 | } 1399 | .fa-fax:before { 1400 | content: "\f1ac"; 1401 | } 1402 | .fa-building:before { 1403 | content: "\f1ad"; 1404 | } 1405 | .fa-child:before { 1406 | content: "\f1ae"; 1407 | } 1408 | .fa-paw:before { 1409 | content: "\f1b0"; 1410 | } 1411 | .fa-spoon:before { 1412 | content: "\f1b1"; 1413 | } 1414 | .fa-cube:before { 1415 | content: "\f1b2"; 1416 | } 1417 | .fa-cubes:before { 1418 | content: "\f1b3"; 1419 | } 1420 | .fa-behance:before { 1421 | content: "\f1b4"; 1422 | } 1423 | .fa-behance-square:before { 1424 | content: "\f1b5"; 1425 | } 1426 | .fa-steam:before { 1427 | content: "\f1b6"; 1428 | } 1429 | .fa-steam-square:before { 1430 | content: "\f1b7"; 1431 | } 1432 | .fa-recycle:before { 1433 | content: "\f1b8"; 1434 | } 1435 | .fa-automobile:before, 1436 | .fa-car:before { 1437 | content: "\f1b9"; 1438 | } 1439 | .fa-cab:before, 1440 | .fa-taxi:before { 1441 | content: "\f1ba"; 1442 | } 1443 | .fa-tree:before { 1444 | content: "\f1bb"; 1445 | } 1446 | .fa-spotify:before { 1447 | content: "\f1bc"; 1448 | } 1449 | .fa-deviantart:before { 1450 | content: "\f1bd"; 1451 | } 1452 | .fa-soundcloud:before { 1453 | content: "\f1be"; 1454 | } 1455 | .fa-database:before { 1456 | content: "\f1c0"; 1457 | } 1458 | .fa-file-pdf-o:before { 1459 | content: "\f1c1"; 1460 | } 1461 | .fa-file-word-o:before { 1462 | content: "\f1c2"; 1463 | } 1464 | .fa-file-excel-o:before { 1465 | content: "\f1c3"; 1466 | } 1467 | .fa-file-powerpoint-o:before { 1468 | content: "\f1c4"; 1469 | } 1470 | .fa-file-photo-o:before, 1471 | .fa-file-picture-o:before, 1472 | .fa-file-image-o:before { 1473 | content: "\f1c5"; 1474 | } 1475 | .fa-file-zip-o:before, 1476 | .fa-file-archive-o:before { 1477 | content: "\f1c6"; 1478 | } 1479 | .fa-file-sound-o:before, 1480 | .fa-file-audio-o:before { 1481 | content: "\f1c7"; 1482 | } 1483 | .fa-file-movie-o:before, 1484 | .fa-file-video-o:before { 1485 | content: "\f1c8"; 1486 | } 1487 | .fa-file-code-o:before { 1488 | content: "\f1c9"; 1489 | } 1490 | .fa-vine:before { 1491 | content: "\f1ca"; 1492 | } 1493 | .fa-codepen:before { 1494 | content: "\f1cb"; 1495 | } 1496 | .fa-jsfiddle:before { 1497 | content: "\f1cc"; 1498 | } 1499 | .fa-life-bouy:before, 1500 | .fa-life-saver:before, 1501 | .fa-support:before, 1502 | .fa-life-ring:before { 1503 | content: "\f1cd"; 1504 | } 1505 | .fa-circle-o-notch:before { 1506 | content: "\f1ce"; 1507 | } 1508 | .fa-ra:before, 1509 | .fa-rebel:before { 1510 | content: "\f1d0"; 1511 | } 1512 | .fa-ge:before, 1513 | .fa-empire:before { 1514 | content: "\f1d1"; 1515 | } 1516 | .fa-git-square:before { 1517 | content: "\f1d2"; 1518 | } 1519 | .fa-git:before { 1520 | content: "\f1d3"; 1521 | } 1522 | .fa-hacker-news:before { 1523 | content: "\f1d4"; 1524 | } 1525 | .fa-tencent-weibo:before { 1526 | content: "\f1d5"; 1527 | } 1528 | .fa-qq:before { 1529 | content: "\f1d6"; 1530 | } 1531 | .fa-wechat:before, 1532 | .fa-weixin:before { 1533 | content: "\f1d7"; 1534 | } 1535 | .fa-send:before, 1536 | .fa-paper-plane:before { 1537 | content: "\f1d8"; 1538 | } 1539 | .fa-send-o:before, 1540 | .fa-paper-plane-o:before { 1541 | content: "\f1d9"; 1542 | } 1543 | .fa-history:before { 1544 | content: "\f1da"; 1545 | } 1546 | .fa-circle-thin:before { 1547 | content: "\f1db"; 1548 | } 1549 | .fa-header:before { 1550 | content: "\f1dc"; 1551 | } 1552 | .fa-paragraph:before { 1553 | content: "\f1dd"; 1554 | } 1555 | .fa-sliders:before { 1556 | content: "\f1de"; 1557 | } 1558 | .fa-share-alt:before { 1559 | content: "\f1e0"; 1560 | } 1561 | .fa-share-alt-square:before { 1562 | content: "\f1e1"; 1563 | } 1564 | .fa-bomb:before { 1565 | content: "\f1e2"; 1566 | } 1567 | -------------------------------------------------------------------------------- /www/components/monaca-onsenui/css/ionicons/css/ionicons.min.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";/*! 2 | Ionicons, v2.0.0 3 | Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ 4 | https://twitter.com/benjsperry https://twitter.com/ionicframework 5 | MIT License: https://github.com/driftyco/ionicons 6 | 7 | Android-style icons originally built by Google’s 8 | Material Design Icons: https://github.com/google/material-design-icons 9 | used under CC BY http://creativecommons.org/licenses/by/4.0/ 10 | Modified icons to fit ionicon’s grid from original. 11 | */@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=2.0.0");src:url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("../fonts/ionicons.woff?v=2.0.0") format("woff"),url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-alert:before{content:"\f101"}.ion-alert-circled:before{content:"\f100"}.ion-android-add:before{content:"\f2c7"}.ion-android-add-circle:before{content:"\f359"}.ion-android-alarm-clock:before{content:"\f35a"}.ion-android-alert:before{content:"\f35b"}.ion-android-apps:before{content:"\f35c"}.ion-android-archive:before{content:"\f2c9"}.ion-android-arrow-back:before{content:"\f2ca"}.ion-android-arrow-down:before{content:"\f35d"}.ion-android-arrow-dropdown:before{content:"\f35f"}.ion-android-arrow-dropdown-circle:before{content:"\f35e"}.ion-android-arrow-dropleft:before{content:"\f361"}.ion-android-arrow-dropleft-circle:before{content:"\f360"}.ion-android-arrow-dropright:before{content:"\f363"}.ion-android-arrow-dropright-circle:before{content:"\f362"}.ion-android-arrow-dropup:before{content:"\f365"}.ion-android-arrow-dropup-circle:before{content:"\f364"}.ion-android-arrow-forward:before{content:"\f30f"}.ion-android-arrow-up:before{content:"\f366"}.ion-android-attach:before{content:"\f367"}.ion-android-bar:before{content:"\f368"}.ion-android-bicycle:before{content:"\f369"}.ion-android-boat:before{content:"\f36a"}.ion-android-bookmark:before{content:"\f36b"}.ion-android-bulb:before{content:"\f36c"}.ion-android-bus:before{content:"\f36d"}.ion-android-calendar:before{content:"\f2d1"}.ion-android-call:before{content:"\f2d2"}.ion-android-camera:before{content:"\f2d3"}.ion-android-cancel:before{content:"\f36e"}.ion-android-car:before{content:"\f36f"}.ion-android-cart:before{content:"\f370"}.ion-android-chat:before{content:"\f2d4"}.ion-android-checkbox:before{content:"\f374"}.ion-android-checkbox-blank:before{content:"\f371"}.ion-android-checkbox-outline:before{content:"\f373"}.ion-android-checkbox-outline-blank:before{content:"\f372"}.ion-android-checkmark-circle:before{content:"\f375"}.ion-android-clipboard:before{content:"\f376"}.ion-android-close:before{content:"\f2d7"}.ion-android-cloud:before{content:"\f37a"}.ion-android-cloud-circle:before{content:"\f377"}.ion-android-cloud-done:before{content:"\f378"}.ion-android-cloud-outline:before{content:"\f379"}.ion-android-color-palette:before{content:"\f37b"}.ion-android-compass:before{content:"\f37c"}.ion-android-contact:before{content:"\f2d8"}.ion-android-contacts:before{content:"\f2d9"}.ion-android-contract:before{content:"\f37d"}.ion-android-create:before{content:"\f37e"}.ion-android-delete:before{content:"\f37f"}.ion-android-desktop:before{content:"\f380"}.ion-android-document:before{content:"\f381"}.ion-android-done:before{content:"\f383"}.ion-android-done-all:before{content:"\f382"}.ion-android-download:before{content:"\f2dd"}.ion-android-drafts:before{content:"\f384"}.ion-android-exit:before{content:"\f385"}.ion-android-expand:before{content:"\f386"}.ion-android-favorite:before{content:"\f388"}.ion-android-favorite-outline:before{content:"\f387"}.ion-android-film:before{content:"\f389"}.ion-android-folder:before{content:"\f2e0"}.ion-android-folder-open:before{content:"\f38a"}.ion-android-funnel:before{content:"\f38b"}.ion-android-globe:before{content:"\f38c"}.ion-android-hand:before{content:"\f2e3"}.ion-android-hangout:before{content:"\f38d"}.ion-android-happy:before{content:"\f38e"}.ion-android-home:before{content:"\f38f"}.ion-android-image:before{content:"\f2e4"}.ion-android-laptop:before{content:"\f390"}.ion-android-list:before{content:"\f391"}.ion-android-locate:before{content:"\f2e9"}.ion-android-lock:before{content:"\f392"}.ion-android-mail:before{content:"\f2eb"}.ion-android-map:before{content:"\f393"}.ion-android-menu:before{content:"\f394"}.ion-android-microphone:before{content:"\f2ec"}.ion-android-microphone-off:before{content:"\f395"}.ion-android-more-horizontal:before{content:"\f396"}.ion-android-more-vertical:before{content:"\f397"}.ion-android-navigate:before{content:"\f398"}.ion-android-notifications:before{content:"\f39b"}.ion-android-notifications-none:before{content:"\f399"}.ion-android-notifications-off:before{content:"\f39a"}.ion-android-open:before{content:"\f39c"}.ion-android-options:before{content:"\f39d"}.ion-android-people:before{content:"\f39e"}.ion-android-person:before{content:"\f3a0"}.ion-android-person-add:before{content:"\f39f"}.ion-android-phone-landscape:before{content:"\f3a1"}.ion-android-phone-portrait:before{content:"\f3a2"}.ion-android-pin:before{content:"\f3a3"}.ion-android-plane:before{content:"\f3a4"}.ion-android-playstore:before{content:"\f2f0"}.ion-android-print:before{content:"\f3a5"}.ion-android-radio-button-off:before{content:"\f3a6"}.ion-android-radio-button-on:before{content:"\f3a7"}.ion-android-refresh:before{content:"\f3a8"}.ion-android-remove:before{content:"\f2f4"}.ion-android-remove-circle:before{content:"\f3a9"}.ion-android-restaurant:before{content:"\f3aa"}.ion-android-sad:before{content:"\f3ab"}.ion-android-search:before{content:"\f2f5"}.ion-android-send:before{content:"\f2f6"}.ion-android-settings:before{content:"\f2f7"}.ion-android-share:before{content:"\f2f8"}.ion-android-share-alt:before{content:"\f3ac"}.ion-android-star:before{content:"\f2fc"}.ion-android-star-half:before{content:"\f3ad"}.ion-android-star-outline:before{content:"\f3ae"}.ion-android-stopwatch:before{content:"\f2fd"}.ion-android-subway:before{content:"\f3af"}.ion-android-sunny:before{content:"\f3b0"}.ion-android-sync:before{content:"\f3b1"}.ion-android-textsms:before{content:"\f3b2"}.ion-android-time:before{content:"\f3b3"}.ion-android-train:before{content:"\f3b4"}.ion-android-unlock:before{content:"\f3b5"}.ion-android-upload:before{content:"\f3b6"}.ion-android-volume-down:before{content:"\f3b7"}.ion-android-volume-mute:before{content:"\f3b8"}.ion-android-volume-off:before{content:"\f3b9"}.ion-android-volume-up:before{content:"\f3ba"}.ion-android-walk:before{content:"\f3bb"}.ion-android-warning:before{content:"\f3bc"}.ion-android-watch:before{content:"\f3bd"}.ion-android-wifi:before{content:"\f305"}.ion-aperture:before{content:"\f313"}.ion-archive:before{content:"\f102"}.ion-arrow-down-a:before{content:"\f103"}.ion-arrow-down-b:before{content:"\f104"}.ion-arrow-down-c:before{content:"\f105"}.ion-arrow-expand:before{content:"\f25e"}.ion-arrow-graph-down-left:before{content:"\f25f"}.ion-arrow-graph-down-right:before{content:"\f260"}.ion-arrow-graph-up-left:before{content:"\f261"}.ion-arrow-graph-up-right:before{content:"\f262"}.ion-arrow-left-a:before{content:"\f106"}.ion-arrow-left-b:before{content:"\f107"}.ion-arrow-left-c:before{content:"\f108"}.ion-arrow-move:before{content:"\f263"}.ion-arrow-resize:before{content:"\f264"}.ion-arrow-return-left:before{content:"\f265"}.ion-arrow-return-right:before{content:"\f266"}.ion-arrow-right-a:before{content:"\f109"}.ion-arrow-right-b:before{content:"\f10a"}.ion-arrow-right-c:before{content:"\f10b"}.ion-arrow-shrink:before{content:"\f267"}.ion-arrow-swap:before{content:"\f268"}.ion-arrow-up-a:before{content:"\f10c"}.ion-arrow-up-b:before{content:"\f10d"}.ion-arrow-up-c:before{content:"\f10e"}.ion-asterisk:before{content:"\f314"}.ion-at:before{content:"\f10f"}.ion-backspace:before{content:"\f3bf"}.ion-backspace-outline:before{content:"\f3be"}.ion-bag:before{content:"\f110"}.ion-battery-charging:before{content:"\f111"}.ion-battery-empty:before{content:"\f112"}.ion-battery-full:before{content:"\f113"}.ion-battery-half:before{content:"\f114"}.ion-battery-low:before{content:"\f115"}.ion-beaker:before{content:"\f269"}.ion-beer:before{content:"\f26a"}.ion-bluetooth:before{content:"\f116"}.ion-bonfire:before{content:"\f315"}.ion-bookmark:before{content:"\f26b"}.ion-bowtie:before{content:"\f3c0"}.ion-briefcase:before{content:"\f26c"}.ion-bug:before{content:"\f2be"}.ion-calculator:before{content:"\f26d"}.ion-calendar:before{content:"\f117"}.ion-camera:before{content:"\f118"}.ion-card:before{content:"\f119"}.ion-cash:before{content:"\f316"}.ion-chatbox:before{content:"\f11b"}.ion-chatbox-working:before{content:"\f11a"}.ion-chatboxes:before{content:"\f11c"}.ion-chatbubble:before{content:"\f11e"}.ion-chatbubble-working:before{content:"\f11d"}.ion-chatbubbles:before{content:"\f11f"}.ion-checkmark:before{content:"\f122"}.ion-checkmark-circled:before{content:"\f120"}.ion-checkmark-round:before{content:"\f121"}.ion-chevron-down:before{content:"\f123"}.ion-chevron-left:before{content:"\f124"}.ion-chevron-right:before{content:"\f125"}.ion-chevron-up:before{content:"\f126"}.ion-clipboard:before{content:"\f127"}.ion-clock:before{content:"\f26e"}.ion-close:before{content:"\f12a"}.ion-close-circled:before{content:"\f128"}.ion-close-round:before{content:"\f129"}.ion-closed-captioning:before{content:"\f317"}.ion-cloud:before{content:"\f12b"}.ion-code:before{content:"\f271"}.ion-code-download:before{content:"\f26f"}.ion-code-working:before{content:"\f270"}.ion-coffee:before{content:"\f272"}.ion-compass:before{content:"\f273"}.ion-compose:before{content:"\f12c"}.ion-connection-bars:before{content:"\f274"}.ion-contrast:before{content:"\f275"}.ion-crop:before{content:"\f3c1"}.ion-cube:before{content:"\f318"}.ion-disc:before{content:"\f12d"}.ion-document:before{content:"\f12f"}.ion-document-text:before{content:"\f12e"}.ion-drag:before{content:"\f130"}.ion-earth:before{content:"\f276"}.ion-easel:before{content:"\f3c2"}.ion-edit:before{content:"\f2bf"}.ion-egg:before{content:"\f277"}.ion-eject:before{content:"\f131"}.ion-email:before{content:"\f132"}.ion-email-unread:before{content:"\f3c3"}.ion-erlenmeyer-flask:before{content:"\f3c5"}.ion-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.ion-eye:before{content:"\f133"}.ion-eye-disabled:before{content:"\f306"}.ion-female:before{content:"\f278"}.ion-filing:before{content:"\f134"}.ion-film-marker:before{content:"\f135"}.ion-fireball:before{content:"\f319"}.ion-flag:before{content:"\f279"}.ion-flame:before{content:"\f31a"}.ion-flash:before{content:"\f137"}.ion-flash-off:before{content:"\f136"}.ion-folder:before{content:"\f139"}.ion-fork:before{content:"\f27a"}.ion-fork-repo:before{content:"\f2c0"}.ion-forward:before{content:"\f13a"}.ion-funnel:before{content:"\f31b"}.ion-gear-a:before{content:"\f13d"}.ion-gear-b:before{content:"\f13e"}.ion-grid:before{content:"\f13f"}.ion-hammer:before{content:"\f27b"}.ion-happy:before{content:"\f31c"}.ion-happy-outline:before{content:"\f3c6"}.ion-headphone:before{content:"\f140"}.ion-heart:before{content:"\f141"}.ion-heart-broken:before{content:"\f31d"}.ion-help:before{content:"\f143"}.ion-help-buoy:before{content:"\f27c"}.ion-help-circled:before{content:"\f142"}.ion-home:before{content:"\f144"}.ion-icecream:before{content:"\f27d"}.ion-image:before{content:"\f147"}.ion-images:before{content:"\f148"}.ion-information:before{content:"\f14a"}.ion-information-circled:before{content:"\f149"}.ion-ionic:before{content:"\f14b"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-alarm-outline:before{content:"\f3c7"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-albums-outline:before{content:"\f3c9"}.ion-ios-americanfootball:before{content:"\f3cc"}.ion-ios-americanfootball-outline:before{content:"\f3cb"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-analytics-outline:before{content:"\f3cd"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-left:before{content:"\f3d2"}.ion-ios-arrow-right:before{content:"\f3d3"}.ion-ios-arrow-thin-down:before{content:"\f3d4"}.ion-ios-arrow-thin-left:before{content:"\f3d5"}.ion-ios-arrow-thin-right:before{content:"\f3d6"}.ion-ios-arrow-thin-up:before{content:"\f3d7"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-at-outline:before{content:"\f3d9"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-barcode-outline:before{content:"\f3db"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-baseball-outline:before{content:"\f3dd"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-basketball-outline:before{content:"\f3df"}.ion-ios-bell:before{content:"\f3e2"}.ion-ios-bell-outline:before{content:"\f3e1"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-body-outline:before{content:"\f3e3"}.ion-ios-bolt:before{content:"\f3e6"}.ion-ios-bolt-outline:before{content:"\f3e5"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-book-outline:before{content:"\f3e7"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bookmarks-outline:before{content:"\f3e9"}.ion-ios-box:before{content:"\f3ec"}.ion-ios-box-outline:before{content:"\f3eb"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-briefcase-outline:before{content:"\f3ed"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-browsers-outline:before{content:"\f3ef"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calculator-outline:before{content:"\f3f1"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-calendar-outline:before{content:"\f3f3"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-camera-outline:before{content:"\f3f5"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cart-outline:before{content:"\f3f7"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatboxes-outline:before{content:"\f3f9"}.ion-ios-chatbubble:before{content:"\f3fc"}.ion-ios-chatbubble-outline:before{content:"\f3fb"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-empty:before{content:"\f3fd"}.ion-ios-checkmark-outline:before{content:"\f3fe"}.ion-ios-circle-filled:before{content:"\f400"}.ion-ios-circle-outline:before{content:"\f401"}.ion-ios-clock:before{content:"\f403"}.ion-ios-clock-outline:before{content:"\f402"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-empty:before{content:"\f404"}.ion-ios-close-outline:before{content:"\f405"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-download-outline:before{content:"\f407"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloud-upload-outline:before{content:"\f40a"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-cloudy-night-outline:before{content:"\f40d"}.ion-ios-cloudy-outline:before{content:"\f40f"}.ion-ios-cog:before{content:"\f412"}.ion-ios-cog-outline:before{content:"\f411"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-filter-outline:before{content:"\f413"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-color-wand-outline:before{content:"\f415"}.ion-ios-compose:before{content:"\f418"}.ion-ios-compose-outline:before{content:"\f417"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contact-outline:before{content:"\f419"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-copy-outline:before{content:"\f41b"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-crop-strong:before{content:"\f41d"}.ion-ios-download:before{content:"\f420"}.ion-ios-download-outline:before{content:"\f41f"}.ion-ios-drag:before{content:"\f421"}.ion-ios-email:before{content:"\f423"}.ion-ios-email-outline:before{content:"\f422"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-outline:before{content:"\f424"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-fastforward-outline:before{content:"\f426"}.ion-ios-filing:before{content:"\f429"}.ion-ios-filing-outline:before{content:"\f428"}.ion-ios-film:before{content:"\f42b"}.ion-ios-film-outline:before{content:"\f42a"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flag-outline:before{content:"\f42c"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flame-outline:before{content:"\f42e"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flask-outline:before{content:"\f430"}.ion-ios-flower:before{content:"\f433"}.ion-ios-flower-outline:before{content:"\f432"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-outline:before{content:"\f434"}.ion-ios-football:before{content:"\f437"}.ion-ios-football-outline:before{content:"\f436"}.ion-ios-game-controller-a:before{content:"\f439"}.ion-ios-game-controller-a-outline:before{content:"\f438"}.ion-ios-game-controller-b:before{content:"\f43b"}.ion-ios-game-controller-b-outline:before{content:"\f43a"}.ion-ios-gear:before{content:"\f43d"}.ion-ios-gear-outline:before{content:"\f43c"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-glasses-outline:before{content:"\f43e"}.ion-ios-grid-view:before{content:"\f441"}.ion-ios-grid-view-outline:before{content:"\f440"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-outline:before{content:"\f442"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-empty:before{content:"\f444"}.ion-ios-help-outline:before{content:"\f445"}.ion-ios-home:before{content:"\f448"}.ion-ios-home-outline:before{content:"\f447"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-infinite-outline:before{content:"\f449"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-empty:before{content:"\f44b"}.ion-ios-information-outline:before{content:"\f44c"}.ion-ios-ionic-outline:before{content:"\f44e"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-keypad-outline:before{content:"\f44f"}.ion-ios-lightbulb:before{content:"\f452"}.ion-ios-lightbulb-outline:before{content:"\f451"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-outline:before{content:"\f453"}.ion-ios-location:before{content:"\f456"}.ion-ios-location-outline:before{content:"\f455"}.ion-ios-locked:before{content:"\f458"}.ion-ios-locked-outline:before{content:"\f457"}.ion-ios-loop:before{content:"\f45a"}.ion-ios-loop-strong:before{content:"\f459"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medical-outline:before{content:"\f45b"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-medkit-outline:before{content:"\f45d"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-mic-outline:before{content:"\f460"}.ion-ios-minus:before{content:"\f464"}.ion-ios-minus-empty:before{content:"\f462"}.ion-ios-minus-outline:before{content:"\f463"}.ion-ios-monitor:before{content:"\f466"}.ion-ios-monitor-outline:before{content:"\f465"}.ion-ios-moon:before{content:"\f468"}.ion-ios-moon-outline:before{content:"\f467"}.ion-ios-more:before{content:"\f46a"}.ion-ios-more-outline:before{content:"\f469"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-navigate-outline:before{content:"\f46d"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-nutrition-outline:before{content:"\f46f"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-outline:before{content:"\f471"}.ion-ios-paperplane:before{content:"\f474"}.ion-ios-paperplane-outline:before{content:"\f473"}.ion-ios-partlysunny:before{content:"\f476"}.ion-ios-partlysunny-outline:before{content:"\f475"}.ion-ios-pause:before{content:"\f478"}.ion-ios-pause-outline:before{content:"\f477"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-paw-outline:before{content:"\f479"}.ion-ios-people:before{content:"\f47c"}.ion-ios-people-outline:before{content:"\f47b"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-outline:before{content:"\f47d"}.ion-ios-personadd:before{content:"\f480"}.ion-ios-personadd-outline:before{content:"\f47f"}.ion-ios-photos:before{content:"\f482"}.ion-ios-photos-outline:before{content:"\f481"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pie-outline:before{content:"\f483"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pint-outline:before{content:"\f485"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-outline:before{content:"\f487"}.ion-ios-plus:before{content:"\f48b"}.ion-ios-plus-empty:before{content:"\f489"}.ion-ios-plus-outline:before{content:"\f48a"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetag-outline:before{content:"\f48c"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-pricetags-outline:before{content:"\f48e"}.ion-ios-printer:before{content:"\f491"}.ion-ios-printer-outline:before{content:"\f490"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-pulse-strong:before{content:"\f492"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-rainy-outline:before{content:"\f494"}.ion-ios-recording:before{content:"\f497"}.ion-ios-recording-outline:before{content:"\f496"}.ion-ios-redo:before{content:"\f499"}.ion-ios-redo-outline:before{content:"\f498"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-empty:before{content:"\f49a"}.ion-ios-refresh-outline:before{content:"\f49b"}.ion-ios-reload:before{content:"\f49d"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-reverse-camera-outline:before{content:"\f49e"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-rewind-outline:before{content:"\f4a0"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-rose-outline:before{content:"\f4a2"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-search-strong:before{content:"\f4a4"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-settings-strong:before{content:"\f4a6"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-shuffle-strong:before{content:"\f4a8"}.ion-ios-skipbackward:before{content:"\f4ab"}.ion-ios-skipbackward-outline:before{content:"\f4aa"}.ion-ios-skipforward:before{content:"\f4ad"}.ion-ios-skipforward-outline:before{content:"\f4ac"}.ion-ios-snowy:before{content:"\f4ae"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-speedometer-outline:before{content:"\f4af"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-stopwatch-outline:before{content:"\f4b4"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-sunny-outline:before{content:"\f4b6"}.ion-ios-telephone:before{content:"\f4b9"}.ion-ios-telephone-outline:before{content:"\f4b8"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-tennisball-outline:before{content:"\f4ba"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-thunderstorm-outline:before{content:"\f4bc"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-time-outline:before{content:"\f4be"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-timer-outline:before{content:"\f4c0"}.ion-ios-toggle:before{content:"\f4c3"}.ion-ios-toggle-outline:before{content:"\f4c2"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trash-outline:before{content:"\f4c4"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-undo-outline:before{content:"\f4c6"}.ion-ios-unlocked:before{content:"\f4c9"}.ion-ios-unlocked-outline:before{content:"\f4c8"}.ion-ios-upload:before{content:"\f4cb"}.ion-ios-upload-outline:before{content:"\f4ca"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-videocam-outline:before{content:"\f4cc"}.ion-ios-volume-high:before{content:"\f4ce"}.ion-ios-volume-low:before{content:"\f4cf"}.ion-ios-wineglass:before{content:"\f4d1"}.ion-ios-wineglass-outline:before{content:"\f4d0"}.ion-ios-world:before{content:"\f4d3"}.ion-ios-world-outline:before{content:"\f4d2"}.ion-ipad:before{content:"\f1f9"}.ion-iphone:before{content:"\f1fa"}.ion-ipod:before{content:"\f1fb"}.ion-jet:before{content:"\f295"}.ion-key:before{content:"\f296"}.ion-knife:before{content:"\f297"}.ion-laptop:before{content:"\f1fc"}.ion-leaf:before{content:"\f1fd"}.ion-levels:before{content:"\f298"}.ion-lightbulb:before{content:"\f299"}.ion-link:before{content:"\f1fe"}.ion-load-a:before{content:"\f29a"}.ion-load-b:before{content:"\f29b"}.ion-load-c:before{content:"\f29c"}.ion-load-d:before{content:"\f29d"}.ion-location:before{content:"\f1ff"}.ion-lock-combination:before{content:"\f4d4"}.ion-locked:before{content:"\f200"}.ion-log-in:before{content:"\f29e"}.ion-log-out:before{content:"\f29f"}.ion-loop:before{content:"\f201"}.ion-magnet:before{content:"\f2a0"}.ion-male:before{content:"\f2a1"}.ion-man:before{content:"\f202"}.ion-map:before{content:"\f203"}.ion-medkit:before{content:"\f2a2"}.ion-merge:before{content:"\f33f"}.ion-mic-a:before{content:"\f204"}.ion-mic-b:before{content:"\f205"}.ion-mic-c:before{content:"\f206"}.ion-minus:before{content:"\f209"}.ion-minus-circled:before{content:"\f207"}.ion-minus-round:before{content:"\f208"}.ion-model-s:before{content:"\f2c1"}.ion-monitor:before{content:"\f20a"}.ion-more:before{content:"\f20b"}.ion-mouse:before{content:"\f340"}.ion-music-note:before{content:"\f20c"}.ion-navicon:before{content:"\f20e"}.ion-navicon-round:before{content:"\f20d"}.ion-navigate:before{content:"\f2a3"}.ion-network:before{content:"\f341"}.ion-no-smoking:before{content:"\f2c2"}.ion-nuclear:before{content:"\f2a4"}.ion-outlet:before{content:"\f342"}.ion-paintbrush:before{content:"\f4d5"}.ion-paintbucket:before{content:"\f4d6"}.ion-paper-airplane:before{content:"\f2c3"}.ion-paperclip:before{content:"\f20f"}.ion-pause:before{content:"\f210"}.ion-person:before{content:"\f213"}.ion-person-add:before{content:"\f211"}.ion-person-stalker:before{content:"\f212"}.ion-pie-graph:before{content:"\f2a5"}.ion-pin:before{content:"\f2a6"}.ion-pinpoint:before{content:"\f2a7"}.ion-pizza:before{content:"\f2a8"}.ion-plane:before{content:"\f214"}.ion-planet:before{content:"\f343"}.ion-play:before{content:"\f215"}.ion-playstation:before{content:"\f30a"}.ion-plus:before{content:"\f218"}.ion-plus-circled:before{content:"\f216"}.ion-plus-round:before{content:"\f217"}.ion-podium:before{content:"\f344"}.ion-pound:before{content:"\f219"}.ion-power:before{content:"\f2a9"}.ion-pricetag:before{content:"\f2aa"}.ion-pricetags:before{content:"\f2ab"}.ion-printer:before{content:"\f21a"}.ion-pull-request:before{content:"\f345"}.ion-qr-scanner:before{content:"\f346"}.ion-quote:before{content:"\f347"}.ion-radio-waves:before{content:"\f2ac"}.ion-record:before{content:"\f21b"}.ion-refresh:before{content:"\f21c"}.ion-reply:before{content:"\f21e"}.ion-reply-all:before{content:"\f21d"}.ion-ribbon-a:before{content:"\f348"}.ion-ribbon-b:before{content:"\f349"}.ion-sad:before{content:"\f34a"}.ion-sad-outline:before{content:"\f4d7"}.ion-scissors:before{content:"\f34b"}.ion-search:before{content:"\f21f"}.ion-settings:before{content:"\f2ad"}.ion-share:before{content:"\f220"}.ion-shuffle:before{content:"\f221"}.ion-skip-backward:before{content:"\f222"}.ion-skip-forward:before{content:"\f223"}.ion-social-android:before{content:"\f225"}.ion-social-android-outline:before{content:"\f224"}.ion-social-angular:before{content:"\f4d9"}.ion-social-angular-outline:before{content:"\f4d8"}.ion-social-apple:before{content:"\f227"}.ion-social-apple-outline:before{content:"\f226"}.ion-social-bitcoin:before{content:"\f2af"}.ion-social-bitcoin-outline:before{content:"\f2ae"}.ion-social-buffer:before{content:"\f229"}.ion-social-buffer-outline:before{content:"\f228"}.ion-social-chrome:before{content:"\f4db"}.ion-social-chrome-outline:before{content:"\f4da"}.ion-social-codepen:before{content:"\f4dd"}.ion-social-codepen-outline:before{content:"\f4dc"}.ion-social-css3:before{content:"\f4df"}.ion-social-css3-outline:before{content:"\f4de"}.ion-social-designernews:before{content:"\f22b"}.ion-social-designernews-outline:before{content:"\f22a"}.ion-social-dribbble:before{content:"\f22d"}.ion-social-dribbble-outline:before{content:"\f22c"}.ion-social-dropbox:before{content:"\f22f"}.ion-social-dropbox-outline:before{content:"\f22e"}.ion-social-euro:before{content:"\f4e1"}.ion-social-euro-outline:before{content:"\f4e0"}.ion-social-facebook:before{content:"\f231"}.ion-social-facebook-outline:before{content:"\f230"}.ion-social-foursquare:before{content:"\f34d"}.ion-social-foursquare-outline:before{content:"\f34c"}.ion-social-freebsd-devil:before{content:"\f2c4"}.ion-social-github:before{content:"\f233"}.ion-social-github-outline:before{content:"\f232"}.ion-social-google:before{content:"\f34f"}.ion-social-google-outline:before{content:"\f34e"}.ion-social-googleplus:before{content:"\f235"}.ion-social-googleplus-outline:before{content:"\f234"}.ion-social-hackernews:before{content:"\f237"}.ion-social-hackernews-outline:before{content:"\f236"}.ion-social-html5:before{content:"\f4e3"}.ion-social-html5-outline:before{content:"\f4e2"}.ion-social-instagram:before{content:"\f351"}.ion-social-instagram-outline:before{content:"\f350"}.ion-social-javascript:before{content:"\f4e5"}.ion-social-javascript-outline:before{content:"\f4e4"}.ion-social-linkedin:before{content:"\f239"}.ion-social-linkedin-outline:before{content:"\f238"}.ion-social-markdown:before{content:"\f4e6"}.ion-social-nodejs:before{content:"\f4e7"}.ion-social-octocat:before{content:"\f4e8"}.ion-social-pinterest:before{content:"\f2b1"}.ion-social-pinterest-outline:before{content:"\f2b0"}.ion-social-python:before{content:"\f4e9"}.ion-social-reddit:before{content:"\f23b"}.ion-social-reddit-outline:before{content:"\f23a"}.ion-social-rss:before{content:"\f23d"}.ion-social-rss-outline:before{content:"\f23c"}.ion-social-sass:before{content:"\f4ea"}.ion-social-skype:before{content:"\f23f"}.ion-social-skype-outline:before{content:"\f23e"}.ion-social-snapchat:before{content:"\f4ec"}.ion-social-snapchat-outline:before{content:"\f4eb"}.ion-social-tumblr:before{content:"\f241"}.ion-social-tumblr-outline:before{content:"\f240"}.ion-social-tux:before{content:"\f2c5"}.ion-social-twitch:before{content:"\f4ee"}.ion-social-twitch-outline:before{content:"\f4ed"}.ion-social-twitter:before{content:"\f243"}.ion-social-twitter-outline:before{content:"\f242"}.ion-social-usd:before{content:"\f353"}.ion-social-usd-outline:before{content:"\f352"}.ion-social-vimeo:before{content:"\f245"}.ion-social-vimeo-outline:before{content:"\f244"}.ion-social-whatsapp:before{content:"\f4f0"}.ion-social-whatsapp-outline:before{content:"\f4ef"}.ion-social-windows:before{content:"\f247"}.ion-social-windows-outline:before{content:"\f246"}.ion-social-wordpress:before{content:"\f249"}.ion-social-wordpress-outline:before{content:"\f248"}.ion-social-yahoo:before{content:"\f24b"}.ion-social-yahoo-outline:before{content:"\f24a"}.ion-social-yen:before{content:"\f4f2"}.ion-social-yen-outline:before{content:"\f4f1"}.ion-social-youtube:before{content:"\f24d"}.ion-social-youtube-outline:before{content:"\f24c"}.ion-soup-can:before{content:"\f4f4"}.ion-soup-can-outline:before{content:"\f4f3"}.ion-speakerphone:before{content:"\f2b2"}.ion-speedometer:before{content:"\f2b3"}.ion-spoon:before{content:"\f2b4"}.ion-star:before{content:"\f24e"}.ion-stats-bars:before{content:"\f2b5"}.ion-steam:before{content:"\f30b"}.ion-stop:before{content:"\f24f"}.ion-thermometer:before{content:"\f2b6"}.ion-thumbsdown:before{content:"\f250"}.ion-thumbsup:before{content:"\f251"}.ion-toggle:before{content:"\f355"}.ion-toggle-filled:before{content:"\f354"}.ion-transgender:before{content:"\f4f5"}.ion-trash-a:before{content:"\f252"}.ion-trash-b:before{content:"\f253"}.ion-trophy:before{content:"\f356"}.ion-tshirt:before{content:"\f4f7"}.ion-tshirt-outline:before{content:"\f4f6"}.ion-umbrella:before{content:"\f2b7"}.ion-university:before{content:"\f357"}.ion-unlocked:before{content:"\f254"}.ion-upload:before{content:"\f255"}.ion-usb:before{content:"\f2b8"}.ion-videocamera:before{content:"\f256"}.ion-volume-high:before{content:"\f257"}.ion-volume-low:before{content:"\f258"}.ion-volume-medium:before{content:"\f259"}.ion-volume-mute:before{content:"\f25a"}.ion-wand:before{content:"\f358"}.ion-waterdrop:before{content:"\f25b"}.ion-wifi:before{content:"\f25c"}.ion-wineglass:before{content:"\f2b9"}.ion-woman:before{content:"\f25d"}.ion-wrench:before{content:"\f2ba"}.ion-xbox:before{content:"\f30c"} 12 | --------------------------------------------------------------------------------