├── Rakefile ├── vendor └── assets │ ├── .DS_Store │ ├── fonts │ ├── .DS_Store │ ├── lato │ │ ├── lato-black.eot │ │ ├── lato-black.ttf │ │ ├── lato-bold.eot │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-light.eot │ │ ├── lato-light.ttf │ │ ├── lato-black.woff │ │ ├── lato-italic.eot │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-light.woff │ │ ├── lato-regular.eot │ │ ├── lato-regular.ttf │ │ ├── lato-regular.woff │ │ ├── lato-bolditalic.eot │ │ ├── lato-bolditalic.ttf │ │ └── lato-bolditalic.woff │ ├── glyphicons │ │ ├── flat-ui-icons-regular.eot │ │ ├── flat-ui-icons-regular.ttf │ │ ├── flat-ui-icons-regular.woff │ │ └── flat-ui-icons-regular.svg │ └── b3-glyphicons │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.svg │ └── images │ ├── favicon.ico │ ├── icons │ ├── Map@2x.png │ ├── Book@2x.png │ ├── Chat@2x.png │ ├── Mail@2x.png │ ├── png │ │ ├── Book.png │ │ ├── Chat.png │ │ ├── Mail.png │ │ ├── Map.png │ │ ├── Compas.png │ │ ├── Pensils.png │ │ ├── Pocket.png │ │ ├── Watches.png │ │ ├── Calendar.png │ │ ├── Clipboard.png │ │ ├── Gift-Box.png │ │ ├── Retina-Ready.png │ │ ├── Toilet-Paper.png │ │ └── Infinity-Loop.png │ ├── Calendar@2x.png │ ├── Compas@2x.png │ ├── Gift-Box@2x.png │ ├── Pensils@2x.png │ ├── Pocket@2x.png │ ├── Watches@2x.png │ ├── Clipboard@2x.png │ ├── Infinity-Loop@2x.png │ ├── Retina-Ready@2x.png │ ├── Toilet-Paper@2x.png │ └── svg │ │ ├── loop.svg │ │ ├── paper-bag.svg │ │ ├── clocks.svg │ │ ├── mail.svg │ │ ├── chat.svg │ │ ├── toilet-paper.svg │ │ ├── book.svg │ │ ├── map.svg │ │ ├── retina.svg │ │ ├── clipboard.svg │ │ ├── pencils.svg │ │ ├── compas.svg │ │ ├── ribbon.svg │ │ ├── calendar.svg │ │ └── gift-box.svg │ ├── login │ ├── icon.png │ ├── imac.png │ └── imac-2x.png │ └── tile │ ├── ribbon.png │ └── ribbon-2x.png ├── lib ├── flat-ui-rails │ ├── version.rb │ ├── railtie.rb │ └── engine.rb └── flat-ui-rails.rb ├── Gemfile ├── .gitignore ├── flat-ui-rails.gemspec ├── README.md ├── update.sh └── LICENSE.txt /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/.DS_Store -------------------------------------------------------------------------------- /lib/flat-ui-rails/version.rb: -------------------------------------------------------------------------------- 1 | module FlatUi 2 | module Rails 3 | VERSION = "0.0.4" 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # Specify your gem's dependencies in parsley-rails.gemspec 4 | gemspec 5 | -------------------------------------------------------------------------------- /vendor/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/favicon.ico -------------------------------------------------------------------------------- /vendor/assets/images/icons/Map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Map@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/login/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/login/icon.png -------------------------------------------------------------------------------- /vendor/assets/images/login/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/login/imac.png -------------------------------------------------------------------------------- /vendor/assets/images/tile/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/tile/ribbon.png -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /vendor/assets/images/icons/Book@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Book@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Chat@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Mail@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Book.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Chat.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Mail.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Map.png -------------------------------------------------------------------------------- /vendor/assets/images/login/imac-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/login/imac-2x.png -------------------------------------------------------------------------------- /vendor/assets/images/tile/ribbon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/tile/ribbon-2x.png -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /vendor/assets/images/icons/Calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Calendar@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Compas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Compas@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Gift-Box@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Gift-Box@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Pensils@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Pensils@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Pocket@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Pocket@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Watches@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Watches@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Compas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Compas.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Pensils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Pensils.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Pocket.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Watches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Watches.png -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /vendor/assets/images/icons/Clipboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Clipboard@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Calendar.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Clipboard.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Gift-Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Gift-Box.png -------------------------------------------------------------------------------- /lib/flat-ui-rails/railtie.rb: -------------------------------------------------------------------------------- 1 | 2 | module FlatUi 3 | module Rails 4 | class Railtie < ::Rails::Railtie 5 | end 6 | end 7 | end 8 | end -------------------------------------------------------------------------------- /vendor/assets/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /vendor/assets/images/icons/Infinity-Loop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Infinity-Loop@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Retina-Ready@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Retina-Ready@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/Toilet-Paper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/Toilet-Paper@2x.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Retina-Ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Retina-Ready.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Toilet-Paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Toilet-Paper.png -------------------------------------------------------------------------------- /vendor/assets/images/icons/png/Infinity-Loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/images/icons/png/Infinity-Loop.png -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons/flat-ui-icons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/glyphicons/flat-ui-icons-regular.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/glyphicons/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons/flat-ui-icons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/glyphicons/flat-ui-icons-regular.woff -------------------------------------------------------------------------------- /vendor/assets/fonts/b3-glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/b3-glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/b3-glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/b3-glyphicons/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/b3-glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthdeus/flat-ui-rails/HEAD/vendor/assets/fonts/b3-glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.rbc 3 | .bundle 4 | .config 5 | .yardoc 6 | Gemfile.lock 7 | InstalledFiles 8 | _yardoc 9 | coverage 10 | doc/ 11 | lib/bundler/man 12 | pkg 13 | rdoc 14 | spec/reports 15 | test/tmp 16 | test/version_tmp 17 | tmp 18 | -------------------------------------------------------------------------------- /lib/flat-ui-rails.rb: -------------------------------------------------------------------------------- 1 | require "flat-ui-rails/version" 2 | 3 | module FlatUi 4 | module Rails 5 | if ::Rails.version.to_s < "3.1" 6 | require "flat-ui-rails/railtie" 7 | else 8 | require 'flat-ui-rails/engine' 9 | end 10 | end 11 | end 12 | 13 | -------------------------------------------------------------------------------- /lib/flat-ui-rails/engine.rb: -------------------------------------------------------------------------------- 1 | 2 | module FlatUi 3 | module Rails 4 | class Engine < ::Rails::Engine 5 | config.assets.paths << File.expand_path(File.join(File.dirname(__FILE__), '../vendor/fonts')) 6 | config.assets.precompile += %w( *.woff *.eot *.ttf *.svg ) 7 | end 8 | end 9 | end -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/loop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/paper-bag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flat-ui-rails.gemspec: -------------------------------------------------------------------------------- 1 | # -*- encoding: utf-8 -*- 2 | lib = File.expand_path("../lib", __FILE__) 3 | $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) 4 | require "flat-ui-rails/version" 5 | 6 | Gem::Specification.new do |gem| 7 | gem.name = "flat-ui-rails" 8 | gem.version = FlatUi::Rails::VERSION 9 | gem.authors = ["Jakub Arnold"] 10 | gem.email = ["darthdeus@gmail.com"] 11 | gem.description = %q{Flat-UI bundled for Rails Asset Pipeline} 12 | gem.summary = %q{Flat-UI bundled for Rails Asset Pipeline} 13 | gem.homepage = "https://github.com/darthdeus/flat-ui-rails" 14 | 15 | gem.files = `git ls-files`.split($/) 16 | gem.require_paths = ["lib"] 17 | end 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flat-UI for Rails Asset Pipeline 2 | 3 | # [THIS PROJECT IS NO LONGER MAINTAINED AND LOOKING FOR A NEW MAINTAINER](https://github.com/darthdeus/flat-ui-rails/issues/17) 4 | 5 | ## Installation 6 | 7 | Add this line to your application's Gemfile: 8 | 9 | gem "flat-ui-rails" 10 | 11 | And then execute: 12 | 13 | $ bundle 14 | 15 | Add flat-ui to your `application.css` 16 | 17 | *= require flat-ui 18 | 19 | or `application.css.scss` 20 | 21 | @import "flat-ui"; 22 | 23 | ## Contributing 24 | 25 | 1. Fork it 26 | 2. Create your feature branch (`git checkout -b my-new-feature`) 27 | 3. Commit your changes (`git commit -am 'Add some feature'`) 28 | 4. Push to the branch (`git push origin my-new-feature`) 29 | 5. Create new Pull Request 30 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | if [ $# -eq 0 ]; then 6 | echo "No tag supplied. Usage: ./update.sh master" 7 | exit 1 8 | fi 9 | 10 | TAG=$1 11 | EXTRACT_DIRECTORY="$$$(date "+%Y%m%d%H%M%S")" 12 | FILE_NAME="$EXTRACT_DIRECTORY.tar.gz" 13 | RELEASE_URL="https://github.com/designmodo/Flat-UI/archive/$TAG.tar.gz" 14 | RELEASE_PATH="$EXTRACT_DIRECTORY/Flat-UI-$TAG" 15 | VENDOR_PATH="vendor/assets" 16 | 17 | wget -O $FILE_NAME $RELEASE_URL 18 | mkdir $EXTRACT_DIRECTORY 19 | tar xfz $FILE_NAME -C $EXTRACT_DIRECTORY 20 | 21 | echo $RELEASE_PATH 22 | 23 | cp "$RELEASE_PATH/dist/css/flat-ui.css" "$VENDOR_PATH/stylesheets" 24 | cp "$RELEASE_PATH/dist/css/flat-ui.css.map" "$VENDOR_PATH/stylesheets" 25 | 26 | ## Sync images 27 | rm -rf "$VENDOR_PATH/images/*" && cp -r $RELEASE_PATH/dist/img/* "$VENDOR_PATH/images" 28 | 29 | ## Sync fonts 30 | rm -rf "$VENDOR_PATH/fonts/*" && cp -r $RELEASE_PATH/dist/fonts/* "$VENDOR_PATH/fonts" 31 | 32 | ## sync javascripts 33 | rm -rf "$VENDOR_PATH/javascripts/*" && cp $RELEASE_PATH/dist/js/flat-ui.js "$VENDOR_PATH/javascripts" 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013 Jakub Arnold 2 | 3 | MIT License 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/clocks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/mail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/chat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/toilet-paper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/book.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/retina.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/pencils.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/compas.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/ribbon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | POPULAR 9 | 10 | 14 | 21 | 25 | 29 | 30 | 33 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/icons/svg/gift-box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons/flat-ui-icons-regular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | { 7 | "fontFamily": "flat-ui-icons", 8 | "majorVersion": 1, 9 | "minorVersion": 1, 10 | "fontURL": "http://designmodo.com/flat", 11 | "designer": "Sergey Shmidt", 12 | "designerURL": "http://designmodo.com", 13 | "license": "Attribution-NonCommercial-NoDerivs 3.0 Unported", 14 | "licenseURL": "http://creativecommons.org/licenses/by-nc-nd/3.0/", 15 | "version": "Version 1.1", 16 | "fontId": "flat-ui-icons", 17 | "psName": "flat-ui-icons", 18 | "subFamily": "Regular", 19 | "fullName": "flat-ui-icons", 20 | "description": "Generated by IcoMoon" 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 | 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 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /vendor/assets/fonts/b3-glyphicons/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 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 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | --------------------------------------------------------------------------------