pax_global_header00006660000000000000000000000064143264743700014524gustar00rootroot0000000000000052 comment=a784524c6b31a9e06b3831897be76e0c421995c3 purecss-sass-3.0.0/000077500000000000000000000000001432647437000141575ustar00rootroot00000000000000purecss-sass-3.0.0/.github/000077500000000000000000000000001432647437000155175ustar00rootroot00000000000000purecss-sass-3.0.0/.github/workflows/000077500000000000000000000000001432647437000175545ustar00rootroot00000000000000purecss-sass-3.0.0/.github/workflows/ci.yml000066400000000000000000000007301432647437000206720ustar00rootroot00000000000000name: CI on: [push, pull_request] jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: ['2.6', '2.7', '3.0', '3.1'] name: Ruby ${{ matrix.ruby }} steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rake purecss-sass-3.0.0/.gitignore000066400000000000000000000003371432647437000161520ustar00rootroot00000000000000/.bundle/ /.sass-cache/ /.yardoc /_yardoc/ /coverage/ /doc/ /Gemfile.lock /pkg/ /spec/reports/ /spec/support/dummy_rails_app/log/ /spec/support/dummy_rails_app/public/ /spec/support/dummy_rails_app/tmp/ /tmp/ .rspec_status purecss-sass-3.0.0/.rspec000066400000000000000000000000651432647437000152750ustar00rootroot00000000000000--format documentation --color --require spec_helper purecss-sass-3.0.0/.rubocop.yml000066400000000000000000000007061432647437000164340ustar00rootroot00000000000000Layout/IndentationConsistency: EnforcedStyle: indented_internal_methods Metrics/BlockLength: ExcludedMethods: [RSpec.describe, context] Metrics/LineLength: Max: 100 Metrics/ParameterLists: Max: 6 Naming/FileName: Exclude: - lib/* Naming/MethodParameterName: MinNameLength: 2 Style/BlockDelimiters: EnforcedStyle: braces_for_chaining Style/Documentation: Enabled: false Style/FrozenStringLiteralComment: EnforcedStyle: never purecss-sass-3.0.0/CHANGELOG.md000066400000000000000000000030651432647437000157740ustar00rootroot00000000000000## 3.0.0 (2022-10-27) - Update assets to match upstream version Framework version: Pure v3.0.0 ## 2.2.0 (2022-10-20) - Update assets to match upstream version Framework version: Pure v2.2.0 ## 2.1.0 (2022-03-15) - Update assets to match upstream version Framework version: Pure v2.1.0 ## 2.0.6 (2021-06-10) - Update assets to match upstream version Framework version: Pure v2.0.6 ## 2.0.5 (2021-01-21) - Update assets to match upstream version Framework version: Pure v2.0.5 ## 2.0.4 (2021-01-20) - Update assets to match upstream version Framework version: Pure v2.0.4 ## 2.0.3 (2020-05-12) - Update assets to match upstream version Framework version: Pure v2.0.3 ## 2.0.2 (2020-05-12) - Update assets to match upstream version Framework version: Pure v2.0.2 ## 2.0.1 (2020-05-07) - Update assets to match upstream version Framework version: Pure v2.0.1 ## 2.0.0 (2020-05-06) - Update assets to match upstream version Framework version: Pure v2.0.0 ## 1.0.1.1 (2019-10-14) - Replace `sass` dependency with `sassc`. Framework version: Pure v1.0.1 ## 1.0.1 (2019-07-14) - Update assets to match upstream version - Drop bower support Framework version: Pure v1.0.1 ## 1.0.0 (2017-06-09) - Update assets to match upstream version Framework version: Pure v1.0.0 ## 0.6.2 (2017-01-06) - Update assets to match upstream version Framework version: Pure v0.6.2 ## 0.6.1 (2016-12-14) - Drop Compass support - Update assets to match upstream version Framework version: Pure v0.6.1 ## 0.6.0 (2015-07-22) - Initial release Framework version: Pure v0.6.0 purecss-sass-3.0.0/Gemfile000066400000000000000000000001411432647437000154460ustar00rootroot00000000000000source 'https://rubygems.org' # Specify your gem's dependencies in purecss-sass.gemspec gemspec purecss-sass-3.0.0/LICENSE.txt000066400000000000000000000020721432647437000160030ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2015 Dmitriy Tarasov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. purecss-sass-3.0.0/README.md000066400000000000000000000042251432647437000154410ustar00rootroot00000000000000# Pure CSS for Sass [![Gem Version](https://badge.fury.io/rb/purecss-sass.svg)](https://badge.fury.io/rb/purecss-sass) [![npm version](https://badge.fury.io/js/purecss-sass.svg)](https://badge.fury.io/js/purecss-sass) [![CI](https://github.com/rubysamurai/purecss-sass/workflows/CI/badge.svg)](https://github.com/rubysamurai/purecss-sass/actions?query=workflow%3ACI) `purecss-sass` is a Sass-powered version of [Pure CSS](https://purecss.io/) for your applications, allowing to include all of Pure's components at once or load them individually. Original Pure CSS files are converted using `sass-convert` and otherwise untouched and unmodified. ## npm and Yarn To install `purecss-sass` npm package execute this command: ``` $ npm install purecss-sass ``` If you are using Yarn: ``` $ yarn add purecss-sass ``` ## Ruby on Rails Open your `Gemfile` and add this line: ```ruby gem 'purecss-sass' ``` Save `Gemfile` and execute `bundle` command to install the gem. Open `/app/assets/stylesheets/application.scss` file and add this line: ```scss @import 'purecss'; ``` > Note: Default Rails-generated application comes with `.css` file extension for stylesheet assets files, make sure you change it to `.scss` and remove all the `*= require_tree .` and `*= require_self` statements from the file. ## Usage By default, using `@import 'purecss';`, all of Pure CSS responsive components are imported. You can import individual Sass components like this: ```scss @import 'purecss/base'; @import 'purecss/buttons'; @import 'purecss/forms'; @import 'purecss/forms-nr'; @import 'purecss/grids'; @import 'purecss/grids-responsive'; @import 'purecss/menus'; @import 'purecss/tables'; ``` ## Versioning Pure CSS for Sass follows the upstream version of Pure. But the last version number may be ahead, in case there is a need to release project-specific changes. ## Credits Pure CSS for Sass is inspired from [bootstrap-sass](https://github.com/twbs/bootstrap-sass) by Bootstrap team. ## License Pure © Yahoo! Inc. Licensed under the [BSD](https://github.com/pure-css/pure/blob/master/LICENSE) license. `purecss-sass` © Dmitriy Tarasov. Licensed under the [MIT](LICENSE.txt) licence. purecss-sass-3.0.0/Rakefile000066400000000000000000000001621432647437000156230ustar00rootroot00000000000000require 'bundler/gem_tasks' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task default: :spec purecss-sass-3.0.0/bin/000077500000000000000000000000001432647437000147275ustar00rootroot00000000000000purecss-sass-3.0.0/bin/console000077500000000000000000000005331432647437000163200ustar00rootroot00000000000000#!/usr/bin/env ruby require 'bundler/setup' require 'purecss-sass' # You can add fixtures and/or initialization code here to make experimenting # with your gem easier. You can also use a different console, if you like. # (If you use this, don't forget to add pry to your Gemfile!) # require "pry" # Pry.start require 'irb' IRB.start(__FILE__) purecss-sass-3.0.0/bin/setup000077500000000000000000000002031432647437000160100ustar00rootroot00000000000000#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' set -vx bundle install # Do any other automated setup that you need to do here purecss-sass-3.0.0/lib/000077500000000000000000000000001432647437000147255ustar00rootroot00000000000000purecss-sass-3.0.0/lib/purecss-sass.rb000066400000000000000000000014141432647437000177050ustar00rootroot00000000000000module Purecss module Sass class << self def load! if defined?(::Rails) register_rails_engine elsif defined?(::Sprockets) register_sprockets end configure_sass end def gem_path @gem_path ||= File.expand_path('..', File.dirname(__FILE__)) end def stylesheets_path File.join(gem_path, 'vendor/assets/stylesheets') end private def configure_sass require 'sassc' ::SassC.load_paths << stylesheets_path end def register_rails_engine require 'purecss/sass/engine' end def register_sprockets Sprockets.append_path(stylesheets_path) end end end end Purecss::Sass.load! purecss-sass-3.0.0/lib/purecss/000077500000000000000000000000001432647437000164115ustar00rootroot00000000000000purecss-sass-3.0.0/lib/purecss/sass/000077500000000000000000000000001432647437000173625ustar00rootroot00000000000000purecss-sass-3.0.0/lib/purecss/sass/engine.rb000066400000000000000000000004121432647437000211510ustar00rootroot00000000000000module Purecss module Sass module Rails class Engine < ::Rails::Engine initializer 'purecss-sass.assets.precompile' do |app| app.config.assets.paths << root.join('vendor/assets/stylesheets').to_s end end end end end purecss-sass-3.0.0/lib/purecss/sass/version.rb000066400000000000000000000001041432647437000213670ustar00rootroot00000000000000module Purecss module Sass VERSION = '3.0.0'.freeze end end purecss-sass-3.0.0/package.json000066400000000000000000000011651432647437000164500ustar00rootroot00000000000000{ "name": "purecss-sass", "version": "3.0.0", "description": "Pure CSS framework, converted to Sass and ready to use in Sass powered applications", "keywords": [ "pure", "purecss", "scss", "sass" ], "homepage": "https://github.com/rubysamurai/purecss-sass", "bugs": { "url": "https://github.com/rubysamurai/purecss-sass/issues" }, "license": "MIT", "author": "Dmitriy Tarasov ", "files": [ "vendor" ], "main": "vendor/assets/stylesheets/_purecss.scss", "repository": { "type": "git", "url": "https://github.com/rubysamurai/purecss-sass.git" } } purecss-sass-3.0.0/purecss-sass.gemspec000066400000000000000000000025521432647437000201630ustar00rootroot00000000000000lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'purecss/sass/version' Gem::Specification.new do |spec| spec.name = 'purecss-sass' spec.version = Purecss::Sass::VERSION spec.authors = ['Dmitriy Tarasov'] spec.email = ['info@rubysamurai.com'] spec.summary = 'Pure CSS framework, converted to Sass' spec.description = 'Pure CSS framework, converted to Sass' spec.homepage = 'https://github.com/rubysamurai/purecss-sass' spec.license = 'MIT' spec.metadata['bug_tracker_uri'] = 'https://github.com/rubysamurai/purecss-sass/issues' spec.metadata['changelog_uri'] = 'https://github.com/rubysamurai/purecss-sass/blob/master/CHANGELOG.md' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = Gem::Requirement.new('>= 2.0.0') spec.add_runtime_dependency 'sassc', '>= 2.0' spec.add_development_dependency 'railties', '>= 5.0' spec.add_development_dependency 'rspec', '>= 3.9' spec.add_development_dependency 'sassc-rails', '>= 2.0' spec.add_development_dependency 'sprockets-rails', '>= 3.0' end purecss-sass-3.0.0/spec/000077500000000000000000000000001432647437000151115ustar00rootroot00000000000000purecss-sass-3.0.0/spec/purecss/000077500000000000000000000000001432647437000165755ustar00rootroot00000000000000purecss-sass-3.0.0/spec/purecss/rails_app_spec.rb000066400000000000000000000002551432647437000221100ustar00rootroot00000000000000RSpec.describe 'Rails app' do it 'adds stylesheet files' do expect(Rails.application.assets.find_asset('custom')) .to be_instance_of(Sprockets::Asset) end end purecss-sass-3.0.0/spec/purecss/sassc_compilation_spec.rb000066400000000000000000000007141432647437000236500ustar00rootroot00000000000000RSpec.describe 'Sass C compilation' do it 'compiles scss to css' do path = '../../vendor/assets/stylesheets' file = '_purecss' sass_engine = SassC::Engine.new( File.read(File.expand_path("#{path}/#{file}.scss", __dir__)), cache_location: 'tmp/.sassc-cache', load_paths: [path], syntax: :scss ) expect { File.open("tmp/#{file}.css", 'w') { |f| f.write(sass_engine.render) } }.not_to raise_error end end purecss-sass-3.0.0/spec/spec_helper.rb000066400000000000000000000013341432647437000177300ustar00rootroot00000000000000ENV['RAILS_ENV'] ||= 'test' require File.expand_path('support/dummy_rails_app/config/environment.rb', __dir__) require 'bundler/setup' require 'purecss-sass' RSpec.configure do |config| # Enable flags like --only-failures and --next-failure config.example_status_persistence_file_path = '.rspec_status' # Disable RSpec exposing methods globally on `Module` and `main` config.disable_monkey_patching! config.expect_with :rspec do |c| c.syntax = :expect end config.before(:suite) do gem_path = File.expand_path('..', File.dirname(__FILE__)) tmp_dir_path = File.join(gem_path, 'tmp') FileUtils.mkdir_p(tmp_dir_path) end config.after(:suite) do FileUtils.rm_rf('tmp', secure: true) end end purecss-sass-3.0.0/spec/support/000077500000000000000000000000001432647437000166255ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/000077500000000000000000000000001432647437000220125ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/README.rdoc000066400000000000000000000000731432647437000236200ustar00rootroot00000000000000== README This is a dummy Rails app for testing purposes. purecss-sass-3.0.0/spec/support/dummy_rails_app/Rakefile000066400000000000000000000003651432647437000234630ustar00rootroot00000000000000# Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. require File.expand_path('config/application', __dir__) Rails.application.load_tasks purecss-sass-3.0.0/spec/support/dummy_rails_app/app/000077500000000000000000000000001432647437000225725ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/000077500000000000000000000000001432647437000240745ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/config/000077500000000000000000000000001432647437000253415ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/config/manifest.js000066400000000000000000000001451432647437000275050ustar00rootroot00000000000000//= link_tree ../images //= link_directory ../javascripts .js //= link_directory ../stylesheets .css purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/images/000077500000000000000000000000001432647437000253415ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/images/.keep000066400000000000000000000000001432647437000262540ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/javascripts/000077500000000000000000000000001432647437000264255ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/javascripts/application.js000066400000000000000000000000011432647437000312550ustar00rootroot00000000000000 purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/stylesheets/000077500000000000000000000000001432647437000264505ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/stylesheets/application.css000066400000000000000000000012561432647437000314710ustar00rootroot00000000000000/* * This is a manifest file that'll be compiled into application.css, which will include all the files * listed below. * * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. * * You're free to add application-wide styles to this file and they'll appear at the bottom of the * compiled file so the styles you add here take precedence over styles defined in any styles * defined in the other CSS/SCSS files in this directory. It is generally better to create a new * file per style scope. * *= require_tree . *= require_self */ purecss-sass-3.0.0/spec/support/dummy_rails_app/app/assets/stylesheets/custom.scss000066400000000000000000000000231432647437000306520ustar00rootroot00000000000000@import 'purecss'; purecss-sass-3.0.0/spec/support/dummy_rails_app/app/controllers/000077500000000000000000000000001432647437000251405ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/controllers/application_controller.rb000066400000000000000000000003141432647437000322310ustar00rootroot00000000000000class ApplicationController < ActionController::Base # Prevent CSRF attacks by raising an exception. # For APIs, you may want to use :null_session instead. protect_from_forgery with: :exception end purecss-sass-3.0.0/spec/support/dummy_rails_app/app/controllers/concerns/000077500000000000000000000000001432647437000267525ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/controllers/concerns/.keep000066400000000000000000000000001432647437000276650ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/controllers/pages_controller.rb000066400000000000000000000001021432647437000310200ustar00rootroot00000000000000class PagesController < ApplicationController def main; end end purecss-sass-3.0.0/spec/support/dummy_rails_app/app/helpers/000077500000000000000000000000001432647437000242345ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/helpers/application_helper.rb000066400000000000000000000000351432647437000304210ustar00rootroot00000000000000module ApplicationHelper end purecss-sass-3.0.0/spec/support/dummy_rails_app/app/views/000077500000000000000000000000001432647437000237275ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/views/layouts/000077500000000000000000000000001432647437000254275ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/views/layouts/application.html.erb000066400000000000000000000003741432647437000313730ustar00rootroot00000000000000 purecss-sass dummy Rails app <%= stylesheet_link_tag 'application', media: 'all' %> <%= javascript_include_tag 'application' %> <%= csrf_meta_tags %> <%= yield %> purecss-sass-3.0.0/spec/support/dummy_rails_app/app/views/pages/000077500000000000000000000000001432647437000250265ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/app/views/pages/main.html.erb000066400000000000000000000055371432647437000274210ustar00rootroot00000000000000

Grids

Thirds

Thirds

Thirds

Forms

A compact inline form

Buttons

A Pure Button An Active Button A Primary Button

Tables

# Make Model Year
1 Honda Accord 2009
2 Toyota Camry 2012
3 Hyundai Elantra 2010
4 Ford Focus 2008
5 Nissan Sentra 2011
6 BMW M3 2009
7 Honda Civic 2010
8 Kia Soul 2010

Menus

purecss-sass-3.0.0/spec/support/dummy_rails_app/config.ru000066400000000000000000000002311432647437000236230ustar00rootroot00000000000000# This file is used by Rack-based servers to start the application. require ::File.expand_path('../config/environment', __FILE__) run Rails.application purecss-sass-3.0.0/spec/support/dummy_rails_app/config/000077500000000000000000000000001432647437000232575ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/config/application.rb000066400000000000000000000004171432647437000261110ustar00rootroot00000000000000require File.expand_path('boot', __dir__) require 'rails' require 'action_controller/railtie' require 'action_view/railtie' require 'sassc-rails' require 'sprockets/railtie' require 'purecss-sass' module DummyRailsApp class Application < Rails::Application end end purecss-sass-3.0.0/spec/support/dummy_rails_app/config/boot.rb000066400000000000000000000002001432647437000245370ustar00rootroot00000000000000ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) require 'bundler/setup' # Set up gems listed in the Gemfile. purecss-sass-3.0.0/spec/support/dummy_rails_app/config/environment.rb000066400000000000000000000002221432647437000261440ustar00rootroot00000000000000# Load the Rails application. require File.expand_path('application', __dir__) # Initialize the Rails application. Rails.application.initialize! purecss-sass-3.0.0/spec/support/dummy_rails_app/config/environments/000077500000000000000000000000001432647437000260065ustar00rootroot00000000000000purecss-sass-3.0.0/spec/support/dummy_rails_app/config/environments/test.rb000066400000000000000000000034001432647437000273070ustar00rootroot00000000000000Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb. # The test environment is used exclusively to run your application's # test suite. You never need to work with it otherwise. Remember that # your test database is "scratch space" for the test suite and is wiped # and recreated between test runs. Don't rely on the data there! config.cache_classes = true # Do not eager load code on boot. This avoids loading your whole application # just for the purpose of running a single test. If you are using a tool that # preloads Rails for running tests, you may have to set it to true. config.eager_load = false # Configure static file server for tests with Cache-Control for performance. config.public_file_server.enabled = true config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' } # Show full error reports and disable caching. config.consider_all_requests_local = true config.action_controller.perform_caching = false # Raise exceptions instead of rendering exception templates. config.action_dispatch.show_exceptions = false # Disable request forgery protection in test environment. config.action_controller.allow_forgery_protection = false # Tell Action Mailer not to deliver emails to the real world. # The :test delivery method accumulates sent emails in the # ActionMailer::Base.deliveries array. # config.action_mailer.delivery_method = :test # Randomize the order test cases are executed. config.active_support.test_order = :random # Print deprecation notices to the stderr. config.active_support.deprecation = :stderr # Raises error for missing translations # config.action_view.raise_on_missing_translations = true end purecss-sass-3.0.0/spec/support/dummy_rails_app/config/routes.rb000066400000000000000000000000711432647437000251230ustar00rootroot00000000000000Rails.application.routes.draw do root 'pages#main' end purecss-sass-3.0.0/vendor/000077500000000000000000000000001432647437000154545ustar00rootroot00000000000000purecss-sass-3.0.0/vendor/assets/000077500000000000000000000000001432647437000167565ustar00rootroot00000000000000purecss-sass-3.0.0/vendor/assets/stylesheets/000077500000000000000000000000001432647437000213325ustar00rootroot00000000000000purecss-sass-3.0.0/vendor/assets/stylesheets/_purecss.scss000066400000000000000000000002431432647437000240510ustar00rootroot00000000000000@import 'purecss/base'; @import 'purecss/buttons'; @import 'purecss/forms'; @import 'purecss/grids-responsive'; @import 'purecss/menus'; @import 'purecss/tables'; purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/000077500000000000000000000000001432647437000230165ustar00rootroot00000000000000purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/_base.scss000066400000000000000000000157221432647437000247730ustar00rootroot00000000000000/*! Pure v3.0.0 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE */ /*! normalize.css v | MIT License | https://necolas.github.io/normalize.css/ Copyright (c) Nicolas Gallagher and Jonathan Neal */ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"] { &::-webkit-inner-spin-button, &::-webkit-outer-spin-button { height: auto; } } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ &::-webkit-search-decoration { -webkit-appearance: none; } } /** * Remove the inner padding in Chrome and Safari on macOS. */ /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template, [hidden] { display: none; } /** * Add the correct display in IE 10. */ /*csslint important:false*/ /* ========================================================================== Pure Base Extras ========================================================================== */ /** * Extra rules that Pure adds on top of Normalize.css */ html { font-family: sans-serif; } /** * Always hide an element when it has the `hidden` HTML attribute. */ .hidden, [hidden] { display: none !important; } /** * Add this class to an image to make it fit within it's fluid parent wrapper while maintaining * aspect ratio. */ .pure-img { max-width: 100%; height: auto; display: block; } purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/_buttons.scss000066400000000000000000000056351432647437000255610ustar00rootroot00000000000000/*! Pure v3.0.0 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE */ .pure-button { /* Structure */ display: inline-block; line-height: normal; white-space: nowrap; vertical-align: middle; text-align: center; cursor: pointer; -webkit-user-drag: none; -webkit-user-select: none; user-select: none; box-sizing: border-box; &::-moz-focus-inner { padding: 0; border: 0; } } /* Firefox: Get rid of the inner focus border */ /* Inherit .pure-g styles */ .pure-button-group { letter-spacing: -0.31em; /* Webkit: collapse white-space between units */ text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */ } .opera-only :-o-prefocus { word-spacing: -0.43em; } .pure-button-group { word-spacing: -0.43em; .pure-button { letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } } /*csslint outline-none:false*/ .pure-button { font-family: inherit; font-size: 100%; padding: 0.5em 1em; color: rgba(0, 0, 0, 0.8); border: none rgba(0, 0, 0, 0); background-color: #E6E6E6; text-decoration: none; border-radius: 2px; } .pure-button-hover { background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1)); } .pure-button { &:hover { background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1)); } &:focus { background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1)); outline: 0; } } .pure-button-active { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset; border-color: #000; } .pure-button { &:active { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset; border-color: #000; } &[disabled] { border: none; background-image: none; opacity: 0.40; cursor: not-allowed; box-shadow: none; pointer-events: none; } } .pure-button-disabled { border: none; background-image: none; opacity: 0.40; cursor: not-allowed; box-shadow: none; pointer-events: none; &:hover, &:focus, &:active { border: none; background-image: none; opacity: 0.40; cursor: not-allowed; box-shadow: none; pointer-events: none; } } .pure-button-hidden { display: none; } .pure-button-primary, .pure-button-selected { background-color: rgb(0, 120, 231); color: #fff; } a { &.pure-button-primary, &.pure-button-selected { background-color: rgb(0, 120, 231); color: #fff; } } /* Button Groups */ .pure-button-group .pure-button { margin: 0; border-radius: 0; border-right: 1px solid rgba(0, 0, 0, 0.2); &:first-child { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } &:last-child { border-top-right-radius: 2px; border-bottom-right-radius: 2px; border-right: none; } } purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/_forms.scss000066400000000000000000000205121432647437000252000ustar00rootroot00000000000000/*! Pure v3.0.0 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE */ /*csslint box-model:false*/ /* Box-model set to false because we're setting a height on select elements, which also have border and padding. This is done because some browsers don't render the padding. We explicitly set the box-model for select elements to border-box, so we can ignore the csslint warning. */ .pure-form { input { &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"] { padding: 0.5em 0.6em; display: inline-block; border: 1px solid #ccc; box-shadow: inset 0 1px 3px #ddd; border-radius: 4px; vertical-align: middle; box-sizing: border-box; } } select, textarea { padding: 0.5em 0.6em; display: inline-block; border: 1px solid #ccc; box-shadow: inset 0 1px 3px #ddd; border-radius: 4px; vertical-align: middle; box-sizing: border-box; } input { &:not([type]) { padding: 0.5em 0.6em; display: inline-block; border: 1px solid #ccc; box-shadow: inset 0 1px 3px #ddd; border-radius: 4px; box-sizing: border-box; } &[type="color"] { padding: 0.2em 0.5em; } &[type="text"]:focus, &[type="password"]:focus, &[type="email"]:focus, &[type="url"]:focus, &[type="date"]:focus, &[type="month"]:focus, &[type="time"]:focus, &[type="datetime"]:focus, &[type="datetime-local"]:focus, &[type="week"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="tel"]:focus, &[type="color"]:focus { outline: 0; border-color: #129FEA; } } select:focus, textarea:focus { outline: 0; border-color: #129FEA; } input { &:not([type]):focus { outline: 0; border-color: #129FEA; } &[type="file"]:focus, &[type="radio"]:focus, &[type="checkbox"]:focus { outline: thin solid #129FEA; outline: 1px auto #129FEA; } } .pure-checkbox, .pure-radio { margin: 0.5em 0; display: block; } input { &[type="text"][disabled], &[type="password"][disabled], &[type="email"][disabled], &[type="url"][disabled], &[type="date"][disabled], &[type="month"][disabled], &[type="time"][disabled], &[type="datetime"][disabled], &[type="datetime-local"][disabled], &[type="week"][disabled], &[type="number"][disabled], &[type="search"][disabled], &[type="tel"][disabled], &[type="color"][disabled] { cursor: not-allowed; background-color: #eaeded; color: #cad2d3; } } select[disabled], textarea[disabled] { cursor: not-allowed; background-color: #eaeded; color: #cad2d3; } input { &:not([type])[disabled] { cursor: not-allowed; background-color: #eaeded; color: #cad2d3; } &[readonly] { background-color: #eee; /* menu hover bg color */ color: #777; /* menu text color */ border-color: #ccc; } } select[readonly], textarea[readonly] { background-color: #eee; /* menu hover bg color */ color: #777; /* menu text color */ border-color: #ccc; } input:focus:invalid, textarea:focus:invalid, select:focus:invalid { color: #b94a48; border-color: #e9322d; } input { &[type="file"]:focus:invalid:focus, &[type="radio"]:focus:invalid:focus, &[type="checkbox"]:focus:invalid:focus { outline-color: #e9322d; } } select { /* Normalizes the height; padding is not sufficient. */ height: 2.25em; border: 1px solid #ccc; background-color: white; &[multiple] { height: auto; } } label { margin: 0.5em 0 0.2em; } fieldset { margin: 0; padding: 0.35em 0 0.75em; border: 0; } legend { display: block; width: 100%; padding: 0.3em 0; margin-bottom: 0.3em; color: #333; border-bottom: 1px solid #e5e5e5; } } /* Need to separate out the :not() selector from the rest of the CSS 2.1 selectors since IE8 won't execute CSS that contains a CSS3 selector. */ /* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */ /* May be able to remove this tweak as color inputs become more standardized across browsers. */ /* Need to separate out the :not() selector from the rest of the CSS 2.1 selectors since IE8 won't execute CSS that contains a CSS3 selector. */ /* Need to separate out the :not() selector from the rest of the CSS 2.1 selectors since IE8 won't execute CSS that contains a CSS3 selector. */ .pure-form-stacked { input { &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"], &[type="file"] { display: block; margin: 0.25em 0; } } select, label, textarea, input:not([type]) { display: block; margin: 0.25em 0; } } /* Need to separate out the :not() selector from the rest of the CSS 2.1 selectors since IE8 won't execute CSS that contains a CSS3 selector. */ .pure-form-aligned { input, textarea, select { display: inline-block; vertical-align: middle; } } .pure-form-message-inline { display: inline-block; vertical-align: middle; } .pure-form-aligned { textarea { vertical-align: top; } .pure-control-group { margin-bottom: 0.5em; label { text-align: right; display: inline-block; vertical-align: middle; width: 10em; margin: 0 1em 0 0; } } .pure-controls { margin: 1.5em 0 0 11em; } } /* Aligned Forms */ /* Rounded Inputs */ .pure-form { input.pure-input-rounded, .pure-input-rounded { border-radius: 2em; padding: 0.5em 1em; } .pure-group { fieldset { margin-bottom: 10px; } input, textarea { display: block; padding: 10px; margin: 0 0 -1px; border-radius: 0; position: relative; top: -1px; } input:focus, textarea:focus { z-index: 3; } input:first-child, textarea:first-child { top: 1px; border-radius: 4px 4px 0 0; margin: 0; } input:first-child:last-child, textarea:first-child:last-child { top: 1px; border-radius: 4px; margin: 0; } input:last-child, textarea:last-child { top: -2px; border-radius: 0 0 4px 4px; margin: 0; } button { margin: 0.35em 0; } } .pure-input-1 { width: 100%; } .pure-input-3-4 { width: 75%; } .pure-input-2-3 { width: 66%; } .pure-input-1-2 { width: 50%; } .pure-input-1-3 { width: 33%; } .pure-input-1-4 { width: 25%; } } /* Grouped Inputs */ /* Inline help for forms */ .pure-form-message-inline { display: inline-block; padding-left: 0.3em; color: #666; vertical-align: middle; font-size: 0.875em; } /* Block help for forms */ .pure-form-message { display: block; color: #666; font-size: 0.875em; } @media only screen and (max-width: 480px) { .pure-form { button[type="submit"] { margin: 0.7em 0 0; } input { &:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"] { margin-bottom: 0.3em; display: block; } } label { margin-bottom: 0.3em; display: block; } } .pure-group input { &:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"] { margin-bottom: 0; } } .pure-form-aligned { .pure-control-group label { margin-bottom: 0.3em; text-align: left; display: block; width: 100%; } .pure-controls { margin: 1.5em 0 0 0; } } .pure-form-message-inline, .pure-form-message { display: block; font-size: 0.75em; /* Increased bottom padding to make it group with its related input element. */ padding: 0.2em 0 0.8em; } } purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/_grids-responsive.scss000066400000000000000000000431771432647437000273710ustar00rootroot00000000000000/*! Pure v3.0.0 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE */ @media screen and (min-width: 35.5em) { .pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-1-2, .pure-u-sm-1-3, .pure-u-sm-2-3, .pure-u-sm-1-4, .pure-u-sm-3-4, .pure-u-sm-1-5, .pure-u-sm-2-5, .pure-u-sm-3-5, .pure-u-sm-4-5, .pure-u-sm-5-5, .pure-u-sm-1-6, .pure-u-sm-5-6, .pure-u-sm-1-8, .pure-u-sm-3-8, .pure-u-sm-5-8, .pure-u-sm-7-8, .pure-u-sm-1-12, .pure-u-sm-5-12, .pure-u-sm-7-12, .pure-u-sm-11-12, .pure-u-sm-1-24, .pure-u-sm-2-24, .pure-u-sm-3-24, .pure-u-sm-4-24, .pure-u-sm-5-24, .pure-u-sm-6-24, .pure-u-sm-7-24, .pure-u-sm-8-24, .pure-u-sm-9-24, .pure-u-sm-10-24, .pure-u-sm-11-24, .pure-u-sm-12-24, .pure-u-sm-13-24, .pure-u-sm-14-24, .pure-u-sm-15-24, .pure-u-sm-16-24, .pure-u-sm-17-24, .pure-u-sm-18-24, .pure-u-sm-19-24, .pure-u-sm-20-24, .pure-u-sm-21-24, .pure-u-sm-22-24, .pure-u-sm-23-24, .pure-u-sm-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-sm-1-24 { width: 4.1667%; } .pure-u-sm-1-12, .pure-u-sm-2-24 { width: 8.3333%; } .pure-u-sm-1-8, .pure-u-sm-3-24 { width: 12.5000%; } .pure-u-sm-1-6, .pure-u-sm-4-24 { width: 16.6667%; } .pure-u-sm-1-5 { width: 20%; } .pure-u-sm-5-24 { width: 20.8333%; } .pure-u-sm-1-4, .pure-u-sm-6-24 { width: 25%; } .pure-u-sm-7-24 { width: 29.1667%; } .pure-u-sm-1-3, .pure-u-sm-8-24 { width: 33.3333%; } .pure-u-sm-3-8, .pure-u-sm-9-24 { width: 37.5000%; } .pure-u-sm-2-5 { width: 40%; } .pure-u-sm-5-12, .pure-u-sm-10-24 { width: 41.6667%; } .pure-u-sm-11-24 { width: 45.8333%; } .pure-u-sm-1-2, .pure-u-sm-12-24 { width: 50%; } .pure-u-sm-13-24 { width: 54.1667%; } .pure-u-sm-7-12, .pure-u-sm-14-24 { width: 58.3333%; } .pure-u-sm-3-5 { width: 60%; } .pure-u-sm-5-8, .pure-u-sm-15-24 { width: 62.5000%; } .pure-u-sm-2-3, .pure-u-sm-16-24 { width: 66.6667%; } .pure-u-sm-17-24 { width: 70.8333%; } .pure-u-sm-3-4, .pure-u-sm-18-24 { width: 75%; } .pure-u-sm-19-24 { width: 79.1667%; } .pure-u-sm-4-5 { width: 80%; } .pure-u-sm-5-6, .pure-u-sm-20-24 { width: 83.3333%; } .pure-u-sm-7-8, .pure-u-sm-21-24 { width: 87.5000%; } .pure-u-sm-11-12, .pure-u-sm-22-24 { width: 91.6667%; } .pure-u-sm-23-24 { width: 95.8333%; } .pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-5-5, .pure-u-sm-24-24 { width: 100%; } } @media screen and (min-width: 48em) { .pure-u-md-1, .pure-u-md-1-1, .pure-u-md-1-2, .pure-u-md-1-3, .pure-u-md-2-3, .pure-u-md-1-4, .pure-u-md-3-4, .pure-u-md-1-5, .pure-u-md-2-5, .pure-u-md-3-5, .pure-u-md-4-5, .pure-u-md-5-5, .pure-u-md-1-6, .pure-u-md-5-6, .pure-u-md-1-8, .pure-u-md-3-8, .pure-u-md-5-8, .pure-u-md-7-8, .pure-u-md-1-12, .pure-u-md-5-12, .pure-u-md-7-12, .pure-u-md-11-12, .pure-u-md-1-24, .pure-u-md-2-24, .pure-u-md-3-24, .pure-u-md-4-24, .pure-u-md-5-24, .pure-u-md-6-24, .pure-u-md-7-24, .pure-u-md-8-24, .pure-u-md-9-24, .pure-u-md-10-24, .pure-u-md-11-24, .pure-u-md-12-24, .pure-u-md-13-24, .pure-u-md-14-24, .pure-u-md-15-24, .pure-u-md-16-24, .pure-u-md-17-24, .pure-u-md-18-24, .pure-u-md-19-24, .pure-u-md-20-24, .pure-u-md-21-24, .pure-u-md-22-24, .pure-u-md-23-24, .pure-u-md-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-md-1-24 { width: 4.1667%; } .pure-u-md-1-12, .pure-u-md-2-24 { width: 8.3333%; } .pure-u-md-1-8, .pure-u-md-3-24 { width: 12.5000%; } .pure-u-md-1-6, .pure-u-md-4-24 { width: 16.6667%; } .pure-u-md-1-5 { width: 20%; } .pure-u-md-5-24 { width: 20.8333%; } .pure-u-md-1-4, .pure-u-md-6-24 { width: 25%; } .pure-u-md-7-24 { width: 29.1667%; } .pure-u-md-1-3, .pure-u-md-8-24 { width: 33.3333%; } .pure-u-md-3-8, .pure-u-md-9-24 { width: 37.5000%; } .pure-u-md-2-5 { width: 40%; } .pure-u-md-5-12, .pure-u-md-10-24 { width: 41.6667%; } .pure-u-md-11-24 { width: 45.8333%; } .pure-u-md-1-2, .pure-u-md-12-24 { width: 50%; } .pure-u-md-13-24 { width: 54.1667%; } .pure-u-md-7-12, .pure-u-md-14-24 { width: 58.3333%; } .pure-u-md-3-5 { width: 60%; } .pure-u-md-5-8, .pure-u-md-15-24 { width: 62.5000%; } .pure-u-md-2-3, .pure-u-md-16-24 { width: 66.6667%; } .pure-u-md-17-24 { width: 70.8333%; } .pure-u-md-3-4, .pure-u-md-18-24 { width: 75%; } .pure-u-md-19-24 { width: 79.1667%; } .pure-u-md-4-5 { width: 80%; } .pure-u-md-5-6, .pure-u-md-20-24 { width: 83.3333%; } .pure-u-md-7-8, .pure-u-md-21-24 { width: 87.5000%; } .pure-u-md-11-12, .pure-u-md-22-24 { width: 91.6667%; } .pure-u-md-23-24 { width: 95.8333%; } .pure-u-md-1, .pure-u-md-1-1, .pure-u-md-5-5, .pure-u-md-24-24 { width: 100%; } } @media screen and (min-width: 64em) { .pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-1-2, .pure-u-lg-1-3, .pure-u-lg-2-3, .pure-u-lg-1-4, .pure-u-lg-3-4, .pure-u-lg-1-5, .pure-u-lg-2-5, .pure-u-lg-3-5, .pure-u-lg-4-5, .pure-u-lg-5-5, .pure-u-lg-1-6, .pure-u-lg-5-6, .pure-u-lg-1-8, .pure-u-lg-3-8, .pure-u-lg-5-8, .pure-u-lg-7-8, .pure-u-lg-1-12, .pure-u-lg-5-12, .pure-u-lg-7-12, .pure-u-lg-11-12, .pure-u-lg-1-24, .pure-u-lg-2-24, .pure-u-lg-3-24, .pure-u-lg-4-24, .pure-u-lg-5-24, .pure-u-lg-6-24, .pure-u-lg-7-24, .pure-u-lg-8-24, .pure-u-lg-9-24, .pure-u-lg-10-24, .pure-u-lg-11-24, .pure-u-lg-12-24, .pure-u-lg-13-24, .pure-u-lg-14-24, .pure-u-lg-15-24, .pure-u-lg-16-24, .pure-u-lg-17-24, .pure-u-lg-18-24, .pure-u-lg-19-24, .pure-u-lg-20-24, .pure-u-lg-21-24, .pure-u-lg-22-24, .pure-u-lg-23-24, .pure-u-lg-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-lg-1-24 { width: 4.1667%; } .pure-u-lg-1-12, .pure-u-lg-2-24 { width: 8.3333%; } .pure-u-lg-1-8, .pure-u-lg-3-24 { width: 12.5000%; } .pure-u-lg-1-6, .pure-u-lg-4-24 { width: 16.6667%; } .pure-u-lg-1-5 { width: 20%; } .pure-u-lg-5-24 { width: 20.8333%; } .pure-u-lg-1-4, .pure-u-lg-6-24 { width: 25%; } .pure-u-lg-7-24 { width: 29.1667%; } .pure-u-lg-1-3, .pure-u-lg-8-24 { width: 33.3333%; } .pure-u-lg-3-8, .pure-u-lg-9-24 { width: 37.5000%; } .pure-u-lg-2-5 { width: 40%; } .pure-u-lg-5-12, .pure-u-lg-10-24 { width: 41.6667%; } .pure-u-lg-11-24 { width: 45.8333%; } .pure-u-lg-1-2, .pure-u-lg-12-24 { width: 50%; } .pure-u-lg-13-24 { width: 54.1667%; } .pure-u-lg-7-12, .pure-u-lg-14-24 { width: 58.3333%; } .pure-u-lg-3-5 { width: 60%; } .pure-u-lg-5-8, .pure-u-lg-15-24 { width: 62.5000%; } .pure-u-lg-2-3, .pure-u-lg-16-24 { width: 66.6667%; } .pure-u-lg-17-24 { width: 70.8333%; } .pure-u-lg-3-4, .pure-u-lg-18-24 { width: 75%; } .pure-u-lg-19-24 { width: 79.1667%; } .pure-u-lg-4-5 { width: 80%; } .pure-u-lg-5-6, .pure-u-lg-20-24 { width: 83.3333%; } .pure-u-lg-7-8, .pure-u-lg-21-24 { width: 87.5000%; } .pure-u-lg-11-12, .pure-u-lg-22-24 { width: 91.6667%; } .pure-u-lg-23-24 { width: 95.8333%; } .pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-5-5, .pure-u-lg-24-24 { width: 100%; } } @media screen and (min-width: 80em) { .pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-1-2, .pure-u-xl-1-3, .pure-u-xl-2-3, .pure-u-xl-1-4, .pure-u-xl-3-4, .pure-u-xl-1-5, .pure-u-xl-2-5, .pure-u-xl-3-5, .pure-u-xl-4-5, .pure-u-xl-5-5, .pure-u-xl-1-6, .pure-u-xl-5-6, .pure-u-xl-1-8, .pure-u-xl-3-8, .pure-u-xl-5-8, .pure-u-xl-7-8, .pure-u-xl-1-12, .pure-u-xl-5-12, .pure-u-xl-7-12, .pure-u-xl-11-12, .pure-u-xl-1-24, .pure-u-xl-2-24, .pure-u-xl-3-24, .pure-u-xl-4-24, .pure-u-xl-5-24, .pure-u-xl-6-24, .pure-u-xl-7-24, .pure-u-xl-8-24, .pure-u-xl-9-24, .pure-u-xl-10-24, .pure-u-xl-11-24, .pure-u-xl-12-24, .pure-u-xl-13-24, .pure-u-xl-14-24, .pure-u-xl-15-24, .pure-u-xl-16-24, .pure-u-xl-17-24, .pure-u-xl-18-24, .pure-u-xl-19-24, .pure-u-xl-20-24, .pure-u-xl-21-24, .pure-u-xl-22-24, .pure-u-xl-23-24, .pure-u-xl-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-xl-1-24 { width: 4.1667%; } .pure-u-xl-1-12, .pure-u-xl-2-24 { width: 8.3333%; } .pure-u-xl-1-8, .pure-u-xl-3-24 { width: 12.5000%; } .pure-u-xl-1-6, .pure-u-xl-4-24 { width: 16.6667%; } .pure-u-xl-1-5 { width: 20%; } .pure-u-xl-5-24 { width: 20.8333%; } .pure-u-xl-1-4, .pure-u-xl-6-24 { width: 25%; } .pure-u-xl-7-24 { width: 29.1667%; } .pure-u-xl-1-3, .pure-u-xl-8-24 { width: 33.3333%; } .pure-u-xl-3-8, .pure-u-xl-9-24 { width: 37.5000%; } .pure-u-xl-2-5 { width: 40%; } .pure-u-xl-5-12, .pure-u-xl-10-24 { width: 41.6667%; } .pure-u-xl-11-24 { width: 45.8333%; } .pure-u-xl-1-2, .pure-u-xl-12-24 { width: 50%; } .pure-u-xl-13-24 { width: 54.1667%; } .pure-u-xl-7-12, .pure-u-xl-14-24 { width: 58.3333%; } .pure-u-xl-3-5 { width: 60%; } .pure-u-xl-5-8, .pure-u-xl-15-24 { width: 62.5000%; } .pure-u-xl-2-3, .pure-u-xl-16-24 { width: 66.6667%; } .pure-u-xl-17-24 { width: 70.8333%; } .pure-u-xl-3-4, .pure-u-xl-18-24 { width: 75%; } .pure-u-xl-19-24 { width: 79.1667%; } .pure-u-xl-4-5 { width: 80%; } .pure-u-xl-5-6, .pure-u-xl-20-24 { width: 83.3333%; } .pure-u-xl-7-8, .pure-u-xl-21-24 { width: 87.5000%; } .pure-u-xl-11-12, .pure-u-xl-22-24 { width: 91.6667%; } .pure-u-xl-23-24 { width: 95.8333%; } .pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-5-5, .pure-u-xl-24-24 { width: 100%; } } @media screen and (min-width: 120em) { .pure-u-xxl-1, .pure-u-xxl-1-1, .pure-u-xxl-1-2, .pure-u-xxl-1-3, .pure-u-xxl-2-3, .pure-u-xxl-1-4, .pure-u-xxl-3-4, .pure-u-xxl-1-5, .pure-u-xxl-2-5, .pure-u-xxl-3-5, .pure-u-xxl-4-5, .pure-u-xxl-5-5, .pure-u-xxl-1-6, .pure-u-xxl-5-6, .pure-u-xxl-1-8, .pure-u-xxl-3-8, .pure-u-xxl-5-8, .pure-u-xxl-7-8, .pure-u-xxl-1-12, .pure-u-xxl-5-12, .pure-u-xxl-7-12, .pure-u-xxl-11-12, .pure-u-xxl-1-24, .pure-u-xxl-2-24, .pure-u-xxl-3-24, .pure-u-xxl-4-24, .pure-u-xxl-5-24, .pure-u-xxl-6-24, .pure-u-xxl-7-24, .pure-u-xxl-8-24, .pure-u-xxl-9-24, .pure-u-xxl-10-24, .pure-u-xxl-11-24, .pure-u-xxl-12-24, .pure-u-xxl-13-24, .pure-u-xxl-14-24, .pure-u-xxl-15-24, .pure-u-xxl-16-24, .pure-u-xxl-17-24, .pure-u-xxl-18-24, .pure-u-xxl-19-24, .pure-u-xxl-20-24, .pure-u-xxl-21-24, .pure-u-xxl-22-24, .pure-u-xxl-23-24, .pure-u-xxl-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-xxl-1-24 { width: 4.1667%; } .pure-u-xxl-1-12, .pure-u-xxl-2-24 { width: 8.3333%; } .pure-u-xxl-1-8, .pure-u-xxl-3-24 { width: 12.5000%; } .pure-u-xxl-1-6, .pure-u-xxl-4-24 { width: 16.6667%; } .pure-u-xxl-1-5 { width: 20%; } .pure-u-xxl-5-24 { width: 20.8333%; } .pure-u-xxl-1-4, .pure-u-xxl-6-24 { width: 25%; } .pure-u-xxl-7-24 { width: 29.1667%; } .pure-u-xxl-1-3, .pure-u-xxl-8-24 { width: 33.3333%; } .pure-u-xxl-3-8, .pure-u-xxl-9-24 { width: 37.5000%; } .pure-u-xxl-2-5 { width: 40%; } .pure-u-xxl-5-12, .pure-u-xxl-10-24 { width: 41.6667%; } .pure-u-xxl-11-24 { width: 45.8333%; } .pure-u-xxl-1-2, .pure-u-xxl-12-24 { width: 50%; } .pure-u-xxl-13-24 { width: 54.1667%; } .pure-u-xxl-7-12, .pure-u-xxl-14-24 { width: 58.3333%; } .pure-u-xxl-3-5 { width: 60%; } .pure-u-xxl-5-8, .pure-u-xxl-15-24 { width: 62.5000%; } .pure-u-xxl-2-3, .pure-u-xxl-16-24 { width: 66.6667%; } .pure-u-xxl-17-24 { width: 70.8333%; } .pure-u-xxl-3-4, .pure-u-xxl-18-24 { width: 75%; } .pure-u-xxl-19-24 { width: 79.1667%; } .pure-u-xxl-4-5 { width: 80%; } .pure-u-xxl-5-6, .pure-u-xxl-20-24 { width: 83.3333%; } .pure-u-xxl-7-8, .pure-u-xxl-21-24 { width: 87.5000%; } .pure-u-xxl-11-12, .pure-u-xxl-22-24 { width: 91.6667%; } .pure-u-xxl-23-24 { width: 95.8333%; } .pure-u-xxl-1, .pure-u-xxl-1-1, .pure-u-xxl-5-5, .pure-u-xxl-24-24 { width: 100%; } } @media screen and (min-width: 160em) { .pure-u-xxxl-1, .pure-u-xxxl-1-1, .pure-u-xxxl-1-2, .pure-u-xxxl-1-3, .pure-u-xxxl-2-3, .pure-u-xxxl-1-4, .pure-u-xxxl-3-4, .pure-u-xxxl-1-5, .pure-u-xxxl-2-5, .pure-u-xxxl-3-5, .pure-u-xxxl-4-5, .pure-u-xxxl-5-5, .pure-u-xxxl-1-6, .pure-u-xxxl-5-6, .pure-u-xxxl-1-8, .pure-u-xxxl-3-8, .pure-u-xxxl-5-8, .pure-u-xxxl-7-8, .pure-u-xxxl-1-12, .pure-u-xxxl-5-12, .pure-u-xxxl-7-12, .pure-u-xxxl-11-12, .pure-u-xxxl-1-24, .pure-u-xxxl-2-24, .pure-u-xxxl-3-24, .pure-u-xxxl-4-24, .pure-u-xxxl-5-24, .pure-u-xxxl-6-24, .pure-u-xxxl-7-24, .pure-u-xxxl-8-24, .pure-u-xxxl-9-24, .pure-u-xxxl-10-24, .pure-u-xxxl-11-24, .pure-u-xxxl-12-24, .pure-u-xxxl-13-24, .pure-u-xxxl-14-24, .pure-u-xxxl-15-24, .pure-u-xxxl-16-24, .pure-u-xxxl-17-24, .pure-u-xxxl-18-24, .pure-u-xxxl-19-24, .pure-u-xxxl-20-24, .pure-u-xxxl-21-24, .pure-u-xxxl-22-24, .pure-u-xxxl-23-24, .pure-u-xxxl-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-xxxl-1-24 { width: 4.1667%; } .pure-u-xxxl-1-12, .pure-u-xxxl-2-24 { width: 8.3333%; } .pure-u-xxxl-1-8, .pure-u-xxxl-3-24 { width: 12.5000%; } .pure-u-xxxl-1-6, .pure-u-xxxl-4-24 { width: 16.6667%; } .pure-u-xxxl-1-5 { width: 20%; } .pure-u-xxxl-5-24 { width: 20.8333%; } .pure-u-xxxl-1-4, .pure-u-xxxl-6-24 { width: 25%; } .pure-u-xxxl-7-24 { width: 29.1667%; } .pure-u-xxxl-1-3, .pure-u-xxxl-8-24 { width: 33.3333%; } .pure-u-xxxl-3-8, .pure-u-xxxl-9-24 { width: 37.5000%; } .pure-u-xxxl-2-5 { width: 40%; } .pure-u-xxxl-5-12, .pure-u-xxxl-10-24 { width: 41.6667%; } .pure-u-xxxl-11-24 { width: 45.8333%; } .pure-u-xxxl-1-2, .pure-u-xxxl-12-24 { width: 50%; } .pure-u-xxxl-13-24 { width: 54.1667%; } .pure-u-xxxl-7-12, .pure-u-xxxl-14-24 { width: 58.3333%; } .pure-u-xxxl-3-5 { width: 60%; } .pure-u-xxxl-5-8, .pure-u-xxxl-15-24 { width: 62.5000%; } .pure-u-xxxl-2-3, .pure-u-xxxl-16-24 { width: 66.6667%; } .pure-u-xxxl-17-24 { width: 70.8333%; } .pure-u-xxxl-3-4, .pure-u-xxxl-18-24 { width: 75%; } .pure-u-xxxl-19-24 { width: 79.1667%; } .pure-u-xxxl-4-5 { width: 80%; } .pure-u-xxxl-5-6, .pure-u-xxxl-20-24 { width: 83.3333%; } .pure-u-xxxl-7-8, .pure-u-xxxl-21-24 { width: 87.5000%; } .pure-u-xxxl-11-12, .pure-u-xxxl-22-24 { width: 91.6667%; } .pure-u-xxxl-23-24 { width: 95.8333%; } .pure-u-xxxl-1, .pure-u-xxxl-1-1, .pure-u-xxxl-5-5, .pure-u-xxxl-24-24 { width: 100%; } } @media screen and (min-width: 240em) { .pure-u-x4k-1, .pure-u-x4k-1-1, .pure-u-x4k-1-2, .pure-u-x4k-1-3, .pure-u-x4k-2-3, .pure-u-x4k-1-4, .pure-u-x4k-3-4, .pure-u-x4k-1-5, .pure-u-x4k-2-5, .pure-u-x4k-3-5, .pure-u-x4k-4-5, .pure-u-x4k-5-5, .pure-u-x4k-1-6, .pure-u-x4k-5-6, .pure-u-x4k-1-8, .pure-u-x4k-3-8, .pure-u-x4k-5-8, .pure-u-x4k-7-8, .pure-u-x4k-1-12, .pure-u-x4k-5-12, .pure-u-x4k-7-12, .pure-u-x4k-11-12, .pure-u-x4k-1-24, .pure-u-x4k-2-24, .pure-u-x4k-3-24, .pure-u-x4k-4-24, .pure-u-x4k-5-24, .pure-u-x4k-6-24, .pure-u-x4k-7-24, .pure-u-x4k-8-24, .pure-u-x4k-9-24, .pure-u-x4k-10-24, .pure-u-x4k-11-24, .pure-u-x4k-12-24, .pure-u-x4k-13-24, .pure-u-x4k-14-24, .pure-u-x4k-15-24, .pure-u-x4k-16-24, .pure-u-x4k-17-24, .pure-u-x4k-18-24, .pure-u-x4k-19-24, .pure-u-x4k-20-24, .pure-u-x4k-21-24, .pure-u-x4k-22-24, .pure-u-x4k-23-24, .pure-u-x4k-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-x4k-1-24 { width: 4.1667%; } .pure-u-x4k-1-12, .pure-u-x4k-2-24 { width: 8.3333%; } .pure-u-x4k-1-8, .pure-u-x4k-3-24 { width: 12.5000%; } .pure-u-x4k-1-6, .pure-u-x4k-4-24 { width: 16.6667%; } .pure-u-x4k-1-5 { width: 20%; } .pure-u-x4k-5-24 { width: 20.8333%; } .pure-u-x4k-1-4, .pure-u-x4k-6-24 { width: 25%; } .pure-u-x4k-7-24 { width: 29.1667%; } .pure-u-x4k-1-3, .pure-u-x4k-8-24 { width: 33.3333%; } .pure-u-x4k-3-8, .pure-u-x4k-9-24 { width: 37.5000%; } .pure-u-x4k-2-5 { width: 40%; } .pure-u-x4k-5-12, .pure-u-x4k-10-24 { width: 41.6667%; } .pure-u-x4k-11-24 { width: 45.8333%; } .pure-u-x4k-1-2, .pure-u-x4k-12-24 { width: 50%; } .pure-u-x4k-13-24 { width: 54.1667%; } .pure-u-x4k-7-12, .pure-u-x4k-14-24 { width: 58.3333%; } .pure-u-x4k-3-5 { width: 60%; } .pure-u-x4k-5-8, .pure-u-x4k-15-24 { width: 62.5000%; } .pure-u-x4k-2-3, .pure-u-x4k-16-24 { width: 66.6667%; } .pure-u-x4k-17-24 { width: 70.8333%; } .pure-u-x4k-3-4, .pure-u-x4k-18-24 { width: 75%; } .pure-u-x4k-19-24 { width: 79.1667%; } .pure-u-x4k-4-5 { width: 80%; } .pure-u-x4k-5-6, .pure-u-x4k-20-24 { width: 83.3333%; } .pure-u-x4k-7-8, .pure-u-x4k-21-24 { width: 87.5000%; } .pure-u-x4k-11-12, .pure-u-x4k-22-24 { width: 91.6667%; } .pure-u-x4k-23-24 { width: 95.8333%; } .pure-u-x4k-1, .pure-u-x4k-1-1, .pure-u-x4k-5-5, .pure-u-x4k-24-24 { width: 100%; } } purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/_grids.scss000066400000000000000000000045561432647437000251740ustar00rootroot00000000000000/*! Pure v3.0.0 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE */ /*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/ .pure-g { display: flex; flex-flow: row wrap; /* Prevents distributing space between rows */ align-content: flex-start; } .pure-u { display: inline-block; vertical-align: top; } .pure-u-1, .pure-u-1-1, .pure-u-1-2, .pure-u-1-3, .pure-u-2-3, .pure-u-1-4, .pure-u-3-4, .pure-u-1-5, .pure-u-2-5, .pure-u-3-5, .pure-u-4-5, .pure-u-5-5, .pure-u-1-6, .pure-u-5-6, .pure-u-1-8, .pure-u-3-8, .pure-u-5-8, .pure-u-7-8, .pure-u-1-12, .pure-u-5-12, .pure-u-7-12, .pure-u-11-12, .pure-u-1-24, .pure-u-2-24, .pure-u-3-24, .pure-u-4-24, .pure-u-5-24, .pure-u-6-24, .pure-u-7-24, .pure-u-8-24, .pure-u-9-24, .pure-u-10-24, .pure-u-11-24, .pure-u-12-24, .pure-u-13-24, .pure-u-14-24, .pure-u-15-24, .pure-u-16-24, .pure-u-17-24, .pure-u-18-24, .pure-u-19-24, .pure-u-20-24, .pure-u-21-24, .pure-u-22-24, .pure-u-23-24, .pure-u-24-24 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .pure-u-1-24 { width: 4.1667%; } .pure-u-1-12, .pure-u-2-24 { width: 8.3333%; } .pure-u-1-8, .pure-u-3-24 { width: 12.5000%; } .pure-u-1-6, .pure-u-4-24 { width: 16.6667%; } .pure-u-1-5 { width: 20%; } .pure-u-5-24 { width: 20.8333%; } .pure-u-1-4, .pure-u-6-24 { width: 25%; } .pure-u-7-24 { width: 29.1667%; } .pure-u-1-3, .pure-u-8-24 { width: 33.3333%; } .pure-u-3-8, .pure-u-9-24 { width: 37.5000%; } .pure-u-2-5 { width: 40%; } .pure-u-5-12, .pure-u-10-24 { width: 41.6667%; } .pure-u-11-24 { width: 45.8333%; } .pure-u-1-2, .pure-u-12-24 { width: 50%; } .pure-u-13-24 { width: 54.1667%; } .pure-u-7-12, .pure-u-14-24 { width: 58.3333%; } .pure-u-3-5 { width: 60%; } .pure-u-5-8, .pure-u-15-24 { width: 62.5000%; } .pure-u-2-3, .pure-u-16-24 { width: 66.6667%; } .pure-u-17-24 { width: 70.8333%; } .pure-u-3-4, .pure-u-18-24 { width: 75%; } .pure-u-19-24 { width: 79.1667%; } .pure-u-4-5 { width: 80%; } .pure-u-5-6, .pure-u-20-24 { width: 83.3333%; } .pure-u-7-8, .pure-u-21-24 { width: 87.5000%; } .pure-u-11-12, .pure-u-22-24 { width: 91.6667%; } .pure-u-23-24 { width: 95.8333%; } .pure-u-1, .pure-u-1-1, .pure-u-5-5, .pure-u-24-24 { width: 100%; } purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/_menus.scss000066400000000000000000000061331432647437000252040ustar00rootroot00000000000000/*! Pure v3.0.0 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE */ /*csslint adjoining-classes: false, box-model:false*/ .pure-menu { box-sizing: border-box; } .pure-menu-fixed { position: fixed; left: 0; top: 0; z-index: 3; } .pure-menu-list, .pure-menu-item { position: relative; } .pure-menu-list { list-style: none; margin: 0; padding: 0; } .pure-menu-item { padding: 0; margin: 0; height: 100%; } .pure-menu-link, .pure-menu-heading { display: block; text-decoration: none; white-space: nowrap; } /* HORIZONTAL MENU */ .pure-menu-horizontal { width: 100%; white-space: nowrap; .pure-menu-list { display: inline-block; } .pure-menu-item, .pure-menu-heading, .pure-menu-separator { display: inline-block; vertical-align: middle; } } /* Initial menus should be inline-block so that they are horizontal */ /* Submenus should still be display: block; */ .pure-menu-item .pure-menu-item { display: block; } .pure-menu-children { display: none; position: absolute; left: 100%; top: 0; margin: 0; padding: 0; z-index: 3; } .pure-menu-horizontal .pure-menu-children { left: 0; top: auto; width: inherit; } .pure-menu-allow-hover:hover > .pure-menu-children, .pure-menu-active > .pure-menu-children { display: block; position: absolute; } /* Vertical Menus - show the dropdown arrow */ .pure-menu-has-children > .pure-menu-link:after { padding-left: 0.5em; content: "\25B8"; font-size: small; } /* Horizontal Menus - show the dropdown arrow */ .pure-menu-horizontal .pure-menu-has-children > .pure-menu-link:after { content: "\25BE"; } /* scrollable menus */ .pure-menu-scrollable { overflow-y: scroll; overflow-x: hidden; .pure-menu-list { display: block; } } .pure-menu-horizontal.pure-menu-scrollable { .pure-menu-list { display: inline-block; } white-space: nowrap; overflow-y: hidden; overflow-x: auto; /* a little extra padding for this style to allow for scrollbars */ padding: .5em 0; } /* misc default styling */ .pure-menu-separator { background-color: #ccc; height: 1px; margin: .3em 0; } .pure-menu-horizontal { .pure-menu-children .pure-menu-separator { background-color: #ccc; height: 1px; margin: .3em 0; } .pure-menu-separator { width: 1px; height: 1.3em; margin: 0 0.3em; } .pure-menu-children .pure-menu-separator { display: block; width: auto; } } /* Need to reset the separator since submenu is vertical */ .pure-menu-heading { text-transform: uppercase; color: #565d64; } .pure-menu-link { color: #777; } .pure-menu-children { background-color: #fff; } .pure-menu-link, .pure-menu-heading { padding: .5em 1em; } .pure-menu-disabled { opacity: .5; .pure-menu-link:hover { background-color: transparent; cursor: default; } } .pure-menu-active > .pure-menu-link { background-color: #eee; } .pure-menu-link { &:hover, &:focus { background-color: #eee; } } .pure-menu-selected > .pure-menu-link { color: #000; &:visited { color: #000; } } purecss-sass-3.0.0/vendor/assets/stylesheets/purecss/_tables.scss000066400000000000000000000026521432647437000253310ustar00rootroot00000000000000/*! Pure v3.0.0 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE */ .pure-table { /* Remove spacing between table cells (from Normalize.css) */ border-collapse: collapse; border-spacing: 0; empty-cells: show; border: 1px solid #cbcbcb; caption { color: #000; font: italic 85%/1 arial, sans-serif; padding: 1em 0; text-align: center; } td, th { border-left: 1px solid #cbcbcb; /* inner column border */ border-width: 0 0 0 1px; font-size: inherit; margin: 0; overflow: visible; /*to make ths where the title is really long work*/ padding: 0.5em 1em; /* cell padding */ } thead { background-color: #e0e0e0; color: #000; text-align: left; vertical-align: bottom; } td { background-color: transparent; } } /* striping: even - #fff (white) odd - #f2f2f2 (light gray) */ .pure-table-odd td, .pure-table-striped tr:nth-child(2n-1) td { background-color: #f2f2f2; } /* nth-child selector for modern browsers */ /* BORDERED TABLES */ .pure-table-bordered { td { border-bottom: 1px solid #cbcbcb; } tbody > tr:last-child > td { border-bottom-width: 0; } } /* HORIZONTAL BORDERED TABLES */ .pure-table-horizontal { td, th { border-width: 0 0 1px 0; border-bottom: 1px solid #cbcbcb; } tbody > tr:last-child > td { border-bottom-width: 0; } }