├── js └── .stub ├── _i18n ├── en │ └── .stub ├── pt │ └── .stub ├── en.yml └── pt.yml ├── Gemfile ├── images └── logo.png ├── index.md ├── about.md ├── _plugins └── jekyll-multiple-languages-plugin │ └── lib │ ├── plugin │ └── version.rb │ └── jekyll-multiple-languages-plugin.rb ├── .gitmodules ├── _config.yml ├── css ├── pure │ ├── bower.json │ ├── menus-horizontal-min.css │ ├── menus-core-min.css │ ├── menus-scrollable-min.css │ ├── menus-dropdown-min.css │ ├── menus-horizontal.css │ ├── buttons-core-min.css │ ├── grids-core-min.css │ ├── menus-core.css │ ├── menus-scrollable.css │ ├── menus-skin-min.css │ ├── tables-min.css │ ├── menus-dropdown.css │ ├── buttons-core.css │ ├── menus-skin.css │ ├── grids-units-min.css │ ├── buttons-min.css │ ├── tables.css │ ├── base-min.css │ ├── grids-min.css │ ├── menus-min.css │ ├── base-context-min.css │ ├── grids-core.css │ ├── LICENSE.md │ ├── buttons.css │ ├── grids-units.css │ ├── menus.css │ ├── forms-nr-min.css │ ├── grids-responsive-old-ie-min.css │ ├── grids-responsive-old-ie.css │ ├── README.md │ ├── grids.css │ ├── forms-min.css │ ├── grids-responsive-min.css │ ├── forms-nr.css │ ├── base.css │ ├── base-context.css │ ├── forms.css │ ├── pure-nr-min.css │ ├── pure-min.css │ └── HISTORY.md ├── style.css └── reset.css ├── .gitignore ├── _layouts ├── default.html └── construction.html └── Gemfile.lock /js/.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_i18n/en/.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_i18n/pt/.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages' 3 | -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-ufrn/cs-ufrn.github.io/master/images/logo.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: construction 3 | title: titles.home 4 | --- 5 | 6 | Under construction. 7 | -------------------------------------------------------------------------------- /_i18n/en.yml: -------------------------------------------------------------------------------- 1 | titles: 2 | home: "Computer Society Student Chapter at UFRN" 3 | about: "About" 4 | -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: titles.about 3 | template: default.html 4 | --- 5 | 6 | About: under construction. 7 | -------------------------------------------------------------------------------- /_i18n/pt.yml: -------------------------------------------------------------------------------- 1 | titles: 2 | home: "Capítulo Estudantil da Computer Society na UFRN" 3 | about: "Sobre" 4 | 5 | -------------------------------------------------------------------------------- /_plugins/jekyll-multiple-languages-plugin/lib/plugin/version.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | module MultipleLanguagesPlugin 3 | VERSION = "1.5.1" 4 | end 5 | end 6 | 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "_plugins/multiple-languages"] 2 | path = _plugins/multiple-languages 3 | url = git://github.com/screeninteraction/jekyll-multiple-languages-plugin.git 4 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | baseurl: "" 2 | 3 | title: IEEE Computer Society Student Chapter at UFRN 4 | 5 | #plugins: 6 | # - jekyll-multiple-languages-plugin 7 | 8 | languages: ["en", "pt"] 9 | 10 | exclude_from_localizations: ["js", "images", "css"] 11 | -------------------------------------------------------------------------------- /css/pure/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pure", 3 | "description": "Use Pure's ridiculously tiny CSS to start any web project.", 4 | "version": "0.6.2", 5 | "main": "pure.css", 6 | "devDependencies": { 7 | "normalize-css": "^3.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #eee; 3 | width:90%; 4 | margin:0 auto; 5 | box-sizing: border-box; 6 | } 7 | 8 | #main { 9 | background-color: #FFF; 10 | border-radius: 10px; 11 | padding: 10px; 12 | margin-right: 10px; 13 | min-height:200px; 14 | } 15 | 16 | #sidebar { 17 | background-color: #FFF; 18 | border-radius: 10px; 19 | padding: 10px; 20 | } 21 | -------------------------------------------------------------------------------- /css/pure/menus-horizontal-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-menu-horizontal{width:100%;white-space:nowrap}.pure-menu-horizontal .pure-menu-list{display:inline-block}.pure-menu-horizontal .pure-menu-heading,.pure-menu-horizontal .pure-menu-item,.pure-menu-horizontal .pure-menu-separator{display:inline-block;zoom:1;vertical-align:middle} -------------------------------------------------------------------------------- /css/pure/menus-core-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-menu{box-sizing:border-box}.pure-menu-fixed{position:fixed;left:0;top:0;z-index:3}.pure-menu-item,.pure-menu-list{position:relative}.pure-menu-list{list-style:none;margin:0;padding:0}.pure-menu-item{padding:0;margin:0;height:100%}.pure-menu-heading,.pure-menu-link{display:block;text-decoration:none;white-space:nowrap} -------------------------------------------------------------------------------- /css/pure/menus-scrollable-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-menu-scrollable{overflow-y:scroll;overflow-x:hidden}.pure-menu-scrollable .pure-menu-list{display:block}.pure-menu-horizontal.pure-menu-scrollable .pure-menu-list{display:inline-block}.pure-menu-horizontal.pure-menu-scrollable{white-space:nowrap;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;padding:.5em 0}.pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar{display:none} -------------------------------------------------------------------------------- /css/pure/menus-dropdown-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .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-active>.pure-menu-children,.pure-menu-allow-hover:hover>.pure-menu-children{display:block;position:absolute}.pure-menu-has-children>.pure-menu-link:after{padding-left:.5em;content:"\25B8";font-size:small}.pure-menu-horizontal .pure-menu-has-children>.pure-menu-link:after{content:"\25BE"} -------------------------------------------------------------------------------- /css/pure/menus-horizontal.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /* HORIZONTAL MENU */ 8 | .pure-menu-horizontal { 9 | width: 100%; 10 | white-space: nowrap; 11 | } 12 | 13 | .pure-menu-horizontal .pure-menu-list { 14 | display: inline-block; 15 | } 16 | 17 | /* Initial menus should be inline-block so that they are horizontal */ 18 | .pure-menu-horizontal .pure-menu-item, 19 | .pure-menu-horizontal .pure-menu-heading, 20 | .pure-menu-horizontal .pure-menu-separator { 21 | display: inline-block; 22 | *display: inline; 23 | zoom: 1; 24 | vertical-align: middle; 25 | } 26 | -------------------------------------------------------------------------------- /css/pure/buttons-core-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-button{display:inline-block;zoom:1;line-height:normal;white-space:nowrap;vertical-align:middle;text-align:center;cursor:pointer;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-sizing:border-box}.pure-button::-moz-focus-inner{padding:0;border:0}.pure-button-group{letter-spacing:-.31em;text-rendering:optimizespeed}.opera-only :-o-prefocus,.pure-button-group{word-spacing:-.43em}.pure-button-group .pure-button{letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto} -------------------------------------------------------------------------------- /css/pure/grids-core-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-g{letter-spacing:-.31em;text-rendering:optimizespeed;font-family:FreeSans,Arimo,"Droid Sans",Helvetica,Arial,sans-serif;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){table .pure-g{display:block}}.opera-only :-o-prefocus,.pure-g{word-spacing:-.43em}.pure-u{display:inline-block;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.pure-g [class*=pure-u]{font-family:sans-serif} -------------------------------------------------------------------------------- /css/pure/menus-core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /*csslint adjoining-classes: false, box-model:false*/ 8 | .pure-menu { 9 | box-sizing: border-box; 10 | } 11 | 12 | .pure-menu-fixed { 13 | position: fixed; 14 | left: 0; 15 | top: 0; 16 | z-index: 3; 17 | } 18 | 19 | .pure-menu-list, 20 | .pure-menu-item { 21 | position: relative; 22 | } 23 | 24 | .pure-menu-list { 25 | list-style: none; 26 | margin: 0; 27 | padding: 0; 28 | } 29 | 30 | .pure-menu-item { 31 | padding: 0; 32 | margin: 0; 33 | height: 100%; 34 | } 35 | 36 | .pure-menu-link, 37 | .pure-menu-heading { 38 | display: block; 39 | text-decoration: none; 40 | white-space: nowrap; 41 | } 42 | -------------------------------------------------------------------------------- /css/pure/menus-scrollable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /* scrollable menus */ 8 | .pure-menu-scrollable { 9 | overflow-y: scroll; 10 | overflow-x: hidden; 11 | } 12 | 13 | .pure-menu-scrollable .pure-menu-list { 14 | display: block; 15 | } 16 | 17 | .pure-menu-horizontal.pure-menu-scrollable .pure-menu-list { 18 | display: inline-block; 19 | } 20 | 21 | .pure-menu-horizontal.pure-menu-scrollable { 22 | white-space: nowrap; 23 | overflow-y: hidden; 24 | overflow-x: auto; 25 | -ms-overflow-style: none; 26 | -webkit-overflow-scrolling: touch; 27 | /* a little extra padding for this style to allow for scrollbars */ 28 | padding: .5em 0; 29 | } 30 | 31 | .pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar { 32 | display: none; 33 | } 34 | -------------------------------------------------------------------------------- /css/pure/menus-skin-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-menu-horizontal .pure-menu-children .pure-menu-separator,.pure-menu-separator{background-color:#ccc;height:1px;margin:.3em 0}.pure-menu-horizontal .pure-menu-separator{width:1px;height:1.3em;margin:0 .3em}.pure-menu-horizontal .pure-menu-children .pure-menu-separator{display:block;width:auto}.pure-menu-heading{text-transform:uppercase;color:#565d64}.pure-menu-link{color:#777}.pure-menu-children{background-color:#fff}.pure-menu-disabled,.pure-menu-heading,.pure-menu-link{padding:.5em 1em}.pure-menu-disabled{opacity:.5}.pure-menu-disabled .pure-menu-link:hover{background-color:transparent}.pure-menu-active>.pure-menu-link,.pure-menu-link:focus,.pure-menu-link:hover{background-color:#eee}.pure-menu-selected .pure-menu-link,.pure-menu-selected .pure-menu-link:visited{color:#000} -------------------------------------------------------------------------------- /css/pure/tables-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-table{border-collapse:collapse;border-spacing:0;empty-cells:show;border:1px solid #cbcbcb}.pure-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.pure-table td,.pure-table th{border-left:1px solid #cbcbcb;border-width:0 0 0 1px;font-size:inherit;margin:0;overflow:visible;padding:.5em 1em}.pure-table td:first-child,.pure-table th:first-child{border-left-width:0}.pure-table thead{background-color:#e0e0e0;color:#000;text-align:left;vertical-align:bottom}.pure-table td{background-color:transparent}.pure-table-odd td,.pure-table-striped tr:nth-child(2n-1) td{background-color:#f2f2f2}.pure-table-bordered td{border-bottom:1px solid #cbcbcb}.pure-table-bordered tbody>tr:last-child>td{border-bottom-width:0}.pure-table-horizontal td,.pure-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #cbcbcb}.pure-table-horizontal tbody>tr:last-child>td{border-bottom-width:0} -------------------------------------------------------------------------------- /css/pure/menus-dropdown.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /* Submenus should still be display: block; */ 8 | .pure-menu-item .pure-menu-item { 9 | display: block; 10 | } 11 | 12 | .pure-menu-children { 13 | display: none; 14 | position: absolute; 15 | left: 100%; 16 | top: 0; 17 | margin: 0; 18 | padding: 0; 19 | z-index: 3; 20 | } 21 | 22 | .pure-menu-horizontal .pure-menu-children { 23 | left: 0; 24 | top: auto; 25 | width: inherit; 26 | } 27 | 28 | .pure-menu-allow-hover:hover > .pure-menu-children, 29 | .pure-menu-active > .pure-menu-children { 30 | display: block; 31 | position: absolute; 32 | } 33 | 34 | /* Vertical Menus - show the dropdown arrow */ 35 | .pure-menu-has-children > .pure-menu-link:after { 36 | padding-left: 0.5em; 37 | content: "\25B8"; 38 | font-size: small; 39 | } 40 | 41 | /* Horizontal Menus - show the dropdown arrow */ 42 | .pure-menu-horizontal .pure-menu-has-children > .pure-menu-link:after { 43 | content: "\25BE"; 44 | } 45 | -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /css/pure/buttons-core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-button { 8 | /* Structure */ 9 | display: inline-block; 10 | zoom: 1; 11 | line-height: normal; 12 | white-space: nowrap; 13 | vertical-align: middle; 14 | text-align: center; 15 | cursor: pointer; 16 | -webkit-user-drag: none; 17 | -webkit-user-select: none; 18 | -moz-user-select: none; 19 | -ms-user-select: none; 20 | user-select: none; 21 | box-sizing: border-box; 22 | } 23 | 24 | /* Firefox: Get rid of the inner focus border */ 25 | .pure-button::-moz-focus-inner { 26 | padding: 0; 27 | border: 0; 28 | } 29 | 30 | /* Inherit .pure-g styles */ 31 | .pure-button-group { 32 | letter-spacing: -0.31em; /* Webkit: collapse white-space between units */ 33 | *letter-spacing: normal; /* reset IE < 8 */ 34 | *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */ 35 | text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */ 36 | } 37 | 38 | .opera-only :-o-prefocus, 39 | .pure-button-group { 40 | word-spacing: -0.43em; 41 | } 42 | 43 | .pure-button-group .pure-button { 44 | letter-spacing: normal; 45 | word-spacing: normal; 46 | vertical-align: top; 47 | text-rendering: auto; 48 | } 49 | -------------------------------------------------------------------------------- /css/pure/menus-skin.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /* misc default styling */ 8 | 9 | .pure-menu-separator, 10 | .pure-menu-horizontal .pure-menu-children .pure-menu-separator { 11 | background-color: #ccc; 12 | height: 1px; 13 | margin: .3em 0; 14 | } 15 | 16 | .pure-menu-horizontal .pure-menu-separator { 17 | width: 1px; 18 | height: 1.3em; 19 | margin: 0 .3em ; 20 | } 21 | 22 | /* Need to reset the separator since submenu is vertical */ 23 | .pure-menu-horizontal .pure-menu-children .pure-menu-separator { 24 | display: block; 25 | width: auto; 26 | } 27 | 28 | .pure-menu-heading { 29 | text-transform: uppercase; 30 | color: #565d64; 31 | } 32 | 33 | .pure-menu-link { 34 | color: #777; 35 | } 36 | 37 | .pure-menu-children { 38 | background-color: #fff; 39 | } 40 | 41 | .pure-menu-link, 42 | .pure-menu-disabled, 43 | .pure-menu-heading { 44 | padding: .5em 1em; 45 | } 46 | 47 | .pure-menu-disabled { 48 | opacity: .5; 49 | } 50 | 51 | .pure-menu-disabled .pure-menu-link:hover { 52 | background-color: transparent; 53 | } 54 | 55 | .pure-menu-active > .pure-menu-link, 56 | .pure-menu-link:hover, 57 | .pure-menu-link:focus { 58 | background-color: #eee; 59 | } 60 | 61 | .pure-menu-selected .pure-menu-link, 62 | .pure-menu-selected .pure-menu-link:visited { 63 | color: #000; 64 | } 65 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/ruby,jekyll 3 | 4 | ### Jekyll ### 5 | _site/ 6 | .sass-cache/ 7 | .jekyll-metadata 8 | 9 | ### Ruby ### 10 | *.gem 11 | *.rbc 12 | /.config 13 | /coverage/ 14 | /InstalledFiles 15 | /pkg/ 16 | /spec/reports/ 17 | /spec/examples.txt 18 | /test/tmp/ 19 | /test/version_tmp/ 20 | /tmp/ 21 | 22 | # Used by dotenv library to load environment variables. 23 | # .env 24 | 25 | ## Specific to RubyMotion: 26 | .dat* 27 | .repl_history 28 | build/ 29 | *.bridgesupport 30 | build-iPhoneOS/ 31 | build-iPhoneSimulator/ 32 | 33 | ## Specific to RubyMotion (use of CocoaPods): 34 | # 35 | # We recommend against adding the Pods directory to your .gitignore. However 36 | # you should judge for yourself, the pros and cons are mentioned at: 37 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 38 | # 39 | # vendor/Pods/ 40 | 41 | ## Documentation cache and generated files: 42 | /.yardoc/ 43 | /_yardoc/ 44 | /doc/ 45 | /rdoc/ 46 | 47 | ## Environment normalization: 48 | /.bundle/ 49 | /vendor/bundle 50 | /lib/bundler/man/ 51 | 52 | # for a library or gem, you might want to ignore these files since the code is 53 | # intended to run in multiple environments; otherwise, check them in: 54 | # Gemfile.lock 55 | # .ruby-version 56 | # .ruby-gemset 57 | 58 | # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: 59 | .rvmrc 60 | 61 | 62 | # End of https://www.gitignore.io/api/ruby,jekyll 63 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | IEEE CS UFRN 7 | 8 | 9 | 10 | 12 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 | 31 |
32 | 33 |
34 |
35 | {{ content }} 36 |
37 |
38 | 39 |
40 | 43 |
44 |
45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /css/pure/grids-units-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-u-1,.pure-u-1-1,.pure-u-1-12,.pure-u-1-2,.pure-u-1-24,.pure-u-1-3,.pure-u-1-4,.pure-u-1-5,.pure-u-1-6,.pure-u-1-8,.pure-u-10-24,.pure-u-11-12,.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-2-24,.pure-u-2-3,.pure-u-2-5,.pure-u-20-24,.pure-u-21-24,.pure-u-22-24,.pure-u-23-24,.pure-u-24-24,.pure-u-3-24,.pure-u-3-4,.pure-u-3-5,.pure-u-3-8,.pure-u-4-24,.pure-u-4-5,.pure-u-5-12,.pure-u-5-24,.pure-u-5-5,.pure-u-5-6,.pure-u-5-8,.pure-u-6-24,.pure-u-7-12,.pure-u-7-24,.pure-u-7-8,.pure-u-8-24,.pure-u-9-24{display:inline-block;zoom:1;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.5%}.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.5%}.pure-u-2-5{width:40%}.pure-u-10-24,.pure-u-5-12{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-14-24,.pure-u-7-12{width:58.3333%}.pure-u-3-5{width:60%}.pure-u-15-24,.pure-u-5-8{width:62.5%}.pure-u-16-24,.pure-u-2-3{width:66.6667%}.pure-u-17-24{width:70.8333%}.pure-u-18-24,.pure-u-3-4{width:75%}.pure-u-19-24{width:79.1667%}.pure-u-4-5{width:80%}.pure-u-20-24,.pure-u-5-6{width:83.3333%}.pure-u-21-24,.pure-u-7-8{width:87.5%}.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-24-24,.pure-u-5-5{width:100%} -------------------------------------------------------------------------------- /_layouts/construction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | IEEE CS UFRN 7 | 8 | 9 | 10 | 12 | 16 | 17 | 19 | 20 | 21 | 22 | 38 | 39 | 40 | 41 | 42 | 43 |
44 |
45 |
46 | 47 |

Website under construction.

48 |

Please, check the IEEE CS UFRN Facebook page for more information about us!

49 |
50 |
51 |
52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /css/pure/buttons-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-button{display:inline-block;zoom:1;line-height:normal;white-space:nowrap;vertical-align:middle;text-align:center;cursor:pointer;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-sizing:border-box}.pure-button::-moz-focus-inner{padding:0;border:0}.pure-button-group{letter-spacing:-.31em;text-rendering:optimizespeed}.opera-only :-o-prefocus,.pure-button-group{word-spacing:-.43em}.pure-button{font-family:inherit;font-size:100%;padding:.5em 1em;color:#444;color:rgba(0,0,0,.8);border:1px solid #999;border:transparent;background-color:#E6E6E6;text-decoration:none;border-radius:2px}.pure-button-hover,.pure-button:focus,.pure-button:hover{filter:alpha(opacity=90);background-image:-webkit-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));background-image:linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1))}.pure-button:focus{outline:0}.pure-button-active,.pure-button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 0 6px rgba(0,0,0,.2) inset;border-color:#000\9}.pure-button-disabled,.pure-button-disabled:active,.pure-button-disabled:focus,.pure-button-disabled:hover,.pure-button[disabled]{border:none;background-image:none;filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none;pointer-events:none}.pure-button-hidden{display:none}.pure-button-primary,.pure-button-selected,a.pure-button-primary,a.pure-button-selected{background-color:#0078e7;color:#fff}.pure-button-group .pure-button{letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto;margin:0;border-radius:0;border-right:1px solid #111;border-right:1px solid rgba(0,0,0,.2)}.pure-button-group .pure-button:first-child{border-top-left-radius:2px;border-bottom-left-radius:2px}.pure-button-group .pure-button:last-child{border-top-right-radius:2px;border-bottom-right-radius:2px;border-right:none} -------------------------------------------------------------------------------- /css/pure/tables.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-table { 8 | /* Remove spacing between table cells (from Normalize.css) */ 9 | border-collapse: collapse; 10 | border-spacing: 0; 11 | empty-cells: show; 12 | border: 1px solid #cbcbcb; 13 | } 14 | 15 | .pure-table caption { 16 | color: #000; 17 | font: italic 85%/1 arial, sans-serif; 18 | padding: 1em 0; 19 | text-align: center; 20 | } 21 | 22 | .pure-table td, 23 | .pure-table th { 24 | border-left: 1px solid #cbcbcb;/* inner column border */ 25 | border-width: 0 0 0 1px; 26 | font-size: inherit; 27 | margin: 0; 28 | overflow: visible; /*to make ths where the title is really long work*/ 29 | padding: 0.5em 1em; /* cell padding */ 30 | } 31 | 32 | /* Consider removing this next declaration block, as it causes problems when 33 | there's a rowspan on the first cell. Case added to the tests. issue#432 */ 34 | .pure-table td:first-child, 35 | .pure-table th:first-child { 36 | border-left-width: 0; 37 | } 38 | 39 | .pure-table thead { 40 | background-color: #e0e0e0; 41 | color: #000; 42 | text-align: left; 43 | vertical-align: bottom; 44 | } 45 | 46 | /* 47 | striping: 48 | even - #fff (white) 49 | odd - #f2f2f2 (light gray) 50 | */ 51 | .pure-table td { 52 | background-color: transparent; 53 | } 54 | .pure-table-odd td { 55 | background-color: #f2f2f2; 56 | } 57 | 58 | /* nth-child selector for modern browsers */ 59 | .pure-table-striped tr:nth-child(2n-1) td { 60 | background-color: #f2f2f2; 61 | } 62 | 63 | /* BORDERED TABLES */ 64 | .pure-table-bordered td { 65 | border-bottom: 1px solid #cbcbcb; 66 | } 67 | .pure-table-bordered tbody > tr:last-child > td { 68 | border-bottom-width: 0; 69 | } 70 | 71 | 72 | /* HORIZONTAL BORDERED TABLES */ 73 | 74 | .pure-table-horizontal td, 75 | .pure-table-horizontal th { 76 | border-width: 0 0 1px 0; 77 | border-bottom: 1px solid #cbcbcb; 78 | } 79 | .pure-table-horizontal tbody > tr:last-child > td { 80 | border-bottom-width: 0; 81 | } 82 | -------------------------------------------------------------------------------- /css/pure/base-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /*! 8 | normalize.css v^3.0 | MIT License | git.io/normalize 9 | Copyright (c) Nicolas Gallagher and Jonathan Neal 10 | */ 11 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */img,legend{border:0}legend,td,th{padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}table{border-collapse:collapse;border-spacing:0}.hidden,[hidden]{display:none!important}.pure-img{max-width:100%;height:auto;display:block} -------------------------------------------------------------------------------- /css/pure/grids-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-g{letter-spacing:-.31em;text-rendering:optimizespeed;font-family:FreeSans,Arimo,"Droid Sans",Helvetica,Arial,sans-serif;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){table .pure-g{display:block}}.opera-only :-o-prefocus,.pure-g{word-spacing:-.43em}.pure-u,.pure-u-1,.pure-u-1-1,.pure-u-1-12,.pure-u-1-2,.pure-u-1-24,.pure-u-1-3,.pure-u-1-4,.pure-u-1-5,.pure-u-1-6,.pure-u-1-8,.pure-u-10-24,.pure-u-11-12,.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-2-24,.pure-u-2-3,.pure-u-2-5,.pure-u-20-24,.pure-u-21-24,.pure-u-22-24,.pure-u-23-24,.pure-u-24-24,.pure-u-3-24,.pure-u-3-4,.pure-u-3-5,.pure-u-3-8,.pure-u-4-24,.pure-u-4-5,.pure-u-5-12,.pure-u-5-24,.pure-u-5-5,.pure-u-5-6,.pure-u-5-8,.pure-u-6-24,.pure-u-7-12,.pure-u-7-24,.pure-u-7-8,.pure-u-8-24,.pure-u-9-24{display:inline-block;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.pure-g [class*=pure-u]{font-family:sans-serif}.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.5%}.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.5%}.pure-u-2-5{width:40%}.pure-u-10-24,.pure-u-5-12{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-14-24,.pure-u-7-12{width:58.3333%}.pure-u-3-5{width:60%}.pure-u-15-24,.pure-u-5-8{width:62.5%}.pure-u-16-24,.pure-u-2-3{width:66.6667%}.pure-u-17-24{width:70.8333%}.pure-u-18-24,.pure-u-3-4{width:75%}.pure-u-19-24{width:79.1667%}.pure-u-4-5{width:80%}.pure-u-20-24,.pure-u-5-6{width:83.3333%}.pure-u-21-24,.pure-u-7-8{width:87.5%}.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-24-24,.pure-u-5-5{width:100%} -------------------------------------------------------------------------------- /css/pure/menus-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-menu{box-sizing:border-box}.pure-menu-fixed{position:fixed;left:0;top:0;z-index:3}.pure-menu-item,.pure-menu-list{position:relative}.pure-menu-list{list-style:none;margin:0;padding:0}.pure-menu-item{padding:0;margin:0;height:100%}.pure-menu-heading,.pure-menu-link{display:block;text-decoration:none;white-space:nowrap}.pure-menu-horizontal{width:100%;white-space:nowrap}.pure-menu-horizontal .pure-menu-list{display:inline-block}.pure-menu-horizontal .pure-menu-heading,.pure-menu-horizontal .pure-menu-item,.pure-menu-horizontal .pure-menu-separator{display:inline-block;zoom:1;vertical-align:middle}.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-active>.pure-menu-children,.pure-menu-allow-hover:hover>.pure-menu-children{display:block;position:absolute}.pure-menu-has-children>.pure-menu-link:after{padding-left:.5em;content:"\25B8";font-size:small}.pure-menu-horizontal .pure-menu-has-children>.pure-menu-link:after{content:"\25BE"}.pure-menu-scrollable{overflow-y:scroll;overflow-x:hidden}.pure-menu-scrollable .pure-menu-list{display:block}.pure-menu-horizontal.pure-menu-scrollable .pure-menu-list{display:inline-block}.pure-menu-horizontal.pure-menu-scrollable{white-space:nowrap;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;padding:.5em 0}.pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar{display:none}.pure-menu-horizontal .pure-menu-children .pure-menu-separator,.pure-menu-separator{background-color:#ccc;height:1px;margin:.3em 0}.pure-menu-horizontal .pure-menu-separator{width:1px;height:1.3em;margin:0 .3em}.pure-menu-horizontal .pure-menu-children .pure-menu-separator{display:block;width:auto}.pure-menu-heading{text-transform:uppercase;color:#565d64}.pure-menu-link{color:#777}.pure-menu-children{background-color:#fff}.pure-menu-disabled,.pure-menu-heading,.pure-menu-link{padding:.5em 1em}.pure-menu-disabled{opacity:.5}.pure-menu-disabled .pure-menu-link:hover{background-color:transparent}.pure-menu-active>.pure-menu-link,.pure-menu-link:focus,.pure-menu-link:hover{background-color:#eee}.pure-menu-selected .pure-menu-link,.pure-menu-selected .pure-menu-link:visited{color:#000} -------------------------------------------------------------------------------- /css/pure/base-context-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /*! 8 | normalize.css v^3.0 | MIT License | git.io/normalize 9 | Copyright (c) Nicolas Gallagher and Jonathan Neal 10 | */ 11 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.pure{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0}.pure article,.pure aside,.pure details,.pure figcaption,.pure figure,.pure footer,.pure header,.pure hgroup,.pure main,.pure menu,.pure nav,.pure section,.pure summary{display:block}.pure audio,.pure canvas,.pure progress,.pure video{display:inline-block;vertical-align:baseline}.pure audio:not([controls]){display:none;height:0}.pure [hidden],.pure template{display:none}.pure a{background-color:transparent}.pure a:active,.pure a:hover{outline:0}.pure abbr[title]{border-bottom:1px dotted}.pure b,.pure strong{font-weight:700}.pure dfn{font-style:italic}.pure h1{font-size:2em;margin:.67em 0}.pure mark{background:#ff0;color:#000}.pure small{font-size:80%}.pure sub,.pure sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.pure sup{top:-.5em}.pure sub{bottom:-.25em}.pure img{border:0}.pure svg:not(:root){overflow:hidden}.pure figure{margin:1em 40px}.pure hr{box-sizing:content-box;height:0}.pure pre{overflow:auto}.pure code,.pure kbd,.pure pre,.pure samp{font-family:monospace,monospace;font-size:1em}.pure button,.pure input,.pure optgroup,.pure select,.pure textarea{color:inherit;font:inherit;margin:0}.pure button{overflow:visible}.pure button,.pure select{text-transform:none}.pure button,.pure input[type=button],.pure input[type=reset],.pure input[type=submit]{-webkit-appearance:button;cursor:pointer}.pure button[disabled],.pure input[disabled]{cursor:default}.pure button::-moz-focus-inner,.pure input::-moz-focus-inner{border:0;padding:0}.pure input{line-height:normal}.pure input[type=checkbox],.pure input[type=radio]{box-sizing:border-box;padding:0}.pure input[type=number]::-webkit-inner-spin-button,.pure input[type=number]::-webkit-outer-spin-button{height:auto}.pure input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.pure input[type=search]::-webkit-search-cancel-button,.pure input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.pure fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.pure legend{border:0;padding:0}.pure textarea{overflow:auto}.pure optgroup{font-weight:700}.pure table{border-collapse:collapse;border-spacing:0}.pure td,.pure th{padding:0}.pure .hidden,.pure [hidden]{display:none!important}.pure .pure-img{max-width:100%;height:auto;display:block} -------------------------------------------------------------------------------- /css/pure/grids-core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/ 8 | 9 | .pure-g { 10 | letter-spacing: -0.31em; /* Webkit: collapse white-space between units */ 11 | *letter-spacing: normal; /* reset IE < 8 */ 12 | *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */ 13 | text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */ 14 | 15 | /* 16 | Sets the font stack to fonts known to work properly with the above letter 17 | and word spacings. See: https://github.com/yahoo/pure/issues/41/ 18 | 19 | The following font stack makes Pure Grids work on all known environments. 20 | 21 | * FreeSans: Ships with many Linux distros, including Ubuntu 22 | 23 | * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and 24 | Arial to get picked up by the browser, even though neither is available 25 | in Chrome OS. 26 | 27 | * Droid Sans: Ships with all versions of Android. 28 | 29 | * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows. 30 | */ 31 | font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif; 32 | 33 | /* Use flexbox when possible to avoid `letter-spacing` side-effects. */ 34 | display: -webkit-box; 35 | display: -webkit-flex; 36 | display: -ms-flexbox; 37 | display: flex; 38 | -webkit-flex-flow: row wrap; 39 | -ms-flex-flow: row wrap; 40 | flex-flow: row wrap; 41 | 42 | /* Prevents distributing space between rows */ 43 | -webkit-align-content: flex-start; 44 | -ms-flex-line-pack: start; 45 | align-content: flex-start; 46 | } 47 | 48 | /* IE10 display: -ms-flexbox (and display: flex in IE 11) does not work inside a table; fall back to block and rely on font hack */ 49 | @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { 50 | table .pure-g { 51 | display: block; 52 | } 53 | } 54 | 55 | /* Opera as of 12 on Windows needs word-spacing. 56 | The ".opera-only" selector is used to prevent actual prefocus styling 57 | and is not required in markup. 58 | */ 59 | .opera-only :-o-prefocus, 60 | .pure-g { 61 | word-spacing: -0.43em; 62 | } 63 | 64 | .pure-u { 65 | display: inline-block; 66 | *display: inline; /* IE < 8: fake inline-block */ 67 | zoom: 1; 68 | letter-spacing: normal; 69 | word-spacing: normal; 70 | vertical-align: top; 71 | text-rendering: auto; 72 | } 73 | 74 | /* 75 | Resets the font family back to the OS/browser's default sans-serif font, 76 | this the same font stack that Normalize.css sets for the `body`. 77 | */ 78 | .pure-g [class *= "pure-u"] { 79 | font-family: sans-serif; 80 | } 81 | -------------------------------------------------------------------------------- /css/pure/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement (BSD License) 2 | ======================================== 3 | 4 | Copyright 2014 Yahoo! Inc. All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | * Redistributions of source code must retain the above copyright 10 | notice, this list of conditions and the following disclaimer. 11 | 12 | * Redistributions in binary form must reproduce the above copyright 13 | notice, this list of conditions and the following disclaimer in the 14 | documentation and/or other materials provided with the distribution. 15 | 16 | * Neither the name of the Yahoo! Inc. nor the 17 | names of its contributors may be used to endorse or promote products 18 | derived from this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 21 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 22 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY 24 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 25 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 26 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 27 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 29 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | 31 | 32 | Normalize.css License 33 | ===================== 34 | 35 | Copyright (c) Nicolas Gallagher and Jonathan Neal 36 | 37 | Permission is hereby granted, free of charge, to any person obtaining a copy of 38 | this software and associated documentation files (the "Software"), to deal in 39 | the Software without restriction, including without limitation the rights to 40 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 41 | the Software, and to permit persons to whom the Software is furnished to do so, 42 | subject to the following conditions: 43 | 44 | The above copyright notice and this permission notice shall be included in all 45 | copies or substantial portions of the Software. 46 | 47 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 48 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 49 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 50 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 51 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 52 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 53 | -------------------------------------------------------------------------------- /css/pure/buttons.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-button { 8 | /* Structure */ 9 | display: inline-block; 10 | zoom: 1; 11 | line-height: normal; 12 | white-space: nowrap; 13 | vertical-align: middle; 14 | text-align: center; 15 | cursor: pointer; 16 | -webkit-user-drag: none; 17 | -webkit-user-select: none; 18 | -moz-user-select: none; 19 | -ms-user-select: none; 20 | user-select: none; 21 | box-sizing: border-box; 22 | } 23 | 24 | /* Firefox: Get rid of the inner focus border */ 25 | .pure-button::-moz-focus-inner { 26 | padding: 0; 27 | border: 0; 28 | } 29 | 30 | /* Inherit .pure-g styles */ 31 | .pure-button-group { 32 | letter-spacing: -0.31em; /* Webkit: collapse white-space between units */ 33 | *letter-spacing: normal; /* reset IE < 8 */ 34 | *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */ 35 | text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */ 36 | } 37 | 38 | .opera-only :-o-prefocus, 39 | .pure-button-group { 40 | word-spacing: -0.43em; 41 | } 42 | 43 | .pure-button-group .pure-button { 44 | letter-spacing: normal; 45 | word-spacing: normal; 46 | vertical-align: top; 47 | text-rendering: auto; 48 | } 49 | 50 | /*csslint outline-none:false*/ 51 | 52 | .pure-button { 53 | font-family: inherit; 54 | font-size: 100%; 55 | padding: 0.5em 1em; 56 | color: #444; /* rgba not supported (IE 8) */ 57 | color: rgba(0, 0, 0, 0.80); /* rgba supported */ 58 | border: 1px solid #999; /*IE 6/7/8*/ 59 | border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/ 60 | background-color: #E6E6E6; 61 | text-decoration: none; 62 | border-radius: 2px; 63 | } 64 | 65 | .pure-button-hover, 66 | .pure-button:hover, 67 | .pure-button:focus { 68 | /* csslint ignore:start */ 69 | filter: alpha(opacity=90); 70 | /* csslint ignore:end */ 71 | background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10)); 72 | background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10)); 73 | } 74 | .pure-button:focus { 75 | outline: 0; 76 | } 77 | .pure-button-active, 78 | .pure-button:active { 79 | box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset; 80 | border-color: #000\9; 81 | } 82 | 83 | .pure-button[disabled], 84 | .pure-button-disabled, 85 | .pure-button-disabled:hover, 86 | .pure-button-disabled:focus, 87 | .pure-button-disabled:active { 88 | border: none; 89 | background-image: none; 90 | /* csslint ignore:start */ 91 | filter: alpha(opacity=40); 92 | /* csslint ignore:end */ 93 | opacity: 0.40; 94 | cursor: not-allowed; 95 | box-shadow: none; 96 | pointer-events: none; 97 | } 98 | 99 | .pure-button-hidden { 100 | display: none; 101 | } 102 | 103 | .pure-button-primary, 104 | .pure-button-selected, 105 | a.pure-button-primary, 106 | a.pure-button-selected { 107 | background-color: rgb(0, 120, 231); 108 | color: #fff; 109 | } 110 | 111 | /* Button Groups */ 112 | .pure-button-group .pure-button { 113 | margin: 0; 114 | border-radius: 0; 115 | border-right: 1px solid #111; /* fallback color for rgba() for IE7/8 */ 116 | border-right: 1px solid rgba(0, 0, 0, 0.2); 117 | 118 | } 119 | 120 | .pure-button-group .pure-button:first-child { 121 | border-top-left-radius: 2px; 122 | border-bottom-left-radius: 2px; 123 | } 124 | .pure-button-group .pure-button:last-child { 125 | border-top-right-radius: 2px; 126 | border-bottom-right-radius: 2px; 127 | border-right: none; 128 | } 129 | -------------------------------------------------------------------------------- /css/pure/grids-units.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-u-1, 8 | .pure-u-1-1, 9 | .pure-u-1-2, 10 | .pure-u-1-3, 11 | .pure-u-2-3, 12 | .pure-u-1-4, 13 | .pure-u-3-4, 14 | .pure-u-1-5, 15 | .pure-u-2-5, 16 | .pure-u-3-5, 17 | .pure-u-4-5, 18 | .pure-u-5-5, 19 | .pure-u-1-6, 20 | .pure-u-5-6, 21 | .pure-u-1-8, 22 | .pure-u-3-8, 23 | .pure-u-5-8, 24 | .pure-u-7-8, 25 | .pure-u-1-12, 26 | .pure-u-5-12, 27 | .pure-u-7-12, 28 | .pure-u-11-12, 29 | .pure-u-1-24, 30 | .pure-u-2-24, 31 | .pure-u-3-24, 32 | .pure-u-4-24, 33 | .pure-u-5-24, 34 | .pure-u-6-24, 35 | .pure-u-7-24, 36 | .pure-u-8-24, 37 | .pure-u-9-24, 38 | .pure-u-10-24, 39 | .pure-u-11-24, 40 | .pure-u-12-24, 41 | .pure-u-13-24, 42 | .pure-u-14-24, 43 | .pure-u-15-24, 44 | .pure-u-16-24, 45 | .pure-u-17-24, 46 | .pure-u-18-24, 47 | .pure-u-19-24, 48 | .pure-u-20-24, 49 | .pure-u-21-24, 50 | .pure-u-22-24, 51 | .pure-u-23-24, 52 | .pure-u-24-24 { 53 | display: inline-block; 54 | *display: inline; 55 | zoom: 1; 56 | letter-spacing: normal; 57 | word-spacing: normal; 58 | vertical-align: top; 59 | text-rendering: auto; 60 | } 61 | 62 | .pure-u-1-24 { 63 | width: 4.1667%; 64 | *width: 4.1357%; 65 | } 66 | 67 | .pure-u-1-12, 68 | .pure-u-2-24 { 69 | width: 8.3333%; 70 | *width: 8.3023%; 71 | } 72 | 73 | .pure-u-1-8, 74 | .pure-u-3-24 { 75 | width: 12.5000%; 76 | *width: 12.4690%; 77 | } 78 | 79 | .pure-u-1-6, 80 | .pure-u-4-24 { 81 | width: 16.6667%; 82 | *width: 16.6357%; 83 | } 84 | 85 | .pure-u-1-5 { 86 | width: 20%; 87 | *width: 19.9690%; 88 | } 89 | 90 | .pure-u-5-24 { 91 | width: 20.8333%; 92 | *width: 20.8023%; 93 | } 94 | 95 | .pure-u-1-4, 96 | .pure-u-6-24 { 97 | width: 25%; 98 | *width: 24.9690%; 99 | } 100 | 101 | .pure-u-7-24 { 102 | width: 29.1667%; 103 | *width: 29.1357%; 104 | } 105 | 106 | .pure-u-1-3, 107 | .pure-u-8-24 { 108 | width: 33.3333%; 109 | *width: 33.3023%; 110 | } 111 | 112 | .pure-u-3-8, 113 | .pure-u-9-24 { 114 | width: 37.5000%; 115 | *width: 37.4690%; 116 | } 117 | 118 | .pure-u-2-5 { 119 | width: 40%; 120 | *width: 39.9690%; 121 | } 122 | 123 | .pure-u-5-12, 124 | .pure-u-10-24 { 125 | width: 41.6667%; 126 | *width: 41.6357%; 127 | } 128 | 129 | .pure-u-11-24 { 130 | width: 45.8333%; 131 | *width: 45.8023%; 132 | } 133 | 134 | .pure-u-1-2, 135 | .pure-u-12-24 { 136 | width: 50%; 137 | *width: 49.9690%; 138 | } 139 | 140 | .pure-u-13-24 { 141 | width: 54.1667%; 142 | *width: 54.1357%; 143 | } 144 | 145 | .pure-u-7-12, 146 | .pure-u-14-24 { 147 | width: 58.3333%; 148 | *width: 58.3023%; 149 | } 150 | 151 | .pure-u-3-5 { 152 | width: 60%; 153 | *width: 59.9690%; 154 | } 155 | 156 | .pure-u-5-8, 157 | .pure-u-15-24 { 158 | width: 62.5000%; 159 | *width: 62.4690%; 160 | } 161 | 162 | .pure-u-2-3, 163 | .pure-u-16-24 { 164 | width: 66.6667%; 165 | *width: 66.6357%; 166 | } 167 | 168 | .pure-u-17-24 { 169 | width: 70.8333%; 170 | *width: 70.8023%; 171 | } 172 | 173 | .pure-u-3-4, 174 | .pure-u-18-24 { 175 | width: 75%; 176 | *width: 74.9690%; 177 | } 178 | 179 | .pure-u-19-24 { 180 | width: 79.1667%; 181 | *width: 79.1357%; 182 | } 183 | 184 | .pure-u-4-5 { 185 | width: 80%; 186 | *width: 79.9690%; 187 | } 188 | 189 | .pure-u-5-6, 190 | .pure-u-20-24 { 191 | width: 83.3333%; 192 | *width: 83.3023%; 193 | } 194 | 195 | .pure-u-7-8, 196 | .pure-u-21-24 { 197 | width: 87.5000%; 198 | *width: 87.4690%; 199 | } 200 | 201 | .pure-u-11-12, 202 | .pure-u-22-24 { 203 | width: 91.6667%; 204 | *width: 91.6357%; 205 | } 206 | 207 | .pure-u-23-24 { 208 | width: 95.8333%; 209 | *width: 95.8023%; 210 | } 211 | 212 | .pure-u-1, 213 | .pure-u-1-1, 214 | .pure-u-5-5, 215 | .pure-u-24-24 { 216 | width: 100%; 217 | } -------------------------------------------------------------------------------- /css/pure/menus.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | /*csslint adjoining-classes: false, box-model:false*/ 8 | .pure-menu { 9 | box-sizing: border-box; 10 | } 11 | 12 | .pure-menu-fixed { 13 | position: fixed; 14 | left: 0; 15 | top: 0; 16 | z-index: 3; 17 | } 18 | 19 | .pure-menu-list, 20 | .pure-menu-item { 21 | position: relative; 22 | } 23 | 24 | .pure-menu-list { 25 | list-style: none; 26 | margin: 0; 27 | padding: 0; 28 | } 29 | 30 | .pure-menu-item { 31 | padding: 0; 32 | margin: 0; 33 | height: 100%; 34 | } 35 | 36 | .pure-menu-link, 37 | .pure-menu-heading { 38 | display: block; 39 | text-decoration: none; 40 | white-space: nowrap; 41 | } 42 | 43 | /* HORIZONTAL MENU */ 44 | .pure-menu-horizontal { 45 | width: 100%; 46 | white-space: nowrap; 47 | } 48 | 49 | .pure-menu-horizontal .pure-menu-list { 50 | display: inline-block; 51 | } 52 | 53 | /* Initial menus should be inline-block so that they are horizontal */ 54 | .pure-menu-horizontal .pure-menu-item, 55 | .pure-menu-horizontal .pure-menu-heading, 56 | .pure-menu-horizontal .pure-menu-separator { 57 | display: inline-block; 58 | *display: inline; 59 | zoom: 1; 60 | vertical-align: middle; 61 | } 62 | 63 | /* Submenus should still be display: block; */ 64 | .pure-menu-item .pure-menu-item { 65 | display: block; 66 | } 67 | 68 | .pure-menu-children { 69 | display: none; 70 | position: absolute; 71 | left: 100%; 72 | top: 0; 73 | margin: 0; 74 | padding: 0; 75 | z-index: 3; 76 | } 77 | 78 | .pure-menu-horizontal .pure-menu-children { 79 | left: 0; 80 | top: auto; 81 | width: inherit; 82 | } 83 | 84 | .pure-menu-allow-hover:hover > .pure-menu-children, 85 | .pure-menu-active > .pure-menu-children { 86 | display: block; 87 | position: absolute; 88 | } 89 | 90 | /* Vertical Menus - show the dropdown arrow */ 91 | .pure-menu-has-children > .pure-menu-link:after { 92 | padding-left: 0.5em; 93 | content: "\25B8"; 94 | font-size: small; 95 | } 96 | 97 | /* Horizontal Menus - show the dropdown arrow */ 98 | .pure-menu-horizontal .pure-menu-has-children > .pure-menu-link:after { 99 | content: "\25BE"; 100 | } 101 | 102 | /* scrollable menus */ 103 | .pure-menu-scrollable { 104 | overflow-y: scroll; 105 | overflow-x: hidden; 106 | } 107 | 108 | .pure-menu-scrollable .pure-menu-list { 109 | display: block; 110 | } 111 | 112 | .pure-menu-horizontal.pure-menu-scrollable .pure-menu-list { 113 | display: inline-block; 114 | } 115 | 116 | .pure-menu-horizontal.pure-menu-scrollable { 117 | white-space: nowrap; 118 | overflow-y: hidden; 119 | overflow-x: auto; 120 | -ms-overflow-style: none; 121 | -webkit-overflow-scrolling: touch; 122 | /* a little extra padding for this style to allow for scrollbars */ 123 | padding: .5em 0; 124 | } 125 | 126 | .pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar { 127 | display: none; 128 | } 129 | 130 | /* misc default styling */ 131 | 132 | .pure-menu-separator, 133 | .pure-menu-horizontal .pure-menu-children .pure-menu-separator { 134 | background-color: #ccc; 135 | height: 1px; 136 | margin: .3em 0; 137 | } 138 | 139 | .pure-menu-horizontal .pure-menu-separator { 140 | width: 1px; 141 | height: 1.3em; 142 | margin: 0 .3em ; 143 | } 144 | 145 | /* Need to reset the separator since submenu is vertical */ 146 | .pure-menu-horizontal .pure-menu-children .pure-menu-separator { 147 | display: block; 148 | width: auto; 149 | } 150 | 151 | .pure-menu-heading { 152 | text-transform: uppercase; 153 | color: #565d64; 154 | } 155 | 156 | .pure-menu-link { 157 | color: #777; 158 | } 159 | 160 | .pure-menu-children { 161 | background-color: #fff; 162 | } 163 | 164 | .pure-menu-link, 165 | .pure-menu-disabled, 166 | .pure-menu-heading { 167 | padding: .5em 1em; 168 | } 169 | 170 | .pure-menu-disabled { 171 | opacity: .5; 172 | } 173 | 174 | .pure-menu-disabled .pure-menu-link:hover { 175 | background-color: transparent; 176 | } 177 | 178 | .pure-menu-active > .pure-menu-link, 179 | .pure-menu-link:hover, 180 | .pure-menu-link:focus { 181 | background-color: #eee; 182 | } 183 | 184 | .pure-menu-selected .pure-menu-link, 185 | .pure-menu-selected .pure-menu-link:visited { 186 | color: #000; 187 | } 188 | -------------------------------------------------------------------------------- /css/pure/forms-nr-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-form input[type=text],.pure-form input[type=number],.pure-form input[type=search],.pure-form input[type=tel],.pure-form input[type=color],.pure-form input[type=password],.pure-form input[type=email],.pure-form input[type=url],.pure-form input[type=date],.pure-form input[type=month],.pure-form input[type=time],.pure-form input[type=datetime],.pure-form input[type=datetime-local],.pure-form input[type=week],.pure-form select,.pure-form textarea{padding:.5em .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}.pure-form input:not([type]){padding:.5em .6em;display:inline-block;border:1px solid #ccc;box-shadow:inset 0 1px 3px #ddd;border-radius:4px;box-sizing:border-box}.pure-form input[type=color]{padding:.2em .5em}.pure-form input:not([type]):focus,.pure-form input[type=text]:focus,.pure-form input[type=number]:focus,.pure-form input[type=search]:focus,.pure-form input[type=tel]:focus,.pure-form input[type=color]:focus,.pure-form input[type=password]:focus,.pure-form input[type=email]:focus,.pure-form input[type=url]:focus,.pure-form input[type=date]:focus,.pure-form input[type=month]:focus,.pure-form input[type=time]:focus,.pure-form input[type=datetime]:focus,.pure-form input[type=datetime-local]:focus,.pure-form input[type=week]:focus,.pure-form select:focus,.pure-form textarea:focus{outline:0;border-color:#129FEA}.pure-form input[type=file]:focus,.pure-form input[type=radio]:focus,.pure-form input[type=checkbox]:focus{outline:#129FEA auto 1px}.pure-form .pure-checkbox,.pure-form .pure-radio{margin:.5em 0;display:block}.pure-form input:not([type])[disabled],.pure-form input[type=text][disabled],.pure-form input[type=number][disabled],.pure-form input[type=search][disabled],.pure-form input[type=tel][disabled],.pure-form input[type=color][disabled],.pure-form input[type=password][disabled],.pure-form input[type=email][disabled],.pure-form input[type=url][disabled],.pure-form input[type=date][disabled],.pure-form input[type=month][disabled],.pure-form input[type=time][disabled],.pure-form input[type=datetime][disabled],.pure-form input[type=datetime-local][disabled],.pure-form input[type=week][disabled],.pure-form select[disabled],.pure-form textarea[disabled]{cursor:not-allowed;background-color:#eaeded;color:#cad2d3}.pure-form input[readonly],.pure-form select[readonly],.pure-form textarea[readonly]{background-color:#eee;color:#777;border-color:#ccc}.pure-form input:focus:invalid,.pure-form select:focus:invalid,.pure-form textarea:focus:invalid{color:#b94a48;border-color:#e9322d}.pure-form input[type=file]:focus:invalid:focus,.pure-form input[type=radio]:focus:invalid:focus,.pure-form input[type=checkbox]:focus:invalid:focus{outline-color:#e9322d}.pure-form select{height:2.25em;border:1px solid #ccc;background-color:#fff}.pure-form select[multiple]{height:auto}.pure-form label{margin:.5em 0 .2em}.pure-form fieldset{margin:0;padding:.35em 0 .75em;border:0}.pure-form legend{display:block;width:100%;padding:.3em 0;margin-bottom:.3em;color:#333;border-bottom:1px solid #e5e5e5}.pure-form-stacked input:not([type]),.pure-form-stacked input[type=text],.pure-form-stacked input[type=number],.pure-form-stacked input[type=search],.pure-form-stacked input[type=tel],.pure-form-stacked input[type=color],.pure-form-stacked input[type=file],.pure-form-stacked input[type=password],.pure-form-stacked input[type=email],.pure-form-stacked input[type=url],.pure-form-stacked input[type=date],.pure-form-stacked input[type=month],.pure-form-stacked input[type=time],.pure-form-stacked input[type=datetime],.pure-form-stacked input[type=datetime-local],.pure-form-stacked input[type=week],.pure-form-stacked label,.pure-form-stacked select,.pure-form-stacked textarea{display:block;margin:.25em 0}.pure-form-aligned .pure-help-inline,.pure-form-aligned input,.pure-form-aligned select,.pure-form-aligned textarea,.pure-form-message-inline{display:inline-block;vertical-align:middle}.pure-form-aligned textarea{vertical-align:top}.pure-form-aligned .pure-control-group{margin-bottom:.5em}.pure-form-aligned .pure-control-group label{text-align:right;display:inline-block;vertical-align:middle;width:10em;margin:0 1em 0 0}.pure-form-aligned .pure-controls{margin:1.5em 0 0 11em}.pure-form .pure-input-rounded,.pure-form input.pure-input-rounded{border-radius:2em;padding:.5em 1em}.pure-form .pure-group fieldset{margin-bottom:10px}.pure-form .pure-group input,.pure-form .pure-group textarea{display:block;padding:10px;margin:0 0 -1px;border-radius:0;position:relative;top:-1px}.pure-form .pure-group input:focus,.pure-form .pure-group textarea:focus{z-index:3}.pure-form .pure-group input:first-child,.pure-form .pure-group textarea:first-child{top:1px;border-radius:4px 4px 0 0;margin:0}.pure-form .pure-group input:first-child:last-child,.pure-form .pure-group textarea:first-child:last-child{top:1px;border-radius:4px;margin:0}.pure-form .pure-group input:last-child,.pure-form .pure-group textarea:last-child{top:-2px;border-radius:0 0 4px 4px;margin:0}.pure-form .pure-group button{margin:.35em 0}.pure-form .pure-input-1{width:100%}.pure-form .pure-input-3-4{width:75%}.pure-form .pure-input-2-3{width:66%}.pure-form .pure-input-1-2{width:50%}.pure-form .pure-input-1-3{width:33%}.pure-form .pure-input-1-4{width:25%}.pure-form .pure-help-inline,.pure-form-message-inline{display:inline-block;padding-left:.3em;color:#666;vertical-align:middle;font-size:.875em}.pure-form-message{display:block;color:#666;font-size:.875em} -------------------------------------------------------------------------------- /css/pure/grids-responsive-old-ie-min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-u-lg-1,.pure-u-lg-1-1,.pure-u-lg-1-12,.pure-u-lg-1-2,.pure-u-lg-1-24,.pure-u-lg-1-3,.pure-u-lg-1-4,.pure-u-lg-1-5,.pure-u-lg-1-6,.pure-u-lg-1-8,.pure-u-lg-10-24,.pure-u-lg-11-12,.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-2-24,.pure-u-lg-2-3,.pure-u-lg-2-5,.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,.pure-u-lg-3-24,.pure-u-lg-3-4,.pure-u-lg-3-5,.pure-u-lg-3-8,.pure-u-lg-4-24,.pure-u-lg-4-5,.pure-u-lg-5-12,.pure-u-lg-5-24,.pure-u-lg-5-5,.pure-u-lg-5-6,.pure-u-lg-5-8,.pure-u-lg-6-24,.pure-u-lg-7-12,.pure-u-lg-7-24,.pure-u-lg-7-8,.pure-u-lg-8-24,.pure-u-lg-9-24,.pure-u-md-1,.pure-u-md-1-1,.pure-u-md-1-12,.pure-u-md-1-2,.pure-u-md-1-24,.pure-u-md-1-3,.pure-u-md-1-4,.pure-u-md-1-5,.pure-u-md-1-6,.pure-u-md-1-8,.pure-u-md-10-24,.pure-u-md-11-12,.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-2-24,.pure-u-md-2-3,.pure-u-md-2-5,.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,.pure-u-md-3-24,.pure-u-md-3-4,.pure-u-md-3-5,.pure-u-md-3-8,.pure-u-md-4-24,.pure-u-md-4-5,.pure-u-md-5-12,.pure-u-md-5-24,.pure-u-md-5-5,.pure-u-md-5-6,.pure-u-md-5-8,.pure-u-md-6-24,.pure-u-md-7-12,.pure-u-md-7-24,.pure-u-md-7-8,.pure-u-md-8-24,.pure-u-md-9-24,.pure-u-sm-1,.pure-u-sm-1-1,.pure-u-sm-1-12,.pure-u-sm-1-2,.pure-u-sm-1-24,.pure-u-sm-1-3,.pure-u-sm-1-4,.pure-u-sm-1-5,.pure-u-sm-1-6,.pure-u-sm-1-8,.pure-u-sm-10-24,.pure-u-sm-11-12,.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-2-24,.pure-u-sm-2-3,.pure-u-sm-2-5,.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,.pure-u-sm-3-24,.pure-u-sm-3-4,.pure-u-sm-3-5,.pure-u-sm-3-8,.pure-u-sm-4-24,.pure-u-sm-4-5,.pure-u-sm-5-12,.pure-u-sm-5-24,.pure-u-sm-5-5,.pure-u-sm-5-6,.pure-u-sm-5-8,.pure-u-sm-6-24,.pure-u-sm-7-12,.pure-u-sm-7-24,.pure-u-sm-7-8,.pure-u-sm-8-24,.pure-u-sm-9-24{display:inline-block;zoom:1;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.5%}.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.5%}.pure-u-sm-2-5{width:40%}.pure-u-sm-10-24,.pure-u-sm-5-12{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-14-24,.pure-u-sm-7-12{width:58.3333%}.pure-u-sm-3-5{width:60%}.pure-u-sm-15-24,.pure-u-sm-5-8{width:62.5%}.pure-u-sm-16-24,.pure-u-sm-2-3{width:66.6667%}.pure-u-sm-17-24{width:70.8333%}.pure-u-sm-18-24,.pure-u-sm-3-4{width:75%}.pure-u-sm-19-24{width:79.1667%}.pure-u-sm-4-5{width:80%}.pure-u-sm-20-24,.pure-u-sm-5-6{width:83.3333%}.pure-u-sm-21-24,.pure-u-sm-7-8{width:87.5%}.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-24-24,.pure-u-sm-5-5{width:100%}.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.5%}.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.5%}.pure-u-md-2-5{width:40%}.pure-u-md-10-24,.pure-u-md-5-12{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-14-24,.pure-u-md-7-12{width:58.3333%}.pure-u-md-3-5{width:60%}.pure-u-md-15-24,.pure-u-md-5-8{width:62.5%}.pure-u-md-16-24,.pure-u-md-2-3{width:66.6667%}.pure-u-md-17-24{width:70.8333%}.pure-u-md-18-24,.pure-u-md-3-4{width:75%}.pure-u-md-19-24{width:79.1667%}.pure-u-md-4-5{width:80%}.pure-u-md-20-24,.pure-u-md-5-6{width:83.3333%}.pure-u-md-21-24,.pure-u-md-7-8{width:87.5%}.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-24-24,.pure-u-md-5-5{width:100%}.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.5%}.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.5%}.pure-u-lg-2-5{width:40%}.pure-u-lg-10-24,.pure-u-lg-5-12{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-14-24,.pure-u-lg-7-12{width:58.3333%}.pure-u-lg-3-5{width:60%}.pure-u-lg-15-24,.pure-u-lg-5-8{width:62.5%}.pure-u-lg-16-24,.pure-u-lg-2-3{width:66.6667%}.pure-u-lg-17-24{width:70.8333%}.pure-u-lg-18-24,.pure-u-lg-3-4{width:75%}.pure-u-lg-19-24{width:79.1667%}.pure-u-lg-4-5{width:80%}.pure-u-lg-20-24,.pure-u-lg-5-6{width:83.3333%}.pure-u-lg-21-24,.pure-u-lg-7-8{width:87.5%}.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-24-24,.pure-u-lg-5-5{width:100%} -------------------------------------------------------------------------------- /css/pure/grids-responsive-old-ie.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Pure v1.0.0 3 | Copyright 2013 Yahoo! 4 | Licensed under the BSD License. 5 | https://github.com/yahoo/pure/blob/master/LICENSE.md 6 | */ 7 | .pure-u-sm-1,.pure-u-sm-1-1,.pure-u-sm-1-12,.pure-u-sm-1-2,.pure-u-sm-1-24,.pure-u-sm-1-3,.pure-u-sm-1-4,.pure-u-sm-1-5,.pure-u-sm-1-6,.pure-u-sm-1-8,.pure-u-sm-10-24,.pure-u-sm-11-12,.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-2-24,.pure-u-sm-2-3,.pure-u-sm-2-5,.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,.pure-u-sm-3-24,.pure-u-sm-3-4,.pure-u-sm-3-5,.pure-u-sm-3-8,.pure-u-sm-4-24,.pure-u-sm-4-5,.pure-u-sm-5-12,.pure-u-sm-5-24,.pure-u-sm-5-5,.pure-u-sm-5-6,.pure-u-sm-5-8,.pure-u-sm-6-24,.pure-u-sm-7-12,.pure-u-sm-7-24,.pure-u-sm-7-8,.pure-u-sm-8-24,.pure-u-sm-9-24{display:inline-block;zoom:1;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.5%}.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.5%}.pure-u-sm-2-5{width:40%}.pure-u-sm-10-24,.pure-u-sm-5-12{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-14-24,.pure-u-sm-7-12{width:58.3333%}.pure-u-sm-3-5{width:60%}.pure-u-sm-15-24,.pure-u-sm-5-8{width:62.5%}.pure-u-sm-16-24,.pure-u-sm-2-3{width:66.6667%}.pure-u-sm-17-24{width:70.8333%}.pure-u-sm-18-24,.pure-u-sm-3-4{width:75%}.pure-u-sm-19-24{width:79.1667%}.pure-u-sm-4-5{width:80%}.pure-u-sm-20-24,.pure-u-sm-5-6{width:83.3333%}.pure-u-sm-21-24,.pure-u-sm-7-8{width:87.5%}.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-24-24,.pure-u-sm-5-5{width:100%}.pure-u-md-1,.pure-u-md-1-1,.pure-u-md-1-12,.pure-u-md-1-2,.pure-u-md-1-24,.pure-u-md-1-3,.pure-u-md-1-4,.pure-u-md-1-5,.pure-u-md-1-6,.pure-u-md-1-8,.pure-u-md-10-24,.pure-u-md-11-12,.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-2-24,.pure-u-md-2-3,.pure-u-md-2-5,.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,.pure-u-md-3-24,.pure-u-md-3-4,.pure-u-md-3-5,.pure-u-md-3-8,.pure-u-md-4-24,.pure-u-md-4-5,.pure-u-md-5-12,.pure-u-md-5-24,.pure-u-md-5-5,.pure-u-md-5-6,.pure-u-md-5-8,.pure-u-md-6-24,.pure-u-md-7-12,.pure-u-md-7-24,.pure-u-md-7-8,.pure-u-md-8-24,.pure-u-md-9-24{display:inline-block;zoom:1;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.5%}.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.5%}.pure-u-md-2-5{width:40%}.pure-u-md-10-24,.pure-u-md-5-12{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-14-24,.pure-u-md-7-12{width:58.3333%}.pure-u-md-3-5{width:60%}.pure-u-md-15-24,.pure-u-md-5-8{width:62.5%}.pure-u-md-16-24,.pure-u-md-2-3{width:66.6667%}.pure-u-md-17-24{width:70.8333%}.pure-u-md-18-24,.pure-u-md-3-4{width:75%}.pure-u-md-19-24{width:79.1667%}.pure-u-md-4-5{width:80%}.pure-u-md-20-24,.pure-u-md-5-6{width:83.3333%}.pure-u-md-21-24,.pure-u-md-7-8{width:87.5%}.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-24-24,.pure-u-md-5-5{width:100%}.pure-u-lg-1,.pure-u-lg-1-1,.pure-u-lg-1-12,.pure-u-lg-1-2,.pure-u-lg-1-24,.pure-u-lg-1-3,.pure-u-lg-1-4,.pure-u-lg-1-5,.pure-u-lg-1-6,.pure-u-lg-1-8,.pure-u-lg-10-24,.pure-u-lg-11-12,.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-2-24,.pure-u-lg-2-3,.pure-u-lg-2-5,.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,.pure-u-lg-3-24,.pure-u-lg-3-4,.pure-u-lg-3-5,.pure-u-lg-3-8,.pure-u-lg-4-24,.pure-u-lg-4-5,.pure-u-lg-5-12,.pure-u-lg-5-24,.pure-u-lg-5-5,.pure-u-lg-5-6,.pure-u-lg-5-8,.pure-u-lg-6-24,.pure-u-lg-7-12,.pure-u-lg-7-24,.pure-u-lg-7-8,.pure-u-lg-8-24,.pure-u-lg-9-24{display:inline-block;zoom:1;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.5%}.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.5%}.pure-u-lg-2-5{width:40%}.pure-u-lg-10-24,.pure-u-lg-5-12{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-14-24,.pure-u-lg-7-12{width:58.3333%}.pure-u-lg-3-5{width:60%}.pure-u-lg-15-24,.pure-u-lg-5-8{width:62.5%}.pure-u-lg-16-24,.pure-u-lg-2-3{width:66.6667%}.pure-u-lg-17-24{width:70.8333%}.pure-u-lg-18-24,.pure-u-lg-3-4{width:75%}.pure-u-lg-19-24{width:79.1667%}.pure-u-lg-4-5{width:80%}.pure-u-lg-20-24,.pure-u-lg-5-6{width:83.3333%}.pure-u-lg-21-24,.pure-u-lg-7-8{width:87.5%}.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-24-24,.pure-u-lg-5-5{width:100%} -------------------------------------------------------------------------------- /css/pure/README.md: -------------------------------------------------------------------------------- 1 | Pure 2 | ==== 3 | 4 | [![Pure](https://cloud.githubusercontent.com/assets/449779/5291099/1b554cca-7b03-11e4-9157-53a12d91b34a.png)][Pure] 5 | 6 | A set of small, responsive CSS modules that you can use in every web project. 7 | [http://purecss.io/][Pure] 8 | 9 | [![Build Status](http://img.shields.io/travis/yahoo/pure.svg?style=flat)][Build Status] 10 | [![Dependency Status](https://david-dm.org/yahoo/pure/dev-status.svg)](https://david-dm.org/yahoo/pure?type=dev) 11 | [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/yahoo/pure?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 12 | 13 | **Use From the CDN:** 14 | 15 | ```html 16 | 17 | ``` 18 | 19 | Note: You can [customize which Pure modules you need][customize]. 20 | 21 | **Install with Bower:** 22 | 23 | ```shell 24 | $ bower install --save pure 25 | ``` 26 | 27 | **Install with NPM:** 28 | 29 | ```shell 30 | $ npm install purecss 31 | ``` 32 | 33 | [Pure]: http://purecss.io/ 34 | [Bower]: http://bower.io/ 35 | [Build Status]: https://travis-ci.org/yahoo/pure 36 | [customize]: http://purecss.io/customize/ 37 | 38 | 39 | Features 40 | -------- 41 | 42 | Pure is meant to be a starting point for every website or web app. We take care 43 | of all the CSS work that every site needs, without making it look cookie-cutter: 44 | 45 | * A responsive grid that can be customized to your needs. 46 | 47 | * A solid base built on [Normalize.css][] to fix cross-browser compatibility 48 | issues. 49 | 50 | * Consistently styled buttons that work with `` and ` 137 | ``` 138 | 139 | A new rule for the `[hidden]` selector has been added with the declaration: 140 | `display: none !important;`. This is a time where it's appropriate for a 141 | project like Pure to use `!important`. ([#177][]) 142 | 143 | ### Buttons 144 | 145 | * Removed all the occurrences of `-ms-linear-gradient()` from Buttons since it 146 | has never been in the final version of IE 10. ([#200][]: @AurelioDeRosa) 147 | 148 | * `` Buttons now have the same height as non-input buttons. 149 | `font-family: inherit;` has been added to the `.pure-button` selector to 150 | normalize the difference in height. ([#221][] @narcis-radu) 151 | 152 | * Buttons now have visually uniform default `padding` on all four sides. The 153 | left/right padding is 2x the top/bottom padding. ([#191][] @achalv) 154 | 155 | ### Forms 156 | 157 | * Added `vertical-align: top;` to `