├── .gitignore ├── bower_components ├── jquery │ ├── src │ │ ├── outro.js │ │ ├── selector.js │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── trim.js │ │ │ ├── rnotwhite.js │ │ │ ├── strundefined.js │ │ │ ├── push.js │ │ │ ├── slice.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── hasOwn.js │ │ │ ├── toString.js │ │ │ └── support.js │ │ ├── ajax │ │ │ ├── var │ │ │ │ ├── rquery.js │ │ │ │ └── nonce.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── load.js │ │ │ └── jsonp.js │ │ ├── css │ │ │ ├── var │ │ │ │ ├── rmargin.js │ │ │ │ ├── cssExpand.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ ├── getStyles.js │ │ │ │ └── isHidden.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── swap.js │ │ │ ├── addGetHookIf.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ └── support.js │ │ ├── manipulation │ │ │ ├── var │ │ │ │ └── rcheckableType.js │ │ │ ├── _evalUrl.js │ │ │ └── support.js │ │ ├── data │ │ │ ├── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ └── accepts.js │ │ ├── core │ │ │ ├── var │ │ │ │ └── rsingleTag.js │ │ │ ├── parseHTML.js │ │ │ ├── access.js │ │ │ └── ready.js │ │ ├── traversing │ │ │ ├── var │ │ │ │ └── rneedsContext.js │ │ │ └── findFilter.js │ │ ├── event │ │ │ ├── support.js │ │ │ └── alias.js │ │ ├── attributes.js │ │ ├── deprecated.js │ │ ├── effects │ │ │ └── animatedSelector.js │ │ ├── selector-sizzle.js │ │ ├── queue │ │ │ └── delay.js │ │ ├── jquery.js │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ ├── attributes │ │ │ ├── support.js │ │ │ └── prop.js │ │ ├── intro.js │ │ ├── wrap.js │ │ └── dimensions.js │ ├── bower.json │ ├── .bower.json │ └── MIT-LICENSE.txt ├── jquery-placeholder │ ├── .gitattributes │ ├── .gitignore │ ├── bower.json │ ├── .bower.json │ ├── LICENSE-MIT.txt │ └── tests │ │ └── index.html ├── modernizr │ ├── .gitignore │ ├── feature-detects │ │ ├── css-mediaqueries.js │ │ ├── workers-sharedworkers.js │ │ ├── script-async.js │ │ ├── script-defer.js │ │ ├── cors.js │ │ ├── dom-microdata.js │ │ ├── audio-audiodata-api.js │ │ ├── css-objectfit.js │ │ ├── network-eventsource.js │ │ ├── es5-strictmode.js │ │ ├── dart.js │ │ ├── pointerlock-api.js │ │ ├── dom-classlist.js │ │ ├── window-framed.js │ │ ├── battery-api.js │ │ ├── vibration.js │ │ ├── audio-webaudio-api.js │ │ ├── dataview-api.js │ │ ├── elem-time.js │ │ ├── lists-reversed.js │ │ ├── web-intents.js │ │ ├── css-resize.js │ │ ├── elem-output.js │ │ ├── style-scoped.js │ │ ├── userdata.js │ │ ├── css-userselect.js │ │ ├── getusermedia.js │ │ ├── iframe-srcdoc.js │ │ ├── iframe-sandbox.js │ │ ├── json.js │ │ ├── iframe-seamless.js │ │ ├── blob-constructor.js │ │ ├── dom-dataset.js │ │ ├── websockets-binary.js │ │ ├── css-overflow-scrolling.js │ │ ├── custom-protocol-handler.js │ │ ├── performance.js │ │ ├── css-boxsizing.js │ │ ├── contextmenu.js │ │ ├── requestanimationframe.js │ │ ├── file-filesystem.js │ │ ├── dom-createElement-attrs.js │ │ ├── css-supports.js │ │ ├── a-download.js │ │ ├── css-backgroundsizecover.js │ │ ├── elem-datalist.js │ │ ├── css-lastchild.js │ │ ├── forms-placeholder.js │ │ ├── css-cubicbezierrange.js │ │ ├── css-filters.js │ │ ├── battery-level.js │ │ ├── ie8compat.js │ │ ├── css-calc.js │ │ ├── notification.js │ │ ├── network-xhr2.js │ │ ├── forms-fileinput.js │ │ ├── contenteditable.js │ │ ├── elem-progress-meter.js │ │ ├── quota-management-api.js │ │ ├── css-displayrunin.js │ │ ├── cookies.js │ │ ├── emoji.js │ │ ├── file-api.js │ │ ├── css-scrollbars.js │ │ ├── css-positionsticky.js │ │ ├── svg-filters.js │ │ ├── img-webp.js │ │ ├── css-remunit.js │ │ ├── css-vwunit.js │ │ ├── fullscreen-api.js │ │ ├── css-vhunit.js │ │ ├── css-backgroundposition-shorthand.js │ │ ├── contentsecuritypolicy.js │ │ ├── css-mask.js │ │ ├── event-deviceorientation-motion.js │ │ ├── elem-track.js │ │ ├── gamepad.js │ │ ├── css-vmaxunit.js │ │ ├── css-vminunit.js │ │ ├── url-data-uri.js │ │ ├── css-backgroundposition-xy.js │ │ ├── forms-speechinput.js │ │ ├── css-backgroundrepeat.js │ │ ├── elem-details.js │ │ ├── forms-formattribute.js │ │ ├── mathml.js │ │ ├── workers-dataworkers.js │ │ ├── css-pointerevents.js │ │ ├── img-apng.js │ │ ├── css-subpixelfont.js │ │ ├── canvas-todataurl-type.js │ │ ├── network-connection.js │ │ ├── css-displaytable.js │ │ ├── unicode.js │ │ ├── webgl-extensions.js │ │ ├── forms-inputnumber-l10n.js │ │ ├── workers-blobworkers.js │ │ ├── exif-orientation.js │ │ ├── elem-ruby.js │ │ ├── css-regions.js │ │ └── forms-validation.js │ ├── .travis.yml │ ├── media │ │ ├── Modernizr 2 Logo.ai │ │ ├── Modernizr 2 Logo.eps │ │ ├── Modernizr 2 Logo.pdf │ │ ├── Modernizr 2 Logo.png │ │ └── Modernizr 2 Logo.svg │ ├── test │ │ ├── caniuse_files │ │ │ ├── alpha.png │ │ │ ├── ruby.png │ │ │ ├── table.png │ │ │ ├── green5x5.png │ │ │ ├── red30x30.png │ │ │ ├── svg_blur.png │ │ │ ├── apng_test.png │ │ │ ├── mathml_ref.png │ │ │ ├── before-after.png │ │ │ ├── stroked-text.png │ │ │ ├── svg-html-blur.png │ │ │ ├── text-shadow1.png │ │ │ ├── text-shadow2.png │ │ │ ├── windsong_font.png │ │ │ ├── Windsong-webfont.eot │ │ │ ├── Windsong-webfont.otf │ │ │ ├── Windsong-webfont.ttf │ │ │ ├── Windsong-webfont.woff │ │ │ ├── png_alpha_result.png │ │ │ ├── svg-img.svg │ │ │ ├── svg-img.svg.1 │ │ │ ├── hashchange.html │ │ │ ├── xhtml.html │ │ │ ├── form_validation.html │ │ │ ├── pushstate.html │ │ │ ├── style.css │ │ │ └── mathml.html │ │ ├── js │ │ │ ├── setup.js │ │ │ ├── dumpdata.js │ │ │ └── basic.html │ │ ├── basic.html │ │ └── qunit │ │ │ └── run-qunit.js │ ├── .editorconfig │ ├── .bower.json │ ├── readme.md │ └── grunt.js ├── foundation │ ├── scss │ │ ├── foundation │ │ │ ├── components │ │ │ │ ├── _reveal-new.scss │ │ │ │ ├── _magellan.scss │ │ │ │ ├── _flex-video.scss │ │ │ │ ├── _inline-lists.scss │ │ │ │ ├── _thumbs.scss │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _keystrokes.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _side-nav.scss │ │ │ │ └── _panels.scss │ │ │ └── _functions.scss │ │ └── foundation.scss │ ├── bower.json │ ├── .bower.json │ └── js │ │ └── foundation │ │ ├── foundation.alert.js │ │ ├── foundation.offcanvas.js │ │ ├── foundation.accordion.js │ │ └── foundation.equalizer.js ├── fastclick │ ├── bower.json │ ├── .bower.json │ └── LICENSE └── jquery.cookie │ └── .bower.json ├── scss ├── _headings.scss ├── _misc.scss ├── _breadcrumbs.scss ├── _sidenav.scss ├── _pagination.scss ├── _subnav.scss ├── _forms.scss ├── _sections.scss ├── app.scss └── _buttons.scss ├── images └── almost_flat_ui.png ├── robots.txt ├── humans.txt ├── README.md ├── config.rb ├── MIT-LICENSE.txt ├── javascripts └── vendor │ ├── jquery.cookie.js │ └── placeholder.js └── stylesheets └── normalize.min.css /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /bower_components/jquery-placeholder/.gitattributes: -------------------------------------------------------------------------------- 1 | * eol=lf -------------------------------------------------------------------------------- /bower_components/jquery-placeholder/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /bower_components/modernizr/.gitignore: -------------------------------------------------------------------------------- 1 | modernizr.min.js 2 | .DS_Store -------------------------------------------------------------------------------- /bower_components/foundation/scss/foundation/components/_reveal-new.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /scss/_headings.scss: -------------------------------------------------------------------------------- 1 | h1,h2,h3, 2 | h4,h5,h6{ 3 | font-weight:bold; 4 | } 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/trim.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return "".trim; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /images/almost_flat_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/images/almost_flat_ui.png -------------------------------------------------------------------------------- /bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449 3 | 4 | User-agent: * -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/css-mediaqueries.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Modernizr.addTest('mediaqueries', Modernizr.mq('only all')); -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery-placeholder/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-placeholder", 3 | "version": "2.0.8", 4 | "main": ["jquery.placeholder.js"] 5 | } 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/workers-sharedworkers.js: -------------------------------------------------------------------------------- 1 | Modernizr.addTest('sharedworkers', function(){ 2 | return !!window.SharedWorker; 3 | }); -------------------------------------------------------------------------------- /bower_components/modernizr/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - npm install grunt 6 | script: grunt travis --verbose -------------------------------------------------------------------------------- /bower_components/modernizr/media/Modernizr 2 Logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/media/Modernizr 2 Logo.ai -------------------------------------------------------------------------------- /bower_components/modernizr/media/Modernizr 2 Logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/media/Modernizr 2 Logo.eps -------------------------------------------------------------------------------- /bower_components/modernizr/media/Modernizr 2 Logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/media/Modernizr 2 Logo.pdf -------------------------------------------------------------------------------- /bower_components/modernizr/media/Modernizr 2 Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/media/Modernizr 2 Logo.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/alpha.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/ruby.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/table.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/green5x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/green5x5.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/red30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/red30x30.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/svg_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/svg_blur.png -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/apng_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/apng_test.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/mathml_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/mathml_ref.png -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/script-async.js: -------------------------------------------------------------------------------- 1 | // async script 2 | // By Theodoor van Donge 3 | Modernizr.addTest('scriptasync', 'async' in document.createElement('script')); -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/script-defer.js: -------------------------------------------------------------------------------- 1 | // defer script 2 | // By Theodoor van Donge 3 | Modernizr.addTest('scriptdefer', 'defer' in document.createElement('script')); -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/before-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/before-after.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/stroked-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/stroked-text.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/svg-html-blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/svg-html-blur.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/text-shadow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/text-shadow1.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/text-shadow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/text-shadow2.png -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/windsong_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/windsong_font.png -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/cors.js: -------------------------------------------------------------------------------- 1 | // cors 2 | // By Theodoor van Donge 3 | Modernizr.addTest('cors', !!(window.XMLHttpRequest && 'withCredentials' in new XMLHttpRequest())); -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return function( elem ) { 3 | return elem.ownerDocument.defaultView.getComputedStyle( elem, null ); 4 | }; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/Windsong-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/Windsong-webfont.eot -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/Windsong-webfont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/Windsong-webfont.otf -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/Windsong-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/Windsong-webfont.ttf -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/Windsong-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/Windsong-webfont.woff -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/png_alpha_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websymphony/almost-flat-ui/HEAD/bower_components/modernizr/test/caniuse_files/png_alpha_result.png -------------------------------------------------------------------------------- /scss/_misc.scss: -------------------------------------------------------------------------------- 1 | .panel.callout { 2 | @include box-shadow(0 1px 0 rgba(255, 255, 255, 0) inset); 3 | } 4 | .clearing-thumbs{ 5 | list-style:none; 6 | li{ 7 | display: inline; 8 | } 9 | } -------------------------------------------------------------------------------- /scss/_breadcrumbs.scss: -------------------------------------------------------------------------------- 1 | .breadcrumbs li{ 2 | a { 3 | &:hover{ 4 | color:#fff; 5 | } 6 | } 7 | &.current { 8 | a:hover{ 9 | color:#333; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/dom-microdata.js: -------------------------------------------------------------------------------- 1 | // Microdata support 2 | // http://www.w3.org/TR/html5/microdata.html 3 | // By Addy Osmani 4 | Modernizr.addTest('microdata', !!(document['getItems'])); -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/audio-audiodata-api.js: -------------------------------------------------------------------------------- 1 | // Mozilla Audio Data API 2 | // https://wiki.mozilla.org/Audio_Data_API 3 | // by Addy Osmani 4 | Modernizr.addTest('audiodata', !!(window.Audio)); 5 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/css-objectfit.js: -------------------------------------------------------------------------------- 1 | 2 | // dev.opera.com/articles/view/css3-object-fit-object-position/ 3 | 4 | Modernizr.addTest('object-fit', 5 | !!Modernizr.prefixed('objectFit') 6 | ); -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/network-eventsource.js: -------------------------------------------------------------------------------- 1 | 2 | // server sent events aka eventsource 3 | // dev.w3.org/html5/eventsource/ 4 | 5 | Modernizr.addTest('eventsource', !!window.EventSource); 6 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/es5-strictmode.js: -------------------------------------------------------------------------------- 1 | // strict mode 2 | 3 | // test by @kangax 4 | 5 | Modernizr.addTest('strictmode', function(){ 6 | return (function(){ "use strict"; return !this; })(); 7 | }); -------------------------------------------------------------------------------- /scss/_sidenav.scss: -------------------------------------------------------------------------------- 1 | .side-nav li { 2 | a{ 3 | padding:5px; 4 | &:hover{ 5 | background: $turquoise; 6 | color: #fff !important; 7 | @include transition(.25s); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/dart.js: -------------------------------------------------------------------------------- 1 | // Dart 2 | // By Theodoor van Donge 3 | 4 | // https://chromiumcodereview.appspot.com/9232049/ 5 | 6 | Modernizr.addTest('dart', !!Modernizr.prefixed('startDart', navigator)); 7 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/pointerlock-api.js: -------------------------------------------------------------------------------- 1 | // https://developer.mozilla.org/en-US/docs/API/Pointer_Lock_API 2 | 3 | Modernizr.addTest('pointerlock',!!Modernizr.prefixed('pointerLockElement', document)); 4 | 5 | -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/svg-img.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/dom-classlist.js: -------------------------------------------------------------------------------- 1 | // classList 2 | // https://developer.mozilla.org/en/DOM/element.classList 3 | // By Addy Osmani 4 | Modernizr.addTest('classlist', 'classList' in document.documentElement); 5 | -------------------------------------------------------------------------------- /bower_components/modernizr/test/caniuse_files/svg-img.svg.1: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/window-framed.js: -------------------------------------------------------------------------------- 1 | 2 | // tests if page is iframed 3 | 4 | // github.com/Modernizr/Modernizr/issues/242 5 | 6 | Modernizr.addTest('framed', function(){ 7 | return window.location != top.location; 8 | }); 9 | -------------------------------------------------------------------------------- /bower_components/modernizr/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/battery-api.js: -------------------------------------------------------------------------------- 1 | 2 | // Battery API 3 | // https://developer.mozilla.org/en/DOM/window.navigator.mozBattery 4 | // By: Paul Sayre 5 | 6 | Modernizr.addTest('battery', 7 | !!Modernizr.prefixed('battery', navigator) 8 | ); -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/vibration.js: -------------------------------------------------------------------------------- 1 | // Vibration API 2 | // http://www.w3.org/TR/vibration/ 3 | // https://developer.mozilla.org/en/DOM/window.navigator.mozVibrate 4 | Modernizr.addTest('vibrate', !!Modernizr.prefixed('vibrate', navigator)); -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/audio-webaudio-api.js: -------------------------------------------------------------------------------- 1 | // Web Audio API 2 | // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html 3 | // By Addy Osmani 4 | Modernizr.addTest('webaudio', !!(window.webkitAudioContext || window.AudioContext)); 5 | -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/dataview-api.js: -------------------------------------------------------------------------------- 1 | // DataView 2 | // https://developer.mozilla.org/en/JavaScript_typed_arrays/DataView 3 | // By Addy Osmani 4 | Modernizr.addTest('dataview', (typeof DataView !== 'undefined' && 'getFloat64' in DataView.prototype)); -------------------------------------------------------------------------------- /bower_components/modernizr/feature-detects/elem-time.js: -------------------------------------------------------------------------------- 1 | //