diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..b219b5b7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# editorconfig.org + +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..cd57d612 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,18 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "plugins": ["node"], + "extends": ["eslint:recommended", "plugin:node/recommended"], + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module", + "warnOnUnsupportedTypeScriptVersion": false + }, + "rules": { + "node/no-deprecated-api": 0, + "no-console": 0 + } +} diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..f1c5b48b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,262 @@ +# Common settings that generally should always be used with your language specific settings + +# Auto detect text files and perform LF normalization +# https://www.davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/ +* text=auto + +# +# The above will handle all files NOT found below +# + +# Documents +*.bibtex text diff=bibtex +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain +*.md text +*.tex text diff=tex +*.adoc text +*.textile text +*.mustache text +*.csv text +*.tab text +*.tsv text +*.sql text + +# Graphics +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.tif binary +*.tiff binary +*.ico binary +# SVG treated as an asset (binary) by default. +*.svg text +# If you want to treat it as binary, +# use the following line instead. +# *.svg binary + +*.eps binary + +# +# Exclude files from exporting +# + +.gitattributes export-ignore +.gitignore export-ignore + +## GITATTRIBUTES FOR WEB PROJECTS +# +# These settings are for any web project. +# +# Details per file setting: +# text These files should be normalized (i.e. convert CRLF to LF). +# binary These files are binary and should be left untouched. +# +# Note that binary is a macro for -text -diff. +###################################################################### + +# Auto detect +## Handle line endings automatically for files detected as +## text and leave all files detected as binary untouched. +## This will handle all files NOT defined below. +* text=auto + +# Source code +*.bash text eol=lf +*.bat text eol=crlf +*.cmd text eol=crlf +*.coffee text +*.css text +*.htm text diff=html +*.html text diff=html +*.inc text +*.ini text +*.js text +*.json text +*.jsx text +*.less text +*.ls text +*.map text -diff +*.od text +*.onlydata text +*.php text diff=php +*.pl text +*.ps1 text eol=crlf +*.py text diff=python +*.rb text diff=ruby +*.sass text +*.scm text +*.scss text diff=css +*.sh text eol=lf +*.sql text +*.styl text +*.tag text +*.ts text +*.tsx text +*.xml text +*.xhtml text diff=html + +# Docker +*.dockerignore text +Dockerfile text + +# Documentation +*.ipynb text +*.markdown text +*.md text +*.mdwn text +*.mdown text +*.mkd text +*.mkdn text +*.mdtxt text +*.mdtext text +*.txt text +AUTHORS text +CHANGELOG text +CHANGES text +CONTRIBUTING text +COPYING text +copyright text +*COPYRIGHT* text +INSTALL text +license text +LICENSE text +NEWS text +readme text +*README* text +TODO text + +# Templates +*.dot text +*.ejs text +*.haml text +*.handlebars text +*.hbs text +*.hbt text +*.jade text +*.latte text +*.mustache text +*.njk text +*.phtml text +*.tmpl text +*.tpl text +*.twig text +*.vue text + +# Linters +.csslintrc text +.eslintrc text +.htmlhintrc text +.jscsrc text +.jshintrc text +.jshintignore text +.stylelintrc text + +# Configs +*.bowerrc text +*.cnf text +*.conf text +*.config text +.babelrc text +.browserslistrc text +.editorconfig text +.env text +.gitattributes text +.gitconfig text +.htaccess text +*.lock text -diff +package-lock.json text -diff +*.npmignore text +*.yaml text +*.yml text +browserslist text +Makefile text +makefile text + +# Heroku +Procfile text +.slugignore text + +# Graphics +*.ai binary +*.bmp binary +*.eps binary +*.gif binary +*.gifv binary +*.ico binary +*.jng binary +*.jp2 binary +*.jpg binary +*.jpeg binary +*.jpx binary +*.jxr binary +*.pdf binary +*.png binary +*.psb binary +*.psd binary +# SVG treated as an asset (binary) by default. +*.svg text +# If you want to treat it as binary, +# use the following line instead. +# *.svg binary +*.svgz binary +*.tif binary +*.tiff binary +*.wbmp binary +*.webp binary + +# Audio +*.kar binary +*.m4a binary +*.mid binary +*.midi binary +*.mp3 binary +*.ogg binary +*.ra binary + +# Video +*.3gpp binary +*.3gp binary +*.as binary +*.asf binary +*.asx binary +*.fla binary +*.flv binary +*.m4v binary +*.mng binary +*.mov binary +*.mp4 binary +*.mpeg binary +*.mpg binary +*.ogv binary +*.swc binary +*.swf binary +*.webm binary + +# Archives +*.7z binary +*.gz binary +*.jar binary +*.rar binary +*.tar binary +*.zip binary + +# Fonts +*.ttf binary +*.eot binary +*.otf binary +*.woff binary +*.woff2 binary + +# Executables +*.exe binary +*.pyc binary diff --git a/.gitignore b/.gitignore index 4e9ba1e5..110bba10 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,168 @@ +# Node Version Manager configuration. +.nvmrc + +# Created by https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode +# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,visualstudiocode + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General .DS_Store -.idea -./config.json +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +### VisualStudioCode ### +.vscode/* + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# End of https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode diff --git a/.htaccess b/.htaccess index 5f23f4fe..7e05dc99 100644 --- a/.htaccess +++ b/.htaccess @@ -1,21 +1,5 @@ - -# $Id: .htaccess,v 1.3 2006/11/09 09:08:14 remy Exp $ -Options +FollowSymLinks +ExecCGI -RewriteEngine On -RewriteBase / - -RewriteRule "(^|/)(CVS|\.svn|\.git)/" - [F] - -# strip www. from the domain +# Strip www from the domain RewriteCond %{HTTP_HOST} ^www\.mit-license\.org$ [NC] RewriteRule ^(.*)$ http://mit-license.org/$1 [R=301,L] - -# if the file or directory exists -RewriteCond %{REQUEST_FILENAME} -d [OR] -RewriteCond %{REQUEST_FILENAME} -f -RewriteRule .* - [L] - -# using 'index.php' because it forces a '/' request to the handler -RewriteRule ^(.*)$ index.php [QSA,L] diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index d346e2ab..00000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -5.3 diff --git a/.travis.yml b/.travis.yml index a6c8f557..7ea3eaa1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,15 @@ -language: node_js -sudo: false -node_js: - - "stable" +language: node_js + +node_js: lts/* + +cache: + - npm + - yarn + +before_install: npm i -g yarn + +install: yarn install --non-interactive + +script: + - yarn test + - yarn lint diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 01b8644f..550cb1d3 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -19,4 +19,4 @@ This code of conduct applies both within project spaces and in public spaces whe Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. -This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/) +This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](https://contributor-covenant.org/version/1/2/0/) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 09004347..94eafd3b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,14 +1,12 @@ # Contributing -This project is PHP based but may one day move to node (as this is my preferred development language). - If you are a collaborator (with push permissions), you can merge any open PR with the following conditions: -1. It passes the JSON validity test (this is a github integration in travis) +1. It passes the JSON validity test (this is a GitHub integration in Travis CI) 2. Merge anything that adds or updates a `.json` file If you're unsure, cc @remy into the PR with a question and we can work out what to do. -The site is hosted on heroku and will automatically deploy merges into master, which means once a PR is merged, it'll be live shortly thereafter (so there's nothing to do 🎉). +The site is hosted on Heroku and will automatically deploy merges into master, which means once a PR is merged, it'll be live shortly thereafter (so there's nothing to do 🎉). -Also, thank you, your help is appreciated 💙 \ No newline at end of file +Also, thank you, your help is appreciated 💙 diff --git a/LICENSE b/LICENSE index ff462117..597139e6 100644 --- a/LICENSE +++ b/LICENSE @@ -1 +1 @@ -SEE: http://rem.mit-license.org/ +SEE: https://rem.mit-license.org/ diff --git a/LICENSE.html b/LICENSE.html deleted file mode 100644 index 0066cbd0..00000000 --- a/LICENSE.html +++ /dev/null @@ -1,65 +0,0 @@ - - - -MIT License - - - - - - - - -
-{{gravatar}} -

The MIT License (MIT)

-

Copyright © {{info}}

- -

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.

-
- - - diff --git a/Procfile b/Procfile new file mode 100644 index 00000000..2be5f808 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: yarn start diff --git a/README.md b/README.md index 0c942955..bccb866e 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -# A permalink for your MIT License +# A permalink for your MIT License ![Travis CI Status](https://img.shields.io/travis/remy/mit-license/master.svg?style=for-the-badge) -I always forget to add an MIT-license.txt file to my projects, so I wanted to link to a single resource that would always be up to date and would always have my details online. +I always forget to add an `MIT-license.txt` file to my projects, so I wanted to link to a single resource that would always be up to date and would always have my details online. -Why keep this to myself, there's two ways to create your *own* MIT license page: +Why keep this to myself, there are two ways to create your _own_ MIT license page: -1. Make a request to the API (details below) -2. Fork this project and send a pull request +1. Make a request to the API (details below) +2. Fork this project and send a pull request -Now I can always include http://rem.mit-license.org in all my projects which links `rem` (the cname) against my copyright holder name `Remy Sharp` - all stored in the `users` directory. +Now I can always include in all my projects which links `rem` (the CNAME) against my copyright holder name `Remy Sharp` - all stored in the `users` directory. ## Requesting your own MIT license page @@ -17,31 +17,43 @@ You can fork this project, send me a pull request and wait for me to pull (which curl -d'{ "copyright": "Remy Sharp" }' https://rem.mit-license.org ``` -If the `rem` user isn't taken already, then this will create the new user file on the fly and the url will be immediately available. +If the `rem` user isn't taken already, then this will create the new user file on the fly and the URL will be immediately available. -You can send a full JSON file to the API, not *just* the copyright, so this works too: +You can send a full JSON file to the API, not _just_ the copyright, so this works too: ```bash -curl -d'{ "copyright": "Remy Sharp", "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" }' https://rem.mit-license.org +curl -d'{ "copyright": "Remy Sharp", "url": "https://remysharp.com", "email": "me@mysite.com", "format": "txt" }' https://rem.mit-license.org ``` -If there's any problems in the automated creation, send me a pull request and it'll go live soon after. +Whilst the command above sends the data as a string which will later be parsed, you can explicitly specify a JSON `Content-Type`: -Equally if you need to update the user file to include more details that you didn't initially include (extra fields in the next section) you will need to send a pull request on that `user.json` file via GitHub. +```bash +curl -H 'Content-Type: application/json' -d'{ "copyright": "Remy Sharp", "url": "https://remysharp.com", "email": "me@mysite.com", "format": "txt" }' https://rem.mit-license.org +``` + +You can also encode the data as URL query parameters like so: + +```bash +curl -X POST "https://rem.mit-license.org/?copyright=Remy%20Sharp&url=http%3A%2F%2Fremysharp.com&email=me%40mysite.com&format=txt" +``` + +If there are any problems in the automated creation, send me a pull request and it'll go live soon after. + +Equally, if you need to update the user file to include more details that you didn't initially include (extra fields in the next section) you will need to send a pull request on that `user.json` file via GitHub. ## The user.json file -The `users` directory contains a list of files, each representing a host on mit-license.org. The minimum requirement for the JSON is that is contains a `copyright` field - everything else is optional. Remember to ensure the `user.json` file is [valid JSON](http://jsonlint.com/). +The `users` directory contains a list of files, each representing a host on mit-license.org. The minimum requirement for the JSON is that it contains a `copyright` field - everything else is optional. Remember to ensure the `user.json` file is [valid JSON](https://jsonlint.com/). Available fields: * copyright (required) -* url +* URL * email * format * gravatar -* version * theme +* license ### copyright @@ -49,20 +61,48 @@ Create a new file and give it the name of the CNAME you want (in my case it's `r ```json { - "copyright": "Remy Sharp, http://remysharp.com" + "copyright": "Remy Sharp, https://remysharp.com" } ``` -Means I can now link to: http://rem.mit-license.org and it will show my license name (note that the date will always show the current year). +Means I can now link to and it will show my license name (note that the date will always show the current year). -### url - -In addition to the `copyright` property, if you want to make a link from the copyright text, you can include a `url` property: +You can also use an array to hold multiple copyright holders: ```json { - "copyright": "Remy Sharp, http://remysharp.com", - "url": "http://remysharp.com" + "copyright": ["Remy Sharp", "Richie Bendall"] +} +``` + +Which will be formatted as: + + Remy Sharp and Richie Bendall + +If you additionally want to include a URL and email with each copyright holder, use objects in the array: + +```json +{ + "copyright": [{ + "name": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", + "email": "remy@remysharp.com" + }, { + "name": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com" + }] +} +``` + +### url + +In addition to the `copyright` property, if you want to make a link from the copyright text, you can include a `URL` property: + +```json +{ + "copyright": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com" } ``` @@ -72,8 +112,8 @@ You can also include a link to your email which is displayed after the copyright ```json { - "copyright": "Remy Sharp, http://remysharp.com", - "url": "http://remysharp.com", + "copyright": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", "email": "me@mysite.com" } ``` @@ -84,8 +124,8 @@ And if you want your license to appear as plain text, just add the `format` prop ```json { - "copyright": "Remy Sharp, http://remysharp.com", - "url": "http://remysharp.com", + "copyright": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", "format": "txt" } ``` @@ -96,8 +136,8 @@ And if you want to show your gravatar, just add the `gravatar` boolean property: ```json { - "copyright": "Remy Sharp, http://remysharp.com", - "url": "http://remysharp.com", + "copyright": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", "email": "me@mysite.com", "gravatar": true } @@ -105,38 +145,16 @@ And if you want to show your gravatar, just add the `gravatar` boolean property: Note that the gravatar requires the email property. You also need to check the compatibility of the chosen theme. Currently, only the default theme supports Gravatar. -### License version targeting - -License version targeting allows you to link your MIT license to a specific revision in this project - therefore fixing it permanently to a specific license text. - -Though I don't expect the license text to change ever, this is just some extra assurance for you. - -Targeting requires the [sha from the license commit](https://github.com/remy/mit-license/commits/master/LICENSE.html). This can be specified on the URL (in your permalink) or in the JSON file. - -For example: http://rem.mit-license.org/a526bf7ad1 (make sure to view-source) shows an older version of the LICENSE.html file (compared to the [latest version](http://rem.mit-license.org) - the older version didn't have the new themes). - -This can also be targeted in my JSON file: - -```json -{ - "copyright": "Remy Sharp, http://remysharp.com", - "url": "http://remysharp.com", - "version": "a526rbf7" -} -``` - -Note that if no version is supplied, the latest copy of the LICENSE.html will be displayed with your information included. - ### Themes -If you've got an eye for design (or like me: not): you can contribute a theme by adding a CSS file to the `themes` directory. The default theme is simple and clean, but you can add your own as you like. +If you've got an eye for design (or like me: not): you can contribute a theme by adding a CSS file to the `themes` directory. You can use the latest CSS technologies since they are automatically polyfilled. The default theme is simple and clean, but you can add your own as you like. To use a theme, add the `theme` property to your `user.json` file, for example: ```json { - "copyright": "Remy Sharp, http://remysharp.com", - "url": "http://remysharp.com", + "copyright": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", "theme": "flesch" } ``` @@ -184,30 +202,30 @@ Current available themes: The following types of requests can be made to this project: -* [http://rem.mit-license.org/](http://rem.mit-license.org/) HTML, or the default format specified in -the json file (currently none specified on `rem`) -* [http://rem.mit-license.org/license.html](http://rem.mit-license.org/license.html) HTML -* [http://rem.mit-license.org/license.txt](http://rem.mit-license.org/license.txt) Text -* [http://rem.mit-license.org/a526bf7ad1](http://rem.mit-license.org/a526bf7ad1) a526bf7ad1 version, HTML, or the -default format specified in the json file (again, none specified for -`rem` so defaults to HTML) -* [http://rem.mit-license.org/a526bf7ad1/license.html](http://rem.mit-license.org/a526bf7ad1/license.html) a526bf7ad1 version, -HTML -* [http://rem.mit-license.org/a526bf7ad1/license.txt](http://rem.mit-license.org/a526bf7ad1/license.txt) a526bf7ad1 version, -text +* HTML, or the default format specified in + the json file (currently none specified on `rem`) +* HTML +* Text -The url also supports including a start year: +The URL also supports including a start year: -* [http://rem.mit-license.org/2009/](http://rem.mit-license.org/2009/) will - show a license year range of 2009-2016 (2016 being the current year) -* [http://rem.mit-license.org/2009-2010](http://rem.mit-license.org/2009-2010/) - allows me to force the year range -* [http://rem.mit-license.org/a526bf7ad1/2009-2010/license.txt](http://rem.mit-license.org/a526bf7ad1/2009-2010/license.txt) a526bf7ad1 version, with year range of 2009-2010 in plain text +* will + show a license year range of 2009-2016 (2016 being the current year) +* + allows me to force the year range +* year range of 2009-2010 in plain text -Finally, the url also supports pinning the year +You can also specify either the `MIT` or `ISC` license in the URL: -* [http://rem.mit-license.org/@2009](http://rem.mit-license.org/@2009) - this is useful for when your software copyright should expire ([as discussed here](https://github.com/remy/mit-license/issues/771)) +* will + show the MIT License (default) +* + shows the ISC license instead + +Finally, the URL also supports pinning the year + +* + this is useful for when your software copyright should expire ([as discussed here](https://github.com/remy/mit-license/issues/771)) ## Ways to contribute @@ -220,6 +238,7 @@ Development contributions from: * [georgebashi](https://github.com/georgebashi) * [mathiasbynens](https://github.com/mathiasbynens) * [evertton](https://github.com/evertton) +* [Richienb](https://github.com/Richienb) **SSL and wildcard DNS is supported by [CloudFlare](https://www.cloudflare.com) - thank you 🙏💙** @@ -227,7 +246,7 @@ Development contributions from: I host the domain with namecheap.com and yearly renewal is $9.69 per year. If you want to contribute a year, send me a message and I'll add the years on. -Of course I'll do my best to continue running the domain and hosting, but this is your chance to contribute to the community project. +Of course, I'll do my best to continue running the domain and hosting, but this is your chance to contribute to the community project. Domain contributions: @@ -243,11 +262,11 @@ Domain contributions: * [barberboy](https://github.com/barberboy) - 2029-2030 * [mostly-magic](https://github.com/mostly-magic) - 2030-2032 -*Please note that the whois says 2021 as you can only have 10 active registered years with ICANN - but the domain is set to auto-renew, so it's all good :)* +_Please note that the whois says 2021 as you can only have 10 active registered years with ICANN - but the domain is set to auto-renew, so it's all good :)_ ### 2. Hosting -For the first 5 years mit-license.org was hosted on my own dedicated server, but I've now moved to Heroku and am paying a monthly fee. If you would like to donate **[please donate here](https://www.paypal.me/rem)** include a message and I will add your name to the credit. Hosting is currently costs $7 per month, if you want to donate in months or years, it's gratefully received ❤ +For the first 5 years, mit-license.org was hosted on my own dedicated server, but I've now moved to Heroku and am paying a monthly fee. If you would like to donate **[please donate here](https://www.paypal.me/rem)** include a message and I will add your name to the credit. Hosting currently costs $7 per month if you want to donate in months or years, it's gratefully received ❤ Hosting contributions: @@ -273,10 +292,10 @@ Hosting contributions: ### 3. A lick of paint -I'm a developer, I seem only capable of *grey*! If you're a designer and want to contribute a decent lick of paint on the project that would be super. Just create a new theme and send me a pull request. +I'm a developer, I seem only capable of _grey_! If you're a designer and want to contribute a decent lick of paint on the project that would be super. Just create a new theme and send me a pull request. ## License And of course: -MIT: http://rem.mit-license.org +MIT: diff --git a/composer.json b/composer.json deleted file mode 100644 index 0967ef42..00000000 --- a/composer.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/index.php b/index.php deleted file mode 100644 index a5642fc0..00000000 --- a/index.php +++ /dev/null @@ -1,163 +0,0 @@ ->> curl API has been temporarily disabled. Please send a pull request in the short term. Service will resume as normal again soon ❤'); - exit; - - try { - $data = json_decode(file_get_contents('php://input')); - if (!property_exists($data, 'copyright')) { - Throw new Exception('>>> JSON requires "copyright" property and value'); - } - - if (file_exists($user_file)) { - Throw new Exception(wordwrap('>>> User already exists - to update values, please send a pull request on https://github.com/remy/mit-license')); - } - - if (!file_put_contents($user_file, json_encode($data))) { - Throw new Exception(wordwrap('>>> Unable to create new user - please send a pull request on https://github.com/remy/mit-license')); - } - - // try to add to github...! - exec('cd /WWW/mit-license && /usr/bin/git add ' . $user_file . ' && /usr/bin/git commit -m"automated creation of ' . $user_file . '"', $out, $r); - //print_r($out); echo "\n"; print_r($r); echo "\n"; - $out = array(); - exec('cd /WWW/mit-license && /usr/bin/git push origin master -v 2>&1', $out, $r); - //print_r($out); echo "\n"; print_r($r); echo "\n"; - - echo '>>> MIT license page created: https://' . $_SERVER['HTTP_HOST'] . "\n\n"; - } catch (Exception $e) { - echo $e->getMessage() . "\n\n"; - } - exit; -} - -/** - * Load up the user.json file and read properties in - **/ -if ($cname && file_exists($user_file)) { - $user = json_decode(file_get_contents($user_file)); - $holder = htmlentities($user->copyright, ENT_COMPAT | ENT_HTML401, 'UTF-8'); - if (property_exists($user, 'url')) { - $holder = '' . $holder . ''; - } - - if (property_exists($user, 'email')) { - $holder = $holder . ' <' . $user->email . '>'; - - if(property_exists($user, 'gravatar') && $user->gravatar === true){ - $gravatar = ''; - } - - } - - if (property_exists($user, 'format')) { - if (strtolower($user->format) == 'txt') { - $format = 'txt'; - } - } - - if (property_exists($user, 'theme')) { - if (file_exists('themes/' . $user->theme . '.css')) { - $theme = $user->theme; - } - } -} else { - $holder = "<copyright holders>"; -} - -/** - * Now process the request url. Optional parts of the url are (in order): - * [sha]/[year|year-range]/license.[format] - * eg. http://rem.mit-license.org/a526bf7ad1/2009-2010/license.txt - **/ - -// grab sha from request uri -$request_uri = explode('/', $_SERVER["REQUEST_URI"]); - -$request = array_pop($request_uri); -// in case there's a trailing slash (unlikely) -if ($request == '') $request = array_pop($request_uri); - -// url file format overrides user preference -if (stripos($request, 'license') === 0) { - $format = array_pop(explode('.', strtolower($request))) == 'txt' ? 'txt' : 'html'; - - // move down to the next part of the request - $request = array_pop($request_uri); -} - -// check if we have a year or a year range up front -$year = date('Y'); -preg_match('/^(@?\d{4})(?:(?:\-)(\d{4}))?$/', $request, $match); - -if (count($match) > 1) { - if ($match[2] && $match[1][0] != '@') { // 2nd segment - $year = $match[2]; - } - if ($match[1]) { - if ($match[1][0] == '@') { - $year = substr($match[1], 1); - } else { - $year = $match[1] == $year ? $year : $match[1] . '-' . $year; - } - } - $request = array_pop($request_uri); -} - -// check if there's a SHA on the url and read this to switch license versions -$sha = ''; -if ($request != "" && $request != "/" && $request != "/index.php") { - $sha = preg_replace('/[^a-f0-9]/', '', $request); -} else if (isset($user) && property_exists($user, 'version')) { - $sha = preg_replace('/[^a-f0-9]/', '', $user->version); -} - -// if sha specified, use that revision of licence -$license = ''; -if ($sha != "") { - $out = array(); - // preg_replace should save us - but: please help me Obi Wan... - exec("/usr/local/bin/git show " . $sha . ":LICENSE.html", $out, $r); - if ($r == 0) { - $license = implode("\n", $out); - } -} - -// if we didn't manage to read one in, use latest -if ($license == "") { - $license = file_get_contents('LICENSE.html'); -} - -// replace info tag and display -$info = $year . ' ' . $holder; -$license = str_replace('{{info}}', $info, $license); -$license = str_replace('{{theme}}', $theme, $license); -$license = str_replace('{{gravatar}}', $gravatar, $license); - -// if we want text format, strip out the license from the article tag -// and then strip any other tags in the license. -if ($format == 'txt') { - $license = array_shift(explode('', array_pop(explode('
', $license)))); - $license = preg_replace('/<[^>]*>/', '', trim($license)); - $license = html_entity_decode($license, ENT_COMPAT | ENT_HTML401, 'UTF-8'); - $license .= "\n"; - header('content-type: text/plain; charset=UTF-8'); -} - -echo $license; diff --git a/licenses/ISC.ejs b/licenses/ISC.ejs new file mode 100644 index 00000000..44fc3094 --- /dev/null +++ b/licenses/ISC.ejs @@ -0,0 +1,26 @@ + + +<% include components/header %> + +
+<%- gravatar %> +

The ISC License (ISC)

+ +

Copyright © <%- info %>

+ +

Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies.

+ +

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+
+<% include components/footer %> + + + diff --git a/licenses/MIT.ejs b/licenses/MIT.ejs new file mode 100644 index 00000000..cb50611c --- /dev/null +++ b/licenses/MIT.ejs @@ -0,0 +1,32 @@ + + +<% include components/header %> + +
+<%- gravatar %> +

The MIT License (MIT)

+ +

Copyright © <%- info %>

+ +

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.

+
+<% include components/footer %> + + + diff --git a/licenses/components/footer.ejs b/licenses/components/footer.ejs new file mode 100644 index 00000000..4f857c83 --- /dev/null +++ b/licenses/components/footer.ejs @@ -0,0 +1,3 @@ + diff --git a/licenses/components/header.ejs b/licenses/components/header.ejs new file mode 100644 index 00000000..3ad2e4ab --- /dev/null +++ b/licenses/components/header.ejs @@ -0,0 +1,38 @@ + +MIT License + + + + + + + + + diff --git a/middleware/cors.js b/middleware/cors.js new file mode 100644 index 00000000..894bcf9f --- /dev/null +++ b/middleware/cors.js @@ -0,0 +1,8 @@ +module.exports = (_req, res, next) => { + res.header('Access-Control-Allow-Origin', '*'); + res.header( + 'Access-Control-Allow-Headers', + 'Origin, X-Requested-With, Content-Type, Accept' + ); + next(); +}; diff --git a/middleware/load-options.js b/middleware/load-options.js new file mode 100644 index 00000000..505c70ac --- /dev/null +++ b/middleware/load-options.js @@ -0,0 +1,65 @@ +const thisYear = new Date().getFullYear(); + +module.exports = (req, res, next) => { + const parts = req.url.split('/'); + + res.locals.options = parts.reduce( + (acc, curr) => { + if (!curr) return acc; + + let match = curr.match(/^@?(\d{4})$/) || []; + + if (match.length) { + // Pinned year + if (curr.startsWith('@')) { + acc.pinnedYear = parseInt(curr.substr(1), 10); + } else { + acc.startYear = parseInt(curr, 10); + } + return acc; + } + + match = curr.match(/^(\d{4})-(\d{4})$/) || []; + + if (match.length) { + acc.startYear = parseInt(match[1], 10); + acc.endYear = parseInt(match[2], 10); + + return acc; + } + + if (curr.startsWith('license')) { + acc.format = curr + .split('.') + .pop() + .trim(); + return acc; + } + + if (curr.startsWith('+')) { + acc.license = curr + .substr(1) + .toUpperCase(); + return acc; + } + + acc.sha = curr; // not actually supported now - 2019-06-19 + return acc; + }, + { + format: 'html', + startYear: null, + endYear: thisYear, + sha: null, + } + ); + + if (res.locals.options.sha) { + res.setHeader( + 'X-note', + 'SHA and commit pinning is no longer supported, showing you latest release' + ); + } + + next(); +}; diff --git a/middleware/load-user.js b/middleware/load-user.js new file mode 100644 index 00000000..4ea1ec9d --- /dev/null +++ b/middleware/load-user.js @@ -0,0 +1,32 @@ +const { promisify } = require('util'); +const readFile = promisify(require('fs').readFile); +const path = require('path'); + +module.exports = async (req, res, next) => { + const id = req.hostname.split('.')[0]; + res.locals.id = id; + + if (req.method.toUpperCase() !== 'GET') { + return next(); + } + + // Otherwise load up the user json file + res.locals.user = { + copyright: '', + }; + + try { + const data = await readFile( + path.join(__dirname, '..', 'users', `${id}.json`), + 'utf8' + ); + res.locals.user = {...res.locals.user, ...JSON.parse(data)}; + } catch ({code, message}) { + if (code !== 'ENOENT') { + res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) + return; + } + } + + next(); +}; diff --git a/package.json b/package.json index c49153a6..de80a162 100644 --- a/package.json +++ b/package.json @@ -2,20 +2,54 @@ "author": "Remy Sharp (http://remysharp.com/)", "name": "mit-licence", "description": "Hosted MIT License with details controlled through this repo", - "version": "1.0.0", + "private": true, + "version": "2.0.0", + "main": "server.js", "repository": { "type": "git", "url": "git@github.com:remy/mit-license.git" }, + "engines": { + "node": ">=10.x.x" + }, "scripts": { - "test": "node test.js" + "start": "node .", + "dev": "nodemon .", + "serve": "node server.js", + "test": "node test.js", + "lint": "eslint server.js middleware/*.js routes/*.js --color" }, "bugs": { "url": "https://github.com/remy/mit-license/issues" }, - "license": "SEE LICENSE IN LICENSE", + "license": "MIT", "dependencies": { - "nconf": "^0.8.4", - "request": "^2.72.0" + "@octokit/rest": "^16.28.5", + "btoa": "^1.2.1", + "ejs": "^2.6.2", + "express": "^4.17.1", + "express-minify": "^1.0.0", + "md5": "^2.2.1", + "node-html-parser": "^1.1.15", + "postcss-middleware": "^1.1.4", + "postcss-preset-env": "^6.7.0", + "serve-favicon": "^2.5.0" + }, + "devDependencies": { + "@types/btoa": "^1.2.3", + "@types/css": "^0.0.31", + "@types/ejs": "^2.6.3", + "@types/express": "^4.17.0", + "@types/express-minify": "^0.1.34", + "@types/md5": "^2.1.33", + "@types/node": "^12.6.8", + "css": "^2.2.4", + "eslint": "^6.1.0", + "eslint-plugin-node": "^9.1.0", + "has-flag": "^4.0.0", + "nodemon": "^1.19.1" + }, + "resolutions": { + "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^3.0.2" } } diff --git a/robots.txt b/robots.txt new file mode 100644 index 00000000..eb053628 --- /dev/null +++ b/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/routes/get.js b/routes/get.js new file mode 100644 index 00000000..70bacef4 --- /dev/null +++ b/routes/get.js @@ -0,0 +1,95 @@ +const md5 = require('md5'); +const path = require('path'); +const { stripTags, escapeTags } = require('./utils'); + +function getCopyrightHTML(user, plain) { + let html = ''; + + const name = typeof user === "string" ? user + : plain ? user.name || user.copyright + : escapeTags(user.name || user.copyright); + + if (user.url) { + html = `${name}`; + } else { + html = name; + } + + if (user.email) { + html += ` <${ + plain ? user.email : escapeTags(user.email) + }>`; + } + + return html; +} + +module.exports = (req, res) => { + const { user, options } = res.locals; + let name; + let gravatar; + + // No error and valid + if (user.copyright) { + if (typeof user.copyright === 'string') { + name = getCopyrightHTML(user, options.format !== 'html'); + } else if (user.copyright.every(val => typeof val === 'string')) { + // Supports: ['Remy Sharp', 'Richie Bendall'] + name = user + .map(_ => (options.format !== 'html' ? _ : escapeTags(_))) + .join(', '); + } else { + name = user.copyright + .map(getCopyrightHTML) + .join(', '); + } + } + + if (user.gravatar && user.email) { + // Supports regular format + gravatar = `Profile image`; + } else if (typeof user.copyright[0] === 'object' && user.gravatar) { + // Supports multi-user format + gravatar = `Profile image`; + } + + const year = options.pinnedYear + ? options.pinnedYear + : [options.startYear, options.endYear].filter(Boolean).join('-'); + const license = (options.license || user.license || 'MIT').toUpperCase(); + const format = options.format || user.format || 'html'; + + const args = { + info: `${year} ${name}`, + theme: user.theme || 'default', + gravatar, + }; + + const filename = path.join(__dirname, '..', 'licenses', license); + req.app.render(filename, args, (error, content) => { + if (error) { + res.status(500).send(error); + return; + } + + if (format === 'txt') { + const plain = content.match(/
(.*)<\/article>/ms)[1]; + + res + .set('Content-Type', 'text/plain; charset=UTF-8') + .send(stripTags(plain).trim()); + return; + } + + if (format === 'html') { + res.send(content); + return; + } + + res.json({ ...user, ...options }); + }); +}; diff --git a/routes/post.js b/routes/post.js new file mode 100644 index 00000000..16d03f7c --- /dev/null +++ b/routes/post.js @@ -0,0 +1,108 @@ +const fs = require('fs'); +const path = require('path'); +const { + promisify +} = require('util'); +const access = promisify(fs.access); +const writeFile = promisify(fs.writeFile); +const btoa = require('btoa'); +var github = require('@octokit/rest')({ + // GitHub personal access token + auth: process.env.github_token, + // User agent with version from package.json + userAgent: 'mit-license v' + require(path.join(__dirname, "..", "package.json")).version, +}); +const { validDomainId } = require('./utils'); + +function getUserData({ + query, + body +}) { + // If query parameters provided + if (Object.keys(query).length > 0) return query; + // If the data parsed as {'{data: "value"}': ''} + const keys = Object.keys(body); + if (keys.length === 1 && !Object.values(body)[0]) return JSON.parse(keys[0]); + // Fallback + return body; +} + +// HTTP POST API +module.exports = async (req, res) => { + const { + hostname + } = req; + // Get different parts of hostname (example: remy.mit-license.org -> ['remy', 'mit-license', 'org']) + const params = hostname.split('.'); + + // This includes the copyright, year, etc. + const userData = getUserData(req); + + // If there isn't enough part of the hostname + if (params.length < 2) { + res.status(400).send('Please specify a subdomain in the URL.'); + return; + } + + // Extract the name from the URL + const id = params[0]; + + if (!validDomainId(id)) { + // Return a vague error intentionally + res + .status(400) + .send( + 'User already exists - to update values, please send a pull request on https://github.com/remy/mit-license' + ); + + return; + } + + try { + // Check if the user file exists in the users directory + await access(path.join(__dirname, '..', 'users', `${id}.json`)); + res + .status(409) + .send( + 'User already exists - to update values, please send a pull request on https://github.com/remy/mit-license' + ) + return; + } catch ({code, message}) { + if (code !== "ENOENT") { + res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) + return; + } + } + + // File doesn't exist + // If copyright property and key doesn't exist + if (!userData.copyright) { + res.status(400).send('JSON requires "copyright" property and value'); + return; + } + + try { + const fileContent = JSON.stringify(userData, 0, 2) + + await github.repos.createFile({ + owner: 'remy', + repo: 'mit-license', + path: `users/${id}.json`, + message: `chore: Automated creation of user ${id}.`, + content: btoa(fileContent), + committer: { + name: 'MIT License Bot', + email: 'remy@leftlogic.com', + }, + }) + + writeFile( + path.join(__dirname, "..", "users", `${id}.json`), + fileContent + ); + + res.status(201).send(`MIT license page created: https://${hostname}`); + } catch(err) { + res.status(500).send(`Unable to create new user - please send a pull request on https://github.com/remy/mit-license`) + } +}; diff --git a/routes/utils.js b/routes/utils.js new file mode 100644 index 00000000..3e78ed8b --- /dev/null +++ b/routes/utils.js @@ -0,0 +1,8 @@ +const tags = { + '<': '<', + '>': '>', + '&': '&', +}; +exports.escapeTags = str => (str || '').replace(/[<>&]/g, m => tags[m]); +exports.stripTags = str => (str || '').replace(/<(?:.|\n)*?>/gm, ''); +exports.validDomainId = s => /^[\w-_]+$/.test(s); diff --git a/server.js b/server.js new file mode 100644 index 00000000..595a22fb --- /dev/null +++ b/server.js @@ -0,0 +1,68 @@ +/* +IMPORTANT: Set the `github_token` environment variable to a personal access token + with at least the `public_repo` scope for the API. + +Server port: The `PORT` environment variable can also be set to control the port the server + should be hosted on. +*/ +const express = require('express'); +const minify = require('express-minify'); +const favicon = require('serve-favicon'); +const postcssMiddleware = require('postcss-middleware'); +const tmpdir = require('os').tmpdir(); +const path = require('path'); + +// Server +var PORT = process.env.PORT || 8080; + +// Prepare application +const app = express(); +app.use(minify({ + cache: tmpdir +})); +app.use(favicon(path.join(__dirname, 'favicon.ico'))); +app.set('views', path.join(__dirname, '/licenses')); +app.set('view engine', 'ejs'); + +// Setup static files +app.use('/robots.txt', express.static('robots.txt')); +app.use('/favicon.ico', express.static(`${__dirname}/favicon.ico`)); +app.use( + '/themes', + postcssMiddleware({ + plugins: [ + require('postcss-preset-env')({ + overrideBrowserslist: 'last 2 versions', + stage: 0, + }), + ], + src(req) { + return path.join(__dirname, 'themes', req.path); + }, + }), + express.static('themes') +); + +// Middleware + +// CORS +app.use(require('./middleware/cors')); +// Parse URL-encoded bodies (as sent by HTML forms) +app.use(express.urlencoded({ + extended: true +})); +// Parse JSON bodies (as sent by API clients) +app.use(express.json()); + +// Capture the id from the subdomain +app.use(require('./middleware/load-user')); +app.use(require('./middleware/load-options')); + +// HTTP POST API +app.post('/', require('./routes/post')); +app.get('/*', require('./routes/get')); + +// Start listening for HTTP requests +app.listen(PORT, () => { + console.log(`🚀 on http://localhost:${PORT}`); +}); diff --git a/test.js b/test.js index 852c2c96..3bd29b8d 100644 --- a/test.js +++ b/test.js @@ -1,13 +1,71 @@ -#!/bin/env node +const path = require('path'); +const fs = require('fs'); +const CSS = require('css'); +const { + validDomainId +} = require('./routes/utils'); +const { + promisify +} = require('util'); +const readFile = promisify(fs.readFile); +const readdir = promisify(fs.readdir); +const hasFlag = require('has-flag') -var fs = require('fs'); -var users = fs.readdirSync('users'); -users.forEach(function (user) { - try { - var content = fs.readFileSync('users/' + user).toString(); - JSON.parse(content); - } catch (e) { - console.error('Invalid JSON in file: ' + user); - process.exit(1); - } -}); +let errored = false; + +function report(content, fix) { + errored = true; + console.error(content); + if (fix && hasFlag("--fix")) fix() +} + +(async () => { + const users = await readdir('users'); + await users.forEach(async user => { + if (!user.endsWith('json')) report(`${user} is not a json file`, () => fs.unlink(path.join('users', user), () => {})) + if (!validDomainId(user.replace(".json", ""))) report(`${user} is not a valid domain id.`) + try { + const data = await readFile(path.join('users', user), "utf8") + try { + let u = JSON.parse(data); + if (!u.locked && !u.copyright) report(`Copyright not specified in ${user}`) + if (u.version) report(`Version tag found in ${user}`, () => { + delete u.version + const stringified = `${JSON.stringify(u, 0, 2)}\n` + fs.writeFile(path.join('users', user), stringified, () => { }) + }) + const stringified = `${JSON.stringify(u, 0, 2)}\n` + if (data !== stringified) report(`Non-regular formatting in ${user}`, () => fs.writeFile(path.join('users', user), stringified, () => {})) + } catch ({ + message + }) { + report(`Invalid JSON in ${user} (${message})`) + } + } catch ({ + message + }) { + report(`Unable to read ${user} (${message})`) + } + }); + + const themes = await readdir('themes'); + await themes.forEach(async theme => { + if (theme.endsWith('css')) { + try { + const data = await readFile(path.join('themes', theme), "utf8") + try { + CSS.parse(data); + } catch ({ + message + }) { + report(`Invalid CSS in ${theme} (${message})`) + } + } catch ({ + message + }) { + report(`Unable to read ${theme} (${message})`) + } + } + }); + if (errored) process.exit(1); +})() diff --git a/themes/8bits-monochrome-amber.css b/themes/8bits-monochrome-amber.css index d4a970bc..08304f33 100644 --- a/themes/8bits-monochrome-amber.css +++ b/themes/8bits-monochrome-amber.css @@ -1,6 +1,7 @@ /* 8bit theme v1.0.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { font-family: 'PT Mono', monospace; padding: .4em; @@ -8,11 +9,13 @@ body { background: #000; color: #ffbf00; } + a:link, a:visited { text-decoration: none; color: #ffbf00; } + article { display: block; margin: 1em; @@ -20,6 +23,7 @@ article { max-width: 800px; margin: 10px auto 0; } + article h1 { color: #ffbf00; width: 100%; @@ -27,75 +31,88 @@ article h1 { padding-top: 1.5em; font-size: 3em; } + article h1, -article h1 + p { +article h1+p { font-family: 'VT323', monospace; padding-left: 6%; } -article h1 + p { + +article h1+p { margin-top: 0; margin-bottom: 3em; } -article h1 + p a:link, -article h1 + p a:visited { + +article h1+p a:link, +article h1+p a:visited { color: #ffbf00; } + article p { padding: 0 2em; text-align: justify; } + article p:last-child { padding-bottom: 1.8em; font-size: 0.9em; } + footer { margin: 0 auto; font-size: .8em; text-align: center; } + #gravatar { display: block; float: right; } + @media (min-width: 750px) { #gravatar { position: absolute; top: 4em; right: 3em; } - #gravatar + h1 + p + p { + + #gravatar+h1+p+p { padding-top: 2em; } - h1 + p { + + h1+p { padding-right: 6em; } - h1 + p + p { + + h1+p+p { padding-top: 0.8em; } } + @media (max-width: 750px) { body { font-size: 14px; } + #gravatar { position: relative; top: 4em; right: 2em; } - article h1 + p { + + article h1+p { padding-bottom: 1em; } - article h1 + p + p { + + article h1+p+p { padding-top: 0.8em; } + footer { padding-bottom: 4em; } } + img { - -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); } diff --git a/themes/8bits-monochrome-blue-white.css b/themes/8bits-monochrome-blue-white.css index 2fe544e0..32dea2f1 100644 --- a/themes/8bits-monochrome-blue-white.css +++ b/themes/8bits-monochrome-blue-white.css @@ -1,6 +1,7 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { font-family: 'PT Mono', monospace; padding: .4em; @@ -8,11 +9,13 @@ body { background: #00f; color: #fff; } + a:link, a:visited { text-decoration: none; color: #fff; } + article { display: block; margin: 1em; @@ -20,6 +23,7 @@ article { max-width: 800px; margin: 10px auto 0; } + article h1 { color: #fff; width: 100%; @@ -27,75 +31,88 @@ article h1 { padding-top: 1.5em; font-size: 3em; } + article h1, -article h1 + p { +article h1+p { font-family: 'VT323', monospace; padding-left: 6%; } -article h1 + p { + +article h1+p { margin-top: 0; margin-bottom: 3em; } -article h1 + p a:link, -article h1 + p a:visited { + +article h1+p a:link, +article h1+p a:visited { color: #fff; } + article p { padding: 0 2em; text-align: justify; } + article p:last-child { padding-bottom: 1.8em; font-size: 0.9em; } + footer { margin: 0 auto; font-size: .8em; text-align: center; } + #gravatar { display: block; float: right; } + @media (min-width: 750px) { #gravatar { position: absolute; top: 4em; right: 3em; } - #gravatar + h1 + p + p { + + #gravatar+h1+p+p { padding-top: 2em; } - h1 + p { + + h1+p { padding-right: 6em; } - h1 + p + p { + + h1+p+p { padding-top: 0.8em; } } + @media (max-width: 750px) { body { font-size: 14px; } + #gravatar { position: relative; top: 4em; right: 2em; } - article h1 + p { + + article h1+p { padding-bottom: 1em; } - article h1 + p + p { + + article h1+p+p { padding-top: 0.8em; } + footer { padding-bottom: 4em; } } + img { - -webkit-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -moz-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -ms-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -o-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); } diff --git a/themes/8bits-monochrome-green.css b/themes/8bits-monochrome-green.css index 285b6277..f62f2c26 100644 --- a/themes/8bits-monochrome-green.css +++ b/themes/8bits-monochrome-green.css @@ -1,6 +1,7 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { font-family: 'PT Mono', monospace; padding: .4em; @@ -8,11 +9,13 @@ body { background: #000; color: #0f0; } + a:link, a:visited { text-decoration: none; color: #0f0; } + article { display: block; margin: 1em; @@ -20,6 +23,7 @@ article { max-width: 800px; margin: 10px auto 0; } + article h1 { color: #0f0; width: 100%; @@ -27,75 +31,88 @@ article h1 { padding-top: 1.5em; font-size: 3em; } + article h1, -article h1 + p { +article h1+p { font-family: 'VT323', monospace; padding-left: 6%; } -article h1 + p { + +article h1+p { margin-top: 0; margin-bottom: 3em; } -article h1 + p a:link, -article h1 + p a:visited { + +article h1+p a:link, +article h1+p a:visited { color: #0f0; } + article p { padding: 0 2em; text-align: justify; } + article p:last-child { padding-bottom: 1.8em; font-size: 0.9em; } + footer { margin: 0 auto; font-size: .8em; text-align: center; } + #gravatar { display: block; float: right; } + @media (min-width: 750px) { #gravatar { position: absolute; top: 4em; right: 3em; } - #gravatar + h1 + p + p { + + #gravatar+h1+p+p { padding-top: 2em; } - h1 + p { + + h1+p { padding-right: 6em; } - h1 + p + p { + + h1+p+p { padding-top: 0.8em; } } + @media (max-width: 750px) { body { font-size: 14px; } + #gravatar { position: relative; top: 4em; right: 2em; } - article h1 + p { + + article h1+p { padding-bottom: 1em; } - article h1 + p + p { + + article h1+p+p { padding-top: 0.8em; } + footer { padding-bottom: 4em; } } + img { - -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); } diff --git a/themes/8bits-monochrome-white.css b/themes/8bits-monochrome-white.css index 8b9b3d3a..3c2cb98f 100644 --- a/themes/8bits-monochrome-white.css +++ b/themes/8bits-monochrome-white.css @@ -1,6 +1,7 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { font-family: 'PT Mono', monospace; padding: .4em; @@ -8,11 +9,13 @@ body { background: #fff; color: #000; } + a:link, a:visited { text-decoration: none; color: #000; } + article { display: block; margin: 1em; @@ -20,6 +23,7 @@ article { max-width: 800px; margin: 10px auto 0; } + article h1 { color: #000; width: 100%; @@ -27,75 +31,88 @@ article h1 { padding-top: 1.5em; font-size: 3em; } + article h1, -article h1 + p { +article h1+p { font-family: 'VT323', monospace; padding-left: 6%; } -article h1 + p { + +article h1+p { margin-top: 0; margin-bottom: 3em; } -article h1 + p a:link, -article h1 + p a:visited { + +article h1+p a:link, +article h1+p a:visited { color: #000; } + article p { padding: 0 2em; text-align: justify; } + article p:last-child { padding-bottom: 1.8em; font-size: 0.9em; } + footer { margin: 0 auto; font-size: .8em; text-align: center; } + #gravatar { display: block; float: right; } + @media (min-width: 750px) { #gravatar { position: absolute; top: 4em; right: 3em; } - #gravatar + h1 + p + p { + + #gravatar+h1+p+p { padding-top: 2em; } - h1 + p { + + h1+p { padding-right: 6em; } - h1 + p + p { + + h1+p+p { padding-top: 0.8em; } } + @media (max-width: 750px) { body { font-size: 14px; } + #gravatar { position: relative; top: 4em; right: 2em; } - article h1 + p { + + article h1+p { padding-bottom: 1em; } - article h1 + p + p { + + article h1+p+p { padding-top: 0.8em; } + footer { padding-bottom: 4em; } } + img { - -webkit-filter: contrast(700%) grayscale(100%) saturate(100); - -moz-filter: contrast(700%) grayscale(100%) saturate(100); - -ms-filter: contrast(700%) grayscale(100%) saturate(100); - -o-filter: contrast(700%) grayscale(100%) saturate(100); filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/8bits-monochrome.css b/themes/8bits-monochrome.css index 73b3dae6..176a0030 100644 --- a/themes/8bits-monochrome.css +++ b/themes/8bits-monochrome.css @@ -1,6 +1,7 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { font-family: 'PT Mono', monospace; padding: .4em; @@ -8,11 +9,13 @@ body { background: #000; color: #fff; } + a:link, a:visited { text-decoration: none; color: #fff; } + article { display: block; margin: 1em; @@ -20,6 +23,7 @@ article { max-width: 800px; margin: 10px auto 0; } + article h1 { color: #fff; width: 100%; @@ -27,75 +31,88 @@ article h1 { padding-top: 1.5em; font-size: 3em; } + article h1, -article h1 + p { +article h1+p { font-family: 'VT323', monospace; padding-left: 6%; } -article h1 + p { + +article h1+p { margin-top: 0; margin-bottom: 3em; } -article h1 + p a:link, -article h1 + p a:visited { + +article h1+p a:link, +article h1+p a:visited { color: #fff; } + article p { padding: 0 2em; text-align: justify; } + article p:last-child { padding-bottom: 1.8em; font-size: 0.9em; } + footer { margin: 0 auto; font-size: .8em; text-align: center; } + #gravatar { display: block; float: right; } + @media (min-width: 750px) { #gravatar { position: absolute; top: 4em; right: 3em; } - #gravatar + h1 + p + p { + + #gravatar+h1+p+p { padding-top: 2em; } - h1 + p { + + h1+p { padding-right: 6em; } - h1 + p + p { + + h1+p+p { padding-top: 0.8em; } } + @media (max-width: 750px) { body { font-size: 14px; } + #gravatar { position: relative; top: 4em; right: 2em; } - article h1 + p { + + article h1+p { padding-bottom: 1em; } - article h1 + p + p { + + article h1+p+p { padding-top: 0.8em; } + footer { padding-bottom: 4em; } } + img { - -webkit-filter: contrast(700%) grayscale(100%) saturate(100); - -moz-filter: contrast(700%) grayscale(100%) saturate(100); - -ms-filter: contrast(700%) grayscale(100%) saturate(100); - -o-filter: contrast(700%) grayscale(100%) saturate(100); filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/afterdark.css b/themes/afterdark.css index a20079f4..98726ade 100644 --- a/themes/afterdark.css +++ b/themes/afterdark.css @@ -1,12 +1,66 @@ -body {margin:0; padding: 50px;background: #242f3a;font: 16px/28px "Garamond",serif; color: #94979e;} -article, footer { display:block; max-width:720px; margin:0 auto; } -article { padding:28px;} -footer { padding:0 28px; text-align:center; } -h1 { margin:0; font-size: 24px; line-height: 32px;color:#d7721a} -a, a:visited { color:#577446; padding:4px; text-decoration:none; } -a:active, a:hover { color:#5dd912; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {background:#bc4a46;} -::selection {background:#bc4a46;} -::-moz-selection {background:#bc4a46;} -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } \ No newline at end of file +body { + margin: 0; + padding: 50px; + background: #242f3a; + font: 16px/28px "Garamond", serif; + color: #94979e; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + padding: 28px; +} + +footer { + padding: 0 28px; + text-align: center; +} + +h1 { + margin: 0; + font-size: 24px; + line-height: 32px; + color: #d7721a +} + +a, a:visited { + color: #577446; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #5dd912; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + background: #bc4a46; +} + +::selection { + background: #bc4a46; +} + +::-moz-selection { + background: #bc4a46; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; +} diff --git a/themes/black-beauty.css b/themes/black-beauty.css index acd47a85..9c5d441e 100644 --- a/themes/black-beauty.css +++ b/themes/black-beauty.css @@ -61,9 +61,9 @@ h1 { } a { - color: #ff6666; - text-decoration: none; - word-wrap: break-word; + color: #ff6666; + text-decoration: none; + word-wrap: break-word; } a:hover, a:focus, a:active { @@ -83,4 +83,3 @@ a:hover, a:focus, a:active { font-size: 1em; } } - diff --git a/themes/blackwood.css b/themes/blackwood.css index 9427ff34..2aab4ccf 100644 --- a/themes/blackwood.css +++ b/themes/blackwood.css @@ -1,41 +1,137 @@ @import url(https://fonts.googleapis.com/css?family=Lustria); -body { background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAA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JNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5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) repeat scroll 0 0 transparent; font-family: 'Lustria', serif; font-weight: 400; margin: 0 auto; max-width: 450px; padding-top: 70px; position: relative; width: 80%; font-size: 0.9em; } - -article { display:block; max-width:720px; margin:0 auto; } -article { background-color: #FFFFFF; border: 12px solid #3A3A3A; border-radius: 10px 10px 10px 10px; max-width: 450px; padding: 0 15px; width: 80%; } -h1 { width: 84%; font-size: 1.6em; } -article p:nth-of-type(1) { font-size: 1.2em; color: red; } -footer { margin: 0 auto; max-width: 450px; position: absolute; top: 90px; width: 80%; right:0; } -footer p { zoom: 1; background-color: #FFFFFF; -moz-box-shadow: 1px 1px 3px #989898; -webkit-box-shadow: 1px 1px 3px #989898; -moz-box-shadow: 1px 1px 3px #989898; box-shadow: 1px 1px 3px #989898; font-size: 0.9em ; max-width: 318px; padding: 4px 7px; position: absolute; right: -106px; top: 0; - -webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */ --moz-transform: rotate(34.5deg); /* FF3.5+ */ --o-transform: rotate(34.5deg); /* Opera 10.5 */ --ms-transform: rotate(40deg); /* IE9 */ -transform: rotate(34.5deg);} -footer p:before { background-color: #999999; -moz-box-shadow: 1px 1px 2px #000000; -webkit-box-shadow: 1px 1px 2px #000000; box-shadow: 1px 1px 2px #000000; content: ""; display: block; height: 30px; left: 0; opacity: 0.5; position: absolute; top: -13px; width: 7px; --webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */ --moz-transform: rotate(34.5deg); /* FF3.5+ */ --o-transform: rotate(34.5deg); /* Opera 10.5 */ --ms-transform: rotate(34.5deg); /* IE9 */ -transform: rotate(34.5deg); -zoom: 1; } -footer p:after { background-color: #999999; box-shadow: 1px 1px 2px #000000; content: ""; height: 30px; opacity: 0.5; position: absolute; right: 0; width: 7px; --webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */ --moz-transform: rotate(34.5deg); /* FF3.5+ */ --o-transform: rotate(34.5deg); /* Opera 10.5 */ --ms-transform: rotate(34.5deg); /* IE9 */ -transform: rotate(34.5deg); -zoom:1; } -footer a { text-decoration: none;} -a, a:visited { color: #F00; border-bottom: 1px dotted #F5D5CD; } -a:active, a:hover { border-bottom: 1px dotted #F00; } -/* ie 8 and lower hackery as they don't support proper rotates and filters conflict with ms-transform. So we simply remove those css styles and have the footer sit at the bottom */ -*+html footer p { position: static; background: none; } -*+html footer { position: static; background-color: #fff; margin-top: 10px; } -@media \0screen { - footer p:before, footer p:after { display: none; } - footer p { position: static; background: none; } - footer { position: static; background-color: #fff; } +body { + background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAA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JNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5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) repeat scroll 0 0 transparent; + font-family: 'Lustria', serif; + font-weight: 400; + margin: 0 auto; + max-width: 450px; + padding-top: 70px; + position: relative; + width: 80%; + font-size: 0.9em; +} + +article { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + background-color: #FFFFFF; + border: 12px solid #3A3A3A; + border-radius: 10px 10px 10px 10px; + max-width: 450px; + padding: 0 15px; + width: 80%; +} + +h1 { + width: 84%; + font-size: 1.6em; +} + +article p:nth-of-type(1) { + font-size: 1.2em; + color: red; +} + +footer { + margin: 0 auto; + max-width: 450px; + position: absolute; + top: 90px; + width: 80%; + right: 0; +} + +footer p { + zoom: 1; + background-color: #FFFFFF; + box-shadow: 1px 1px 3px #989898; + font-size: 0.9em; + max-width: 318px; + padding: 4px 7px; + position: absolute; + right: -106px; + top: 0; + transform: rotate(34.5deg); +} + +footer p:before { + background-color: #999999; + box-shadow: 1px 1px 2px #000000; + content: ""; + display: block; + height: 30px; + left: 0; + opacity: 0.5; + position: absolute; + top: -13px; + width: 7px; + transform: rotate(34.5deg); + zoom: 1; +} + +footer p:after { + background-color: #999999; + box-shadow: 1px 1px 2px #000000; + content: ""; + height: 30px; + opacity: 0.5; + position: absolute; + right: 0; + width: 7px; + transform: rotate(34.5deg); + zoom: 1; +} + +footer a { + text-decoration: none; +} + +a, a:visited { + color: #F00; + border-bottom: 1px dotted #F5D5CD; +} + +a:active, a:hover { + border-bottom: 1px dotted #F00; +} + +/* ie 8 and lower hackery as they don't support proper rotates and filters conflict with ms-transform. So we simply remove those css styles and have the footer sit at the bottom */ +*+html footer p { + position: static; + background: none; +} + +*+html footer { + position: static; + background-color: #fff; + margin-top: 10px; +} + +@media \0screen { + footer p:before, footer p:after { + display: none; + } + + footer p { + position: static; + background: none; + } + + footer { + position: static; + background-color: #fff; + } +} + +#gravatar { + position: relative; + float: left; + margin-top: 1em; + margin-right: 1em; + border: 1px solid #ddd; } -#gravatar { position: relative; float: left; margin-top: 1em; margin-right: 1em; border: 1px solid #ddd; } diff --git a/themes/cherry-white.css b/themes/cherry-white.css index b3b23421..f8170a92 100644 --- a/themes/cherry-white.css +++ b/themes/cherry-white.css @@ -1,19 +1,122 @@ @import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700); -body { color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;} -article, footer { display:block; max-width:720px; margin:0 auto; } -article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666; padding: 45px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; margin-top: 28px; border-left: 1px solid #F7F7F7;} -h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: -22px; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; } -h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; } -h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; } -article p:nth-of-type(1) {font-size: 24px;} -a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; } -a:active, a:hover { color:#710257; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {color:#bc4a46;} -::selection {color:#bc4a46;} -::-moz-selection {color:#bc4a46; } -footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; border-top: 1px solid #F5F5F5; } -footer a { padding: 10px; } -footer p { font-size: 16px; margin: 0; padding: 0;} -#gravatar { position: relative; float: right; border: 3px solid #CCCCCC; top: -2.3em; z-index: 1; border-radius: 10px; } \ No newline at end of file +body { + color: #94979E; + font: 16px/28px 'Alegreya', "Garamond", serif; + margin: 0; + padding: 0 50px; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + background: repeat scroll 0 0 #FFFFFF; + border-bottom: 4px solid #FF3366; + border-right: 3px solid #FF6666; + padding: 45px 28px 28px; + position: relative; + border-radius: 0px 0 10px 10px; + margin-top: 28px; + border-left: 1px solid #F7F7F7; +} + +h1 { + background: none repeat scroll 0 0 #FF3366; + color: #FFFFFF; + font-size: 24px; + left: -12px; + line-height: 32px; + padding: 10px 0 10px 13px; + position: absolute; + top: -22px; + width: 100%; + display: block; + box-shadow: 2px 7px 0px -3px #CCCCCC; +} + +h1:after { + background-color: #AD0431; + border-radius: 0 0 0 32px; + content: ""; + height: 7px; + left: 3px; + position: absolute; + top: 52px; + width: 7px; +} + +h1:before { + background-color: #D01B4B; + content: ""; + height: 11px; + left: 0; + position: absolute; + top: 52px; + width: 11px; + border-radius: 0 0 0 32px; +} + +article p:nth-of-type(1) { + font-size: 24px; +} + +a, a:visited { + color: #3A3A3A; + padding: 4px 4px 0 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #710257; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + color: #bc4a46; +} + +::selection { + color: #bc4a46; +} + +::-moz-selection { + color: #bc4a46; +} + +footer { + background-color: #FFFFFF; + border-bottom: 3px solid #FF3366; + margin-top: 10px; + padding: 4px 28px; + text-align: center; + border-top: 1px solid #F5F5F5; +} + +footer a { + padding: 10px; +} + +footer p { + font-size: 16px; + margin: 0; + padding: 0; +} + +#gravatar { + position: relative; + float: right; + border: 3px solid #CCCCCC; + top: -2.3em; + z-index: 1; + border-radius: 10px; +} diff --git a/themes/cherry.css b/themes/cherry.css index f9c00996..d88d26ec 100644 --- a/themes/cherry.css +++ b/themes/cherry.css @@ -1,19 +1,120 @@ @import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700); -body { background: url("cherry.png") repeat scroll 0 0 transparent; color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;} -article, footer { display:block; max-width:720px; margin:0 auto; } -article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666;padding: 74px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; } -h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: 0; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; } -h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; } -h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; } -article p:nth-of-type(1) {font-size: 24px;} -a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; } -a:active, a:hover { color:#710257; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {color:#bc4a46;} -::selection {color:#bc4a46;} -::-moz-selection {color:#bc4a46; } -footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; } -footer a { padding: 10px; } -footer p { font-size: 16px; margin: 0; padding: 0;} -#gravatar { position: relative; float: right; border: 3px solid #CCCCCC; top: -4.3em; z-index: 1; border-radius: 10px; } \ No newline at end of file +body { + background: url("cherry.png") repeat scroll 0 0 transparent; + color: #94979E; + font: 16px/28px 'Alegreya', "Garamond", serif; + margin: 0; + padding: 0 50px; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + background: repeat scroll 0 0 #FFFFFF; + border-bottom: 4px solid #FF3366; + border-right: 3px solid #FF6666; + padding: 74px 28px 28px; + position: relative; + border-radius: 0px 0 10px 10px; +} + +h1 { + background: none repeat scroll 0 0 #FF3366; + color: #FFFFFF; + font-size: 24px; + left: -12px; + line-height: 32px; + padding: 10px 0 10px 13px; + position: absolute; + top: 0; + width: 100%; + display: block; + box-shadow: 2px 7px 0px -3px #CCCCCC; +} + +h1:after { + background-color: #AD0431; + border-radius: 0 0 0 32px; + content: ""; + height: 7px; + left: 3px; + position: absolute; + top: 52px; + width: 7px; +} + +h1:before { + background-color: #D01B4B; + content: ""; + height: 11px; + left: 0; + position: absolute; + top: 52px; + width: 11px; + border-radius: 0 0 0 32px; +} + +article p:nth-of-type(1) { + font-size: 24px; +} + +a, a:visited { + color: #3A3A3A; + padding: 4px 4px 0 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #710257; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + color: #bc4a46; +} + +::selection { + color: #bc4a46; +} + +::-moz-selection { + color: #bc4a46; +} + +footer { + background-color: #FFFFFF; + border-bottom: 3px solid #FF3366; + margin-top: 10px; + padding: 4px 28px; + text-align: center; +} + +footer a { + padding: 10px; +} + +footer p { + font-size: 16px; + margin: 0; + padding: 0; +} + +#gravatar { + position: relative; + float: right; + border: 3px solid #CCCCCC; + top: -4.3em; + z-index: 1; + border-radius: 10px; +} diff --git a/themes/default-dark.css b/themes/default-dark.css index 58b45393..4ddc193e 100644 --- a/themes/default-dark.css +++ b/themes/default-dark.css @@ -1,20 +1,100 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); -html { background: #1a1a1a; } -body { margin: 0; font-family: "Inconsolata", "DejaVu Sans Mono","Bitstream Vera Sans Mono", monospace; font-size: 1.2em; line-height: 1.2em; color: #999;} -article, footer { display: block; min-width: 360px; max-width: 900px; width: 80%; } -article { margin: 2.5em auto 0 auto; border: 1px solid ; border-color: #505050 #373737 #373737 #505050; padding: 2em; background: #2a2a2a; } -h1 { margin-top: 0; } -article p:first-of-type { margin-top: 1.6em; } -article p:last-child { margin-bottom: 0; } -footer { margin: 0em auto 2em auto; text-align: center; } -footer a { color: #666; text-shadow: 0 1px 1px #999; text-decoration:none; font-size:.8em; padding: 1em; } + +html { + background: #1a1a1a; +} + +body { + margin: 0; + font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; + font-size: 1.2em; + line-height: 1.2em; + color: #999; +} + +article, footer { + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; +} + +article { + margin: 2.5em auto 0 auto; + border: 1px solid; + border-color: #505050 #373737 #373737 #505050; + padding: 2em; + background: #2a2a2a; +} + +h1 { + margin-top: 0; +} + +article p:first-of-type { + margin-top: 1.6em; +} + +article p:last-child { + margin-bottom: 0; +} + +footer { + margin: 0em auto 2em auto; + text-align: center; +} + +footer a { + color: #666; + text-shadow: 0 1px 1px #999; + text-decoration: none; + font-size: .8em; + padding: 1em; +} + /*footer a:before{content: "â¦"; font-size:1.5em; padding-right:.2em; } */ -footer a:hover, footer a:focus { color: white; } -h1 {font-weight:normal; display:inline; border-bottom:1px solid #999; padding:0 0 3px 0; line-height: 36px; } -a { color:#0520cf; text-decoration:none;} -a:hover, a:focus { color:#2844FA; } -a:active { color:white; } -:-moz-any-link:focus {color:#000; border:0;} -::selection {background:#ccc;} -::-moz-selection {background:#ccc;} -#gravatar{position:relative;float:right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #999;} \ No newline at end of file +footer a:hover, footer a:focus { + color: white; +} + +h1 { + font-weight: normal; + display: inline; + border-bottom: 1px solid #999; + padding: 0 0 3px 0; + line-height: 36px; +} + +a { + color: #0520cf; + text-decoration: none; +} + +a:hover, a:focus { + color: #2844FA; +} + +a:active { + color: white; +} + +:-moz-any-link:focus { + color: #000; + border: 0; +} + +::selection { + background: #ccc; +} + +::-moz-selection { + background: #ccc; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #999; +} diff --git a/themes/default.css b/themes/default.css index c95cd86c..70282dd6 100644 --- a/themes/default.css +++ b/themes/default.css @@ -1,22 +1,109 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); -html { background: #eee; } -body { margin: 0; font-family: "Inconsolata", "DejaVu Sans Mono","Bitstream Vera Sans Mono", monospace; font-size: 1.2em; line-height: 1.2em; } -article, footer { display: block; min-width: 360px; max-width: 900px; width: 80%; } -article { margin: 2.5em auto 0 auto; border: 1px solid ; border-color: #ddd #aaa #aaa #ddd; padding: 2em; background: #fff; } -h1 { margin-top: 0; } -article p:first-of-type { margin-top: 1.6em; } -article p:last-child { margin-bottom: 0; } -footer { margin: 0em auto 2em auto; text-align: center; } -footer a { color: #666; text-shadow: 0 1px 1px #fff; text-decoration:none; font-size:.8em; padding: 1em; } -/*footer a:before{content: "⏦"; font-size:1.5em; padding-right:.2em; } */ -footer a:hover, footer a:focus { color: #111; } -h1 {font-weight:normal; display:inline; border-bottom:1px solid black; padding:0 0 3px 0; line-height: 36px; } -a { color:#2844FA; text-decoration:none;} -a:hover, a:focus { color:#1B29A4; } -a:active { color:#000; } -:-moz-any-link:focus {color:#000; border:0;} -::selection {background:#ccc;} -::-moz-selection {background:#ccc;} -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } -@media all and (max-width: 500px) { article {padding:1em;} body {font-size:1em;} } +html { + background: #eee; +} + +body { + margin: 0; + font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; + font-size: 1.2em; + line-height: 1.2em; +} + +article, footer { + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; +} + +article { + margin: 2.5em auto 0 auto; + border: 1px solid; + border-color: #ddd #aaa #aaa #ddd; + padding: 2em; + background: #fff; +} + +h1 { + margin-top: 0; +} + +article p:first-of-type { + margin-top: 1.6em; +} + +article p:last-child { + margin-bottom: 0; +} + +footer { + margin: 0em auto 2em auto; + text-align: center; +} + +footer a { + color: #666; + text-shadow: 0 1px 1px #fff; + text-decoration: none; + font-size: .8em; + padding: 1em; +} + +/*footer a:before{content: "⏦"; font-size:1.5em; padding-right:.2em; } */ +footer a:hover, footer a:focus { + color: #111; +} + +h1 { + font-weight: normal; + display: inline; + border-bottom: 1px solid black; + padding: 0 0 3px 0; + line-height: 36px; +} + +a { + color: #2844FA; + text-decoration: none; +} + +a:hover, a:focus { + color: #1B29A4; +} + +a:active { + color: #000; +} + +:-moz-any-link:focus { + color: #000; + border: 0; +} + +::selection { + background: #ccc; +} + +::-moz-selection { + background: #ccc; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; +} + +@media all and (max-width: 500px) { + article { + padding: 1em; + } + + body { + font-size: 1em; + } +} diff --git a/themes/double-windsor.css b/themes/double-windsor.css index cc5b8642..6c18b679 100644 --- a/themes/double-windsor.css +++ b/themes/double-windsor.css @@ -73,8 +73,8 @@ footer { } #gravatar { - border: 1px solid #ddd; - position: relative; - float: right; - top: -1.7em; -} \ No newline at end of file + border: 1px solid #ddd; + position: relative; + float: right; + top: -1.7em; +} diff --git a/themes/dusk.css b/themes/dusk.css index 46c0c190..8a8c975c 100644 --- a/themes/dusk.css +++ b/themes/dusk.css @@ -1,5 +1,4 @@ /* Dusk theme v1.0.0 by @georapbox */ - @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400); *::selection { @@ -31,9 +30,7 @@ a:link, a:visited, a:hover { position: relative; text-decoration: none; color: #de5833; - -webkit-transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out; - -webkit-transform: scaleX(0); transform: scaleX(0); } @@ -50,15 +47,12 @@ a:before { left: 0; background-color: #de5833; visibility: hidden; - -webkit-transform: scaleX(0); transform: scaleX(0); - -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } a:hover:before { visibility: visible; - -webkit-transform: scaleX(1); transform: scaleX(1); } @@ -79,7 +73,7 @@ article h1 { background: #1F222A; } -article h1 + p { +article h1+p { max-width: 100%; margin-top: 0; padding-top: 0.1em; @@ -89,7 +83,7 @@ article h1 + p { background: #1F222A; } -article h1 + p + p { +article h1+p+p { margin-top: 1.6em; } @@ -127,7 +121,7 @@ footer p { } @media (max-width: 750px) { - article h1 + p { + article h1+p { font-size: 0.8em; } } diff --git a/themes/eula-modern.css b/themes/eula-modern.css index ae1e0c6a..bffd8146 100644 --- a/themes/eula-modern.css +++ b/themes/eula-modern.css @@ -17,17 +17,17 @@ ::-webkit-scrollbar-thumb { background: #888; border-radius: 8px; - border:1px solid rgba(0,0,0,0.3); - box-shadow: -3px -3px 6px rgba(180,180,160,.5) inset, 3px 3px 3px rgba(226,226,225,.5) inset; + border: 1px solid rgba(0, 0, 0, 0.3); + box-shadow: -3px -3px 6px rgba(180, 180, 160, .5) inset, 3px 3px 3px rgba(226, 226, 225, .5) inset; } ::-webkit-scrollbar-track { - background:#fbfbfb; - box-shadow: 3px 3px 10px rgba(0,0,0,.25) inset; + background: #fbfbfb; + box-shadow: 3px 3px 10px rgba(0, 0, 0, .25) inset; } body { - font-family: Segoe UI, 'SegoeUIWF',Arial,sans-serif; + font-family: Segoe UI, 'SegoeUIWF', Arial, sans-serif; padding: 10px; line-height: 1.5em; } @@ -41,25 +41,27 @@ article { } @media (max-device-height: 699px) { - article { - max-width: none !important; - margin: 8px 8px !important; - } + article { + max-width: none !important; + margin: 8px 8px !important; + } } h1 { font-size: 3.7em; line-height: 1.3em; - font-family: Segoe UI Light,'SegoeUILightWF',Arial,sans-serif; + font-family: Segoe UI Light, 'SegoeUILightWF', Arial, sans-serif; color: #000; padding: 0px; font-weight: normal; clear: both; margin: .2em auto .4em; - margin-right: 100px; /* allow for avatar */ + margin-right: 100px; + /* allow for avatar */ } -article p:nth-of-type(1) { background: #666; +article p:nth-of-type(1) { + background: #666; color: white; border: none; border-top: 1px solid #eee; @@ -122,14 +124,13 @@ footer { footer a:link, footer a:visited { - color:#ccc; + color: #ccc; } #gravatar { position: absolute; right: 0; border: 3px solid #ccc; - // top: 4.5em; z-index: 1; border-radius: 10px; } diff --git a/themes/flesch.css b/themes/flesch.css index ecec83a7..70655be8 100644 --- a/themes/flesch.css +++ b/themes/flesch.css @@ -1,13 +1,55 @@ body { - margin:0; padding: 50px; - background: #fff url(/themes/flesch.png); - font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; color: #252519; + margin: 0; + padding: 50px; + background: #fff url(/themes/flesch.png); + font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + color: #252519; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0; +} + +article { + padding: 28px; + background: #fff; + border: 1px solid #ccc; +} + +footer { + padding: 0 28px; + text-align: center; +} + +h1 { + margin: 0; + font-size: 24px; + line-height: 32px; +} + +a, a:visited { + color: #105cb6; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #003; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } -article, footer { display:block; max-width:720px; margin:0; } -article { padding:28px; background:#fff; border:1px solid #ccc; } -footer { padding:0 28px; text-align:center; } -h1 { margin:0; font-size: 24px; line-height: 32px;} -a, a:visited { color:#105cb6; padding:4px; text-decoration:none; } -a:active, a:hover { color:#003; } -a img { position: absolute; top: 0; right: 0; border: 0; } -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } \ No newline at end of file diff --git a/themes/friendly.css b/themes/friendly.css index 775c22d3..14faeb2a 100644 --- a/themes/friendly.css +++ b/themes/friendly.css @@ -32,7 +32,6 @@ article p { article p:first-of-type { text-align: center; font-size: .8em; - } article p:last-of-type { @@ -75,9 +74,9 @@ footer p a { } a { - color: gray; - text-decoration: none; - word-wrap: break-word; + color: gray; + text-decoration: none; + word-wrap: break-word; } a:hover, a:focus, a:active { diff --git a/themes/hacker.css b/themes/hacker.css index 523904f3..0f0daaee 100644 --- a/themes/hacker.css +++ b/themes/hacker.css @@ -1,965 +1,6919 @@ +html { + font-family: sans-serif; + text-size-adjust: 100%; +} -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,strong{font-weight:bold} -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:-0.5em} -sub{bottom:-0.25em} -img{border:0} -svg:not(:root){overflow:hidden} -figure{margin:1em 40px} -hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0} -pre{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;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box} -input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none} -fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em} -legend{border:0;padding:0} -textarea{overflow:auto} -optgroup{font-weight:bold} -table{border-collapse:collapse;border-spacing:0} -td,th{padding:0} -@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} a[href^="#"]:after,a[href^="javascript:"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid} select{background:#fff !important} .navbar{display:none} .btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important} .label{border:1px solid #000} .table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important} .table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} -.glyphicon-asterisk:before{content:"\2a"} -.glyphicon-plus:before{content:"\2b"} -.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"} -.glyphicon-minus:before{content:"\2212"} -.glyphicon-cloud:before{content:"\2601"} -.glyphicon-envelope:before{content:"\2709"} -.glyphicon-pencil:before{content:"\270f"} -.glyphicon-glass:before{content:"\e001"} -.glyphicon-music:before{content:"\e002"} -.glyphicon-search:before{content:"\e003"} -.glyphicon-heart:before{content:"\e005"} -.glyphicon-star:before{content:"\e006"} -.glyphicon-star-empty:before{content:"\e007"} -.glyphicon-user:before{content:"\e008"} -.glyphicon-film:before{content:"\e009"} -.glyphicon-th-large:before{content:"\e010"} -.glyphicon-th:before{content:"\e011"} -.glyphicon-th-list:before{content:"\e012"} -.glyphicon-ok:before{content:"\e013"} -.glyphicon-remove:before{content:"\e014"} -.glyphicon-zoom-in:before{content:"\e015"} -.glyphicon-zoom-out:before{content:"\e016"} -.glyphicon-off:before{content:"\e017"} -.glyphicon-signal:before{content:"\e018"} -.glyphicon-cog:before{content:"\e019"} -.glyphicon-trash:before{content:"\e020"} -.glyphicon-home:before{content:"\e021"} -.glyphicon-file:before{content:"\e022"} -.glyphicon-time:before{content:"\e023"} -.glyphicon-road:before{content:"\e024"} -.glyphicon-download-alt:before{content:"\e025"} -.glyphicon-download:before{content:"\e026"} -.glyphicon-upload:before{content:"\e027"} -.glyphicon-inbox:before{content:"\e028"} -.glyphicon-play-circle:before{content:"\e029"} -.glyphicon-repeat:before{content:"\e030"} -.glyphicon-refresh:before{content:"\e031"} -.glyphicon-list-alt:before{content:"\e032"} -.glyphicon-lock:before{content:"\e033"} -.glyphicon-flag:before{content:"\e034"} -.glyphicon-headphones:before{content:"\e035"} -.glyphicon-volume-off:before{content:"\e036"} -.glyphicon-volume-down:before{content:"\e037"} -.glyphicon-volume-up:before{content:"\e038"} -.glyphicon-qrcode:before{content:"\e039"} -.glyphicon-barcode:before{content:"\e040"} -.glyphicon-tag:before{content:"\e041"} -.glyphicon-tags:before{content:"\e042"} -.glyphicon-book:before{content:"\e043"} -.glyphicon-bookmark:before{content:"\e044"} -.glyphicon-print:before{content:"\e045"} -.glyphicon-camera:before{content:"\e046"} -.glyphicon-font:before{content:"\e047"} -.glyphicon-bold:before{content:"\e048"} -.glyphicon-italic:before{content:"\e049"} -.glyphicon-text-height:before{content:"\e050"} -.glyphicon-text-width:before{content:"\e051"} -.glyphicon-align-left:before{content:"\e052"} -.glyphicon-align-center:before{content:"\e053"} -.glyphicon-align-right:before{content:"\e054"} -.glyphicon-align-justify:before{content:"\e055"} -.glyphicon-list:before{content:"\e056"} -.glyphicon-indent-left:before{content:"\e057"} -.glyphicon-indent-right:before{content:"\e058"} -.glyphicon-facetime-video:before{content:"\e059"} -.glyphicon-picture:before{content:"\e060"} -.glyphicon-map-marker:before{content:"\e062"} -.glyphicon-adjust:before{content:"\e063"} -.glyphicon-tint:before{content:"\e064"} -.glyphicon-edit:before{content:"\e065"} -.glyphicon-share:before{content:"\e066"} -.glyphicon-check:before{content:"\e067"} -.glyphicon-move:before{content:"\e068"} -.glyphicon-step-backward:before{content:"\e069"} -.glyphicon-fast-backward:before{content:"\e070"} -.glyphicon-backward:before{content:"\e071"} -.glyphicon-play:before{content:"\e072"} -.glyphicon-pause:before{content:"\e073"} -.glyphicon-stop:before{content:"\e074"} -.glyphicon-forward:before{content:"\e075"} -.glyphicon-fast-forward:before{content:"\e076"} -.glyphicon-step-forward:before{content:"\e077"} -.glyphicon-eject:before{content:"\e078"} -.glyphicon-chevron-left:before{content:"\e079"} -.glyphicon-chevron-right:before{content:"\e080"} -.glyphicon-plus-sign:before{content:"\e081"} -.glyphicon-minus-sign:before{content:"\e082"} -.glyphicon-remove-sign:before{content:"\e083"} -.glyphicon-ok-sign:before{content:"\e084"} -.glyphicon-question-sign:before{content:"\e085"} -.glyphicon-info-sign:before{content:"\e086"} -.glyphicon-screenshot:before{content:"\e087"} -.glyphicon-remove-circle:before{content:"\e088"} -.glyphicon-ok-circle:before{content:"\e089"} -.glyphicon-ban-circle:before{content:"\e090"} -.glyphicon-arrow-left:before{content:"\e091"} -.glyphicon-arrow-right:before{content:"\e092"} -.glyphicon-arrow-up:before{content:"\e093"} -.glyphicon-arrow-down:before{content:"\e094"} -.glyphicon-share-alt:before{content:"\e095"} -.glyphicon-resize-full:before{content:"\e096"} -.glyphicon-resize-small:before{content:"\e097"} -.glyphicon-exclamation-sign:before{content:"\e101"} -.glyphicon-gift:before{content:"\e102"} -.glyphicon-leaf:before{content:"\e103"} -.glyphicon-fire:before{content:"\e104"} -.glyphicon-eye-open:before{content:"\e105"} -.glyphicon-eye-close:before{content:"\e106"} -.glyphicon-warning-sign:before{content:"\e107"} -.glyphicon-plane:before{content:"\e108"} -.glyphicon-calendar:before{content:"\e109"} -.glyphicon-random:before{content:"\e110"} -.glyphicon-comment:before{content:"\e111"} -.glyphicon-magnet:before{content:"\e112"} -.glyphicon-chevron-up:before{content:"\e113"} -.glyphicon-chevron-down:before{content:"\e114"} -.glyphicon-retweet:before{content:"\e115"} -.glyphicon-shopping-cart:before{content:"\e116"} -.glyphicon-folder-close:before{content:"\e117"} -.glyphicon-folder-open:before{content:"\e118"} -.glyphicon-resize-vertical:before{content:"\e119"} -.glyphicon-resize-horizontal:before{content:"\e120"} -.glyphicon-hdd:before{content:"\e121"} -.glyphicon-bullhorn:before{content:"\e122"} -.glyphicon-bell:before{content:"\e123"} -.glyphicon-certificate:before{content:"\e124"} -.glyphicon-thumbs-up:before{content:"\e125"} -.glyphicon-thumbs-down:before{content:"\e126"} -.glyphicon-hand-right:before{content:"\e127"} -.glyphicon-hand-left:before{content:"\e128"} -.glyphicon-hand-up:before{content:"\e129"} -.glyphicon-hand-down:before{content:"\e130"} -.glyphicon-circle-arrow-right:before{content:"\e131"} -.glyphicon-circle-arrow-left:before{content:"\e132"} -.glyphicon-circle-arrow-up:before{content:"\e133"} -.glyphicon-circle-arrow-down:before{content:"\e134"} -.glyphicon-globe:before{content:"\e135"} -.glyphicon-wrench:before{content:"\e136"} -.glyphicon-tasks:before{content:"\e137"} -.glyphicon-filter:before{content:"\e138"} -.glyphicon-briefcase:before{content:"\e139"} -.glyphicon-fullscreen:before{content:"\e140"} -.glyphicon-dashboard:before{content:"\e141"} -.glyphicon-paperclip:before{content:"\e142"} -.glyphicon-heart-empty:before{content:"\e143"} -.glyphicon-link:before{content:"\e144"} -.glyphicon-phone:before{content:"\e145"} -.glyphicon-pushpin:before{content:"\e146"} -.glyphicon-usd:before{content:"\e148"} -.glyphicon-gbp:before{content:"\e149"} -.glyphicon-sort:before{content:"\e150"} -.glyphicon-sort-by-alphabet:before{content:"\e151"} -.glyphicon-sort-by-alphabet-alt:before{content:"\e152"} -.glyphicon-sort-by-order:before{content:"\e153"} -.glyphicon-sort-by-order-alt:before{content:"\e154"} -.glyphicon-sort-by-attributes:before{content:"\e155"} -.glyphicon-sort-by-attributes-alt:before{content:"\e156"} -.glyphicon-unchecked:before{content:"\e157"} -.glyphicon-expand:before{content:"\e158"} -.glyphicon-collapse-down:before{content:"\e159"} -.glyphicon-collapse-up:before{content:"\e160"} -.glyphicon-log-in:before{content:"\e161"} -.glyphicon-flash:before{content:"\e162"} -.glyphicon-log-out:before{content:"\e163"} -.glyphicon-new-window:before{content:"\e164"} -.glyphicon-record:before{content:"\e165"} -.glyphicon-save:before{content:"\e166"} -.glyphicon-open:before{content:"\e167"} -.glyphicon-saved:before{content:"\e168"} -.glyphicon-import:before{content:"\e169"} -.glyphicon-export:before{content:"\e170"} -.glyphicon-send:before{content:"\e171"} -.glyphicon-floppy-disk:before{content:"\e172"} -.glyphicon-floppy-saved:before{content:"\e173"} -.glyphicon-floppy-remove:before{content:"\e174"} -.glyphicon-floppy-save:before{content:"\e175"} -.glyphicon-floppy-open:before{content:"\e176"} -.glyphicon-credit-card:before{content:"\e177"} -.glyphicon-transfer:before{content:"\e178"} -.glyphicon-cutlery:before{content:"\e179"} -.glyphicon-header:before{content:"\e180"} -.glyphicon-compressed:before{content:"\e181"} -.glyphicon-earphone:before{content:"\e182"} -.glyphicon-phone-alt:before{content:"\e183"} -.glyphicon-tower:before{content:"\e184"} -.glyphicon-stats:before{content:"\e185"} -.glyphicon-sd-video:before{content:"\e186"} -.glyphicon-hd-video:before{content:"\e187"} -.glyphicon-subtitles:before{content:"\e188"} -.glyphicon-sound-stereo:before{content:"\e189"} -.glyphicon-sound-dolby:before{content:"\e190"} -.glyphicon-sound-5-1:before{content:"\e191"} -.glyphicon-sound-6-1:before{content:"\e192"} -.glyphicon-sound-7-1:before{content:"\e193"} -.glyphicon-copyright-mark:before{content:"\e194"} -.glyphicon-registration-mark:before{content:"\e195"} -.glyphicon-cloud-download:before{content:"\e197"} -.glyphicon-cloud-upload:before{content:"\e198"} -.glyphicon-tree-conifer:before{content:"\e199"} -.glyphicon-tree-deciduous:before{content:"\e200"} -.glyphicon-cd:before{content:"\e201"} -.glyphicon-save-file:before{content:"\e202"} -.glyphicon-open-file:before{content:"\e203"} -.glyphicon-level-up:before{content:"\e204"} -.glyphicon-copy:before{content:"\e205"} -.glyphicon-paste:before{content:"\e206"} -.glyphicon-alert:before{content:"\e209"} -.glyphicon-equalizer:before{content:"\e210"} -.glyphicon-king:before{content:"\e211"} -.glyphicon-queen:before{content:"\e212"} -.glyphicon-pawn:before{content:"\e213"} -.glyphicon-bishop:before{content:"\e214"} -.glyphicon-knight:before{content:"\e215"} -.glyphicon-baby-formula:before{content:"\e216"} -.glyphicon-tent:before{content:"\26fa"} -.glyphicon-blackboard:before{content:"\e218"} -.glyphicon-bed:before{content:"\e219"} -.glyphicon-apple:before{content:"\f8ff"} -.glyphicon-erase:before{content:"\e221"} -.glyphicon-hourglass:before{content:"\231b"} -.glyphicon-lamp:before{content:"\e223"} -.glyphicon-duplicate:before{content:"\e224"} -.glyphicon-piggy-bank:before{content:"\e225"} -.glyphicon-scissors:before{content:"\e226"} -.glyphicon-bitcoin:before{content:"\e227"} -.glyphicon-btc:before{content:"\e227"} -.glyphicon-xbt:before{content:"\e227"} -.glyphicon-yen:before{content:"\00a5"} -.glyphicon-jpy:before{content:"\00a5"} -.glyphicon-ruble:before{content:"\20bd"} -.glyphicon-rub:before{content:"\20bd"} -.glyphicon-scale:before{content:"\e230"} -.glyphicon-ice-lolly:before{content:"\e231"} -.glyphicon-ice-lolly-tasted:before{content:"\e232"} -.glyphicon-education:before{content:"\e233"} -.glyphicon-option-horizontal:before{content:"\e234"} -.glyphicon-option-vertical:before{content:"\e235"} -.glyphicon-menu-hamburger:before{content:"\e236"} -.glyphicon-modal-window:before{content:"\e237"} -.glyphicon-oil:before{content:"\e238"} -.glyphicon-grain:before{content:"\e239"} -.glyphicon-sunglasses:before{content:"\e240"} -.glyphicon-text-size:before{content:"\e241"} -.glyphicon-text-color:before{content:"\e242"} -.glyphicon-text-background:before{content:"\e243"} -.glyphicon-object-align-top:before{content:"\e244"} -.glyphicon-object-align-bottom:before{content:"\e245"} -.glyphicon-object-align-horizontal:before{content:"\e246"} -.glyphicon-object-align-left:before{content:"\e247"} -.glyphicon-object-align-vertical:before{content:"\e248"} -.glyphicon-object-align-right:before{content:"\e249"} -.glyphicon-triangle-right:before{content:"\e250"} -.glyphicon-triangle-left:before{content:"\e251"} -.glyphicon-triangle-bottom:before{content:"\e252"} -.glyphicon-triangle-top:before{content:"\e253"} -.glyphicon-console:before{content:"\e254"} -.glyphicon-superscript:before{content:"\e255"} -.glyphicon-subscript:before{content:"\e256"} -.glyphicon-menu-left:before{content:"\e257"} -.glyphicon-menu-right:before{content:"\e258"} -.glyphicon-menu-down:before{content:"\e259"} -.glyphicon-menu-up:before{content:"\e260"} -*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)} -body{font-family:Monospace;font-size:14px;line-height:1.428571429;color:#0c0;background-color:#222} -input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit} -a{color:#0f0;text-decoration:none}a:hover,a:focus{color:#00b300;text-decoration:underline} -a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} -figure{margin:0} -img{vertical-align:middle} -.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto} -.img-rounded{border-radius:0} -.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#222;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto} -.img-circle{border-radius:50%} -hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #3c3c3c} -.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0} -.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -[role="button"]{cursor:pointer} -h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:Monospace;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#030} -h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%} -h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%} -h1,.h1{font-size:36px} -h2,.h2{font-size:30px} -h3,.h3{font-size:23px} -h4,.h4{font-size:17px} -h5,.h5{font-size:14px} -h6,.h6{font-size:11px} -p{margin:0 0 10px} -.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}} -small,.small{font-size:85%} -mark,.mark{background-color:#3c3c3c;padding:.2em} -.text-left{text-align:left} -.text-right{text-align:right} -.text-center{text-align:center} -.text-justify{text-align:justify} -.text-nowrap{white-space:nowrap} -.text-lowercase{text-transform:lowercase} -.text-uppercase{text-transform:uppercase} -.text-capitalize{text-transform:capitalize} -.text-muted{color:#030} -.text-primary{color:#0f0}a.text-primary:hover{color:#0c0} -.text-success{color:#0d0}a.text-success:hover{color:#0a0} -.text-info{color:#7d8cff}a.text-info:hover{color:#4a5fff} -.text-warning{color:#f4ff00}a.text-warning:hover{color:#c3cc00} -.text-danger{color:#d00}a.text-danger:hover{color:#a00} -.bg-primary{color:#fff;background-color:#0f0}a.bg-primary:hover{background-color:#0c0} -.bg-success{background-color:#3c3c3c}a.bg-success:hover{background-color:#222} -.bg-info{background-color:#3c3c3c}a.bg-info:hover{background-color:#222} -.bg-warning{background-color:#3c3c3c}a.bg-warning:hover{background-color:#222} -.bg-danger{background-color:#3c3c3c}a.bg-danger:hover{background-color:#222} -.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #030} -ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0} -.list-unstyled{padding-left:0;list-style:none} -.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px} -dl{margin-top:0;margin-bottom:20px} -dt,dd{line-height:1.428571429} -dt{font-weight:bold} -dd{margin-left:0} -@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} .dl-horizontal dd{margin-left:180px}} -abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #030} -.initialism{font-size:90%;text-transform:uppercase} -blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #030}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0} -blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.428571429;color:#030}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'} -.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #030;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''} -.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'} -address{margin-bottom:20px;font-style:normal;line-height:1.428571429} -code,kbd,pre,samp{font-family:Monospace} -code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:0} -kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none} -pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;word-break:break-all;word-wrap:break-word;color:#0c0;background-color:#f5f5f5;border:1px solid #ccc;border-radius:0}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0} -.pre-scrollable{max-height:340px;overflow-y:scroll} -.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}} -.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px} -.row{margin-left:-15px;margin-right:-15px} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left} -.col-xs-12{width:100%} -.col-xs-11{width:91.66666666666666%} -.col-xs-10{width:83.33333333333334%} -.col-xs-9{width:75%} -.col-xs-8{width:66.66666666666666%} -.col-xs-7{width:58.333333333333336%} -.col-xs-6{width:50%} -.col-xs-5{width:41.66666666666667%} -.col-xs-4{width:33.33333333333333%} -.col-xs-3{width:25%} -.col-xs-2{width:16.666666666666664%} -.col-xs-1{width:8.333333333333332%} -.col-xs-pull-12{right:100%} -.col-xs-pull-11{right:91.66666666666666%} -.col-xs-pull-10{right:83.33333333333334%} -.col-xs-pull-9{right:75%} -.col-xs-pull-8{right:66.66666666666666%} -.col-xs-pull-7{right:58.333333333333336%} -.col-xs-pull-6{right:50%} -.col-xs-pull-5{right:41.66666666666667%} -.col-xs-pull-4{right:33.33333333333333%} -.col-xs-pull-3{right:25%} -.col-xs-pull-2{right:16.666666666666664%} -.col-xs-pull-1{right:8.333333333333332%} -.col-xs-pull-0{right:auto} -.col-xs-push-12{left:100%} -.col-xs-push-11{left:91.66666666666666%} -.col-xs-push-10{left:83.33333333333334%} -.col-xs-push-9{left:75%} -.col-xs-push-8{left:66.66666666666666%} -.col-xs-push-7{left:58.333333333333336%} -.col-xs-push-6{left:50%} -.col-xs-push-5{left:41.66666666666667%} -.col-xs-push-4{left:33.33333333333333%} -.col-xs-push-3{left:25%} -.col-xs-push-2{left:16.666666666666664%} -.col-xs-push-1{left:8.333333333333332%} -.col-xs-push-0{left:auto} -.col-xs-offset-12{margin-left:100%} -.col-xs-offset-11{margin-left:91.66666666666666%} -.col-xs-offset-10{margin-left:83.33333333333334%} -.col-xs-offset-9{margin-left:75%} -.col-xs-offset-8{margin-left:66.66666666666666%} -.col-xs-offset-7{margin-left:58.333333333333336%} -.col-xs-offset-6{margin-left:50%} -.col-xs-offset-5{margin-left:41.66666666666667%} -.col-xs-offset-4{margin-left:33.33333333333333%} -.col-xs-offset-3{margin-left:25%} -.col-xs-offset-2{margin-left:16.666666666666664%} -.col-xs-offset-1{margin-left:8.333333333333332%} -.col-xs-offset-0{margin-left:0} -@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left} .col-sm-12{width:100%} .col-sm-11{width:91.66666666666666%} .col-sm-10{width:83.33333333333334%} .col-sm-9{width:75%} .col-sm-8{width:66.66666666666666%} .col-sm-7{width:58.333333333333336%} .col-sm-6{width:50%} .col-sm-5{width:41.66666666666667%} .col-sm-4{width:33.33333333333333%} .col-sm-3{width:25%} .col-sm-2{width:16.666666666666664%} .col-sm-1{width:8.333333333333332%} .col-sm-pull-12{right:100%} .col-sm-pull-11{right:91.66666666666666%} .col-sm-pull-10{right:83.33333333333334%} .col-sm-pull-9{right:75%} .col-sm-pull-8{right:66.66666666666666%} .col-sm-pull-7{right:58.333333333333336%} .col-sm-pull-6{right:50%} .col-sm-pull-5{right:41.66666666666667%} .col-sm-pull-4{right:33.33333333333333%} .col-sm-pull-3{right:25%} .col-sm-pull-2{right:16.666666666666664%} .col-sm-pull-1{right:8.333333333333332%} .col-sm-pull-0{right:auto} .col-sm-push-12{left:100%} .col-sm-push-11{left:91.66666666666666%} .col-sm-push-10{left:83.33333333333334%} .col-sm-push-9{left:75%} .col-sm-push-8{left:66.66666666666666%} .col-sm-push-7{left:58.333333333333336%} .col-sm-push-6{left:50%} .col-sm-push-5{left:41.66666666666667%} .col-sm-push-4{left:33.33333333333333%} .col-sm-push-3{left:25%} .col-sm-push-2{left:16.666666666666664%} .col-sm-push-1{left:8.333333333333332%} .col-sm-push-0{left:auto} .col-sm-offset-12{margin-left:100%} .col-sm-offset-11{margin-left:91.66666666666666%} .col-sm-offset-10{margin-left:83.33333333333334%} .col-sm-offset-9{margin-left:75%} .col-sm-offset-8{margin-left:66.66666666666666%} .col-sm-offset-7{margin-left:58.333333333333336%} .col-sm-offset-6{margin-left:50%} .col-sm-offset-5{margin-left:41.66666666666667%} .col-sm-offset-4{margin-left:33.33333333333333%} .col-sm-offset-3{margin-left:25%} .col-sm-offset-2{margin-left:16.666666666666664%} .col-sm-offset-1{margin-left:8.333333333333332%} .col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left} .col-md-12{width:100%} .col-md-11{width:91.66666666666666%} .col-md-10{width:83.33333333333334%} .col-md-9{width:75%} .col-md-8{width:66.66666666666666%} .col-md-7{width:58.333333333333336%} .col-md-6{width:50%} .col-md-5{width:41.66666666666667%} .col-md-4{width:33.33333333333333%} .col-md-3{width:25%} .col-md-2{width:16.666666666666664%} .col-md-1{width:8.333333333333332%} .col-md-pull-12{right:100%} .col-md-pull-11{right:91.66666666666666%} .col-md-pull-10{right:83.33333333333334%} .col-md-pull-9{right:75%} .col-md-pull-8{right:66.66666666666666%} .col-md-pull-7{right:58.333333333333336%} .col-md-pull-6{right:50%} .col-md-pull-5{right:41.66666666666667%} .col-md-pull-4{right:33.33333333333333%} .col-md-pull-3{right:25%} .col-md-pull-2{right:16.666666666666664%} .col-md-pull-1{right:8.333333333333332%} .col-md-pull-0{right:auto} .col-md-push-12{left:100%} .col-md-push-11{left:91.66666666666666%} .col-md-push-10{left:83.33333333333334%} .col-md-push-9{left:75%} .col-md-push-8{left:66.66666666666666%} .col-md-push-7{left:58.333333333333336%} .col-md-push-6{left:50%} .col-md-push-5{left:41.66666666666667%} .col-md-push-4{left:33.33333333333333%} .col-md-push-3{left:25%} .col-md-push-2{left:16.666666666666664%} .col-md-push-1{left:8.333333333333332%} .col-md-push-0{left:auto} .col-md-offset-12{margin-left:100%} .col-md-offset-11{margin-left:91.66666666666666%} .col-md-offset-10{margin-left:83.33333333333334%} .col-md-offset-9{margin-left:75%} .col-md-offset-8{margin-left:66.66666666666666%} .col-md-offset-7{margin-left:58.333333333333336%} .col-md-offset-6{margin-left:50%} .col-md-offset-5{margin-left:41.66666666666667%} .col-md-offset-4{margin-left:33.33333333333333%} .col-md-offset-3{margin-left:25%} .col-md-offset-2{margin-left:16.666666666666664%} .col-md-offset-1{margin-left:8.333333333333332%} .col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left} .col-lg-12{width:100%} .col-lg-11{width:91.66666666666666%} .col-lg-10{width:83.33333333333334%} .col-lg-9{width:75%} .col-lg-8{width:66.66666666666666%} .col-lg-7{width:58.333333333333336%} .col-lg-6{width:50%} .col-lg-5{width:41.66666666666667%} .col-lg-4{width:33.33333333333333%} .col-lg-3{width:25%} .col-lg-2{width:16.666666666666664%} .col-lg-1{width:8.333333333333332%} .col-lg-pull-12{right:100%} .col-lg-pull-11{right:91.66666666666666%} .col-lg-pull-10{right:83.33333333333334%} .col-lg-pull-9{right:75%} .col-lg-pull-8{right:66.66666666666666%} .col-lg-pull-7{right:58.333333333333336%} .col-lg-pull-6{right:50%} .col-lg-pull-5{right:41.66666666666667%} .col-lg-pull-4{right:33.33333333333333%} .col-lg-pull-3{right:25%} .col-lg-pull-2{right:16.666666666666664%} .col-lg-pull-1{right:8.333333333333332%} .col-lg-pull-0{right:auto} .col-lg-push-12{left:100%} .col-lg-push-11{left:91.66666666666666%} .col-lg-push-10{left:83.33333333333334%} .col-lg-push-9{left:75%} .col-lg-push-8{left:66.66666666666666%} .col-lg-push-7{left:58.333333333333336%} .col-lg-push-6{left:50%} .col-lg-push-5{left:41.66666666666667%} .col-lg-push-4{left:33.33333333333333%} .col-lg-push-3{left:25%} .col-lg-push-2{left:16.666666666666664%} .col-lg-push-1{left:8.333333333333332%} .col-lg-push-0{left:auto} .col-lg-offset-12{margin-left:100%} .col-lg-offset-11{margin-left:91.66666666666666%} .col-lg-offset-10{margin-left:83.33333333333334%} .col-lg-offset-9{margin-left:75%} .col-lg-offset-8{margin-left:66.66666666666666%} .col-lg-offset-7{margin-left:58.333333333333336%} .col-lg-offset-6{margin-left:50%} .col-lg-offset-5{margin-left:41.66666666666667%} .col-lg-offset-4{margin-left:33.33333333333333%} .col-lg-offset-3{margin-left:25%} .col-lg-offset-2{margin-left:16.666666666666664%} .col-lg-offset-1{margin-left:8.333333333333332%} .col-lg-offset-0{margin-left:0}}table{background-color:transparent} -caption{padding-top:8px;padding-bottom:8px;color:#030;text-align:left} -th{text-align:left} -.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #444} -.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #444} -.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0} -.table>tbody+tbody{border-top:2px solid #444} -.table .table{background-color:#222} -.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px} -.table-bordered{border:1px solid #444}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #444} -.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px} -.table-striped>tbody>tr:nth-of-type(odd){background-color:#080808} -.table-hover>tbody>tr:hover{background-color:#030} -table col[class*="col-"]{position:static;float:none;display:table-column} -table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell} -.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#030} -.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#001900} -.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#2f2f2f} -.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#2f2f2f} -.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#2f2f2f} -.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#2f2f2f} -.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #444}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap} .table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0} .table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0} .table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}} -fieldset{padding:0;margin:0;border:0;min-width:0} -legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#0c0;border:0;border-bottom:1px solid #e5e5e5} -label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold} -input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal} -input[type="file"]{display:block} -input[type="range"]{display:block;width:100%} -select[multiple],select[size]{height:auto} -input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} -output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#090} -.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#090;background-color:#000;background-image:none;border:1px solid #444;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#0f0;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 255, 0, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 255, 0, 0.6)} -.form-control::-moz-placeholder{color:#060;opacity:1} -.form-control:-ms-input-placeholder{color:#060} -.form-control::-webkit-input-placeholder{color:#060} -.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#030;opacity:1} -.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed} -textarea.form-control{height:auto} -input[type="search"]{-webkit-appearance:none} -@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px} input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:45px}}.form-group{margin-bottom:15px} -.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer} -.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9} -.radio+.radio,.checkbox+.checkbox{margin-top:-5px} -.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer} -.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px} -input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed} -.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed} -.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed} -.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0} -.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.input-sm{height:30px;line-height:30px} -textarea.input-sm,select[multiple].input-sm{height:auto} -.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.form-group-sm .form-control{height:30px;line-height:30px} -textarea.form-group-sm .form-control,select[multiple].form-group-sm .form-control{height:auto} -.form-group-sm .form-control-static{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;min-height:32px} -.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.input-lg{height:45px;line-height:45px} -textarea.input-lg,select[multiple].input-lg{height:auto} -.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.form-group-lg .form-control{height:45px;line-height:45px} -textarea.form-group-lg .form-control,select[multiple].form-group-lg .form-control{height:auto} -.form-group-lg .form-control-static{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;min-height:38px} -.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px} -.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none} -.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px} -.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px} -.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#0d0} -.has-success .form-control{border-color:#0d0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#0a0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #4f4;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #4f4} -.has-success .input-group-addon{color:#0d0;border-color:#0d0;background-color:#3c3c3c} -.has-success .form-control-feedback{color:#0d0} -.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#f4ff00} -.has-warning .form-control{border-color:#f4ff00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#c3cc00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f8ff66;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f8ff66} -.has-warning .input-group-addon{color:#f4ff00;border-color:#f4ff00;background-color:#3c3c3c} -.has-warning .form-control-feedback{color:#f4ff00} -.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#d00} -.has-error .form-control{border-color:#d00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#a00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f44;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f44} -.has-error .input-group-addon{color:#d00;border-color:#d00;background-color:#3c3c3c} -.has-error .form-control-feedback{color:#d00} -.has-feedback label~.form-control-feedback{top:25px} -.has-feedback label.sr-only~.form-control-feedback{top:0} -.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#4dff4d} -@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle} .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle} .form-inline .form-control-static{display:inline-block} .form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto} .form-inline .input-group>.form-control{width:100%} .form-inline .control-label{margin-bottom:0;vertical-align:middle} .form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0} .form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0} .form-inline .has-feedback .form-control-feedback{top:0}} -.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px} -.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px} -.form-horizontal .form-group{margin-left:-15px;margin-right:-15px} -@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px} -@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}} -@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}} -.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.428571429;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} -.btn:hover,.btn:focus,.btn.focus{color:#0f0;text-decoration:none} -.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)} -.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none} -.btn-default{color:#0f0;background-color:#222;border-color:#111}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#0f0;background-color:#080808;border-color:#000} -.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none} -.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#222;border-color:#111} -.btn-default .badge{color:#222;background-color:#0f0} -.btn-primary{color:#222;background-color:#0f0;border-color:#111}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#222;background-color:#0c0;border-color:#000} -.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none} -.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#0f0;border-color:#111} -.btn-primary .badge{color:#0f0;background-color:#222} -.btn-success{color:#222;background-color:#090;border-color:#111}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#222;background-color:#060;border-color:#000} -.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none} -.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#090;border-color:#111} -.btn-success .badge{color:#090;background-color:#222} -.btn-info{color:#222;background-color:#36c;border-color:#111}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#222;background-color:#2952a3;border-color:#000} -.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none} -.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#36c;border-color:#111} -.btn-info .badge{color:#36c;background-color:#222} -.btn-warning{color:#222;background-color:#f4ff00;border-color:#111}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#222;background-color:#c3cc00;border-color:#000} -.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none} -.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f4ff00;border-color:#111} -.btn-warning .badge{color:#f4ff00;background-color:#222} -.btn-danger{color:#222;background-color:#f00;border-color:#111}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#222;background-color:#c00;border-color:#000} -.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none} -.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#f00;border-color:#111} -.btn-danger .badge{color:#f00;background-color:#222} -.btn-link{color:#0f0;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none} -.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent} -.btn-link:hover,.btn-link:focus{color:#00b300;text-decoration:underline;background-color:transparent} -.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#030;text-decoration:none} -.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0} -.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0} -.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0} -.btn-block{display:block;width:100%} -.btn-block+.btn-block{margin-top:5px} -input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} -.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} -.collapse{display:none}.collapse.in{display:block} -tr.collapse.in{display:table-row} -tbody.collapse.in{display:table-row-group} -.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease} -.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent} -.dropup,.dropdown{position:relative} -.dropdown-toggle:focus{outline:0} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#3c3c3c;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} -.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#333} -.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#0c0;white-space:nowrap} -.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#222;background-color:#0f0} -.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#222;text-decoration:none;outline:0;background-color:#0f0} -.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#030} -.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed} -.open>.dropdown-menu{display:block} -.open>a{outline:0} -.dropdown-menu-right{left:auto;right:0} -.dropdown-menu-left{left:0;right:auto} -.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#a2a2a2;white-space:nowrap} -.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} -.pull-right>.dropdown-menu{right:0;left:auto} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px} -@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0} .navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2} -.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px} -.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left} -.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px} -.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0} -.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0} -.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0} -.btn-group>.btn-group{float:left} -.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0} -.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} -.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px} -.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px} -.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none} -.btn .caret{margin-left:0} -.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0} -.dropup .btn-lg .caret{border-width:0 5px 5px} -.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%} -.btn-group-vertical>.btn-group>.btn{float:none} -.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0} -.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0} -.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0} -.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%} -.btn-group-justified>.btn-group .btn{width:100%} -.btn-group-justified>.btn-group .dropdown-menu{left:auto} -[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none} -.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0} -.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0} -.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px} -textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto} -.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px} -textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto} -.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0} -.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle} -.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#090;text-align:center;background-color:#222;border:1px solid #444;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:0} -.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0} -.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0} -.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0} -.input-group-addon:first-child{border-right:0} -.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0} -.input-group-addon:last-child{border-left:0} -.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px} -.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2} -.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px} -.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px} -.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#030} -.nav>li.disabled>a{color:#030}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#030;text-decoration:none;background-color:transparent;cursor:not-allowed} -.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#030;border-color:#0f0} -.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.nav>li>a>img{max-width:none} -.nav-tabs{border-bottom:1px solid #444}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:0 0 0 0}.nav-tabs>li>a:hover{border-color:#444 #444 #444} -.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#090;background-color:#333;border:1px solid #222;border-bottom-color:transparent;cursor:default} -.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px} -.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:0} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd} -@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0} .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#222}} -.nav-pills>li{float:left}.nav-pills>li>a{border-radius:0} -.nav-pills>li+li{margin-left:2px} -.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#0f0} -.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0} -.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px} -.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}} -.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd} -@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0} .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#222}} -.tab-content>.tab-pane{display:none} -.tab-content>.active{display:block} -.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0} -.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:0}} -@media (min-width:768px){.navbar-header{float:left}} -.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto} -@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important} .navbar-collapse.in{overflow-y:visible} .navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}} -.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}} -.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}} -.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}} -.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}} -.navbar-fixed-top{top:0;border-width:0 0 1px} -.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0} -.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none} -.navbar-brand>img{display:block} -@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}} -.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.navbar-toggle:focus{outline:0} -.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px} -.navbar-toggle .icon-bar+.icon-bar{margin-top:4px} -@media (min-width:768px){.navbar-toggle{display:none}} -.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px} -@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px} .navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}} -.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle} .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle} .navbar-form .form-control-static{display:inline-block} .navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto} .navbar-form .input-group>.form-control{width:100%} .navbar-form .control-label{margin-bottom:0;vertical-align:middle} .navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0} .navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0} .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}} -@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}} -.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0} -.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px} -.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px} -.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}} -@media (min-width:768px){.navbar-left{float:left !important} .navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#080808;border-color:#000}.navbar-default .navbar-brand{color:#0f0}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#0c0;background-color:transparent} -.navbar-default .navbar-text{color:#0f0} -.navbar-default .navbar-nav>li>a{color:#0f0}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#090;background-color:#222} -.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#999;background-color:#000} -.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent} -.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd} -.navbar-default .navbar-toggle .icon-bar{background-color:#888} -.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#000} -.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#000;color:#999} -@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#0f0}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#090;background-color:#222} .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#999;background-color:#000} .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}} -.navbar-default .navbar-link{color:#0f0}.navbar-default .navbar-link:hover{color:#090} -.navbar-default .btn-link{color:#0f0}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#090} -.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc} -.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#007f00}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent} -.navbar-inverse .navbar-text{color:#007f00} -.navbar-inverse .navbar-nav>li>a{color:#007f00}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent} -.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333} -.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff} -.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010} -.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff} -@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808} .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808} .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#007f00}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent} .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808} .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}} -.navbar-inverse .navbar-link{color:#007f00}.navbar-inverse .navbar-link:hover{color:#fff} -.navbar-inverse .btn-link{color:#007f00}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff} -.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444} -.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#3c3c3c;border-radius:0}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#0f0} -.breadcrumb>.active{color:#090} -.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.428571429;text-decoration:none;color:#0f0;background-color:#222;border:1px solid #444;margin-left:-1px} -.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0} -.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0} -.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#00b300;background-color:#030;border-color:#555} -.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#222;background-color:#0f0;border-color:#0f0;cursor:default} -.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#3f3;background-color:#3c3c3c;border-color:#444;cursor:not-allowed} -.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px} -.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0} -.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0} -.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px} -.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0} -.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0} -.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#222;border:1px solid #444;border-radius:0} -.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#030} -.pager .next>a,.pager .next>span{float:right} -.pager .previous>a,.pager .previous>span{float:left} -.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#030;background-color:#222;cursor:not-allowed} -.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#222;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer} -.label:empty{display:none} -.btn .label{position:relative;top:-1px} -.label-default{background-color:#030}.label-default[href]:hover,.label-default[href]:focus{background-color:#000} -.label-primary{background-color:#0f0}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#0c0} -.label-success{background-color:#090}.label-success[href]:hover,.label-success[href]:focus{background-color:#060} -.label-info{background-color:#36c}.label-info[href]:hover,.label-info[href]:focus{background-color:#2952a3} -.label-warning{background-color:#f4ff00}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#c3cc00} -.label-danger{background-color:#f00}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c00} -.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#0f0;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#222;border-radius:10px}.badge:empty{display:none} -.btn .badge{position:relative;top:-1px} -.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px} -a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} -.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0f0;background-color:#fff} -.list-group-item>.badge{float:right} -.list-group-item>.badge+.badge{margin-right:5px} -.nav-pills>li>a>.badge{margin-left:3px} -.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#080808}.jumbotron h1,.jumbotron .h1{color:inherit} -.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200} -.jumbotron>hr{border-top-color:#000} -.container .jumbotron,.container-fluid .jumbotron{border-radius:0} -.jumbotron .container{max-width:100%} -@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px} .jumbotron h1,.jumbotron .h1{font-size:63px}} -.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#222;border:1px solid #ddd;border-radius:0;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto} -a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#0f0} -.thumbnail .caption{padding:9px;color:#0c0} -.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:0}.alert h4{margin-top:0;color:inherit} -.alert .alert-link{font-weight:bold} -.alert>p,.alert>ul{margin-bottom:0} -.alert>p+p{margin-top:5px} -.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit} -.alert-success{background-color:#3c3c3c;border-color:#2f2f2f;color:#0d0}.alert-success hr{border-top-color:#222} -.alert-success .alert-link{color:#0a0} -.alert-info{background-color:#3c3c3c;border-color:#2a2a2a;color:#7d8cff}.alert-info hr{border-top-color:#1d1d1d} -.alert-info .alert-link{color:#4a5fff} -.alert-warning{background-color:#3c3c3c;border-color:#343434;color:#f4ff00}.alert-warning hr{border-top-color:#272727} -.alert-warning .alert-link{color:#c3cc00} -.alert-danger{background-color:#3c3c3c;border-color:#343434;color:#d00}.alert-danger hr{border-top-color:#272727} -.alert-danger .alert-link{color:#a00} -@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#3c3c3c;border-radius:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)} -.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#0f0;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} -.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px} -.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} -.progress-bar-success{background-color:#090}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.progress-bar-info{background-color:#36c}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.progress-bar-warning{background-color:#f4ff00}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.progress-bar-danger{background-color:#f00}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.media{margin-top:15px}.media:first-child{margin-top:0} -.media,.media-body{zoom:1;overflow:hidden} -.media-body{width:10000px} -.media-object{display:block} -.media-right,.media>.pull-right{padding-left:10px} -.media-left,.media>.pull-left{padding-right:10px} -.media-left,.media-right,.media-body{display:table-cell;vertical-align:top} -.media-middle{vertical-align:middle} -.media-bottom{vertical-align:bottom} -.media-heading{margin-top:0;margin-bottom:5px} -.media-list{padding-left:0;list-style:none} -.list-group{margin-bottom:20px;padding-left:0} -.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#3c3c3c;border:1px solid #222}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0} -.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0} -a.list-group-item{color:#0f0}a.list-group-item .list-group-item-heading{color:#0f0} -a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#0f0;background-color:#151515} -.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#030;color:#030;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit} -.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#030} -.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#222;background-color:#0f0;border-color:#0f0}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit} -.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#222} -.list-group-item-success{color:#0d0;background-color:#3c3c3c}a.list-group-item-success{color:#0d0}a.list-group-item-success .list-group-item-heading{color:inherit} -a.list-group-item-success:hover,a.list-group-item-success:focus{color:#0d0;background-color:#2f2f2f} -a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#0d0;border-color:#0d0} -.list-group-item-info{color:#7d8cff;background-color:#3c3c3c}a.list-group-item-info{color:#7d8cff}a.list-group-item-info .list-group-item-heading{color:inherit} -a.list-group-item-info:hover,a.list-group-item-info:focus{color:#7d8cff;background-color:#2f2f2f} -a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#7d8cff;border-color:#7d8cff} -.list-group-item-warning{color:#f4ff00;background-color:#3c3c3c}a.list-group-item-warning{color:#f4ff00}a.list-group-item-warning .list-group-item-heading{color:inherit} -a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#f4ff00;background-color:#2f2f2f} -a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#f4ff00;border-color:#f4ff00} -.list-group-item-danger{color:#d00;background-color:#3c3c3c}a.list-group-item-danger{color:#d00}a.list-group-item-danger .list-group-item-heading{color:inherit} -a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#d00;background-color:#2f2f2f} -a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#d00;border-color:#d00} -.list-group-item-heading{margin-top:0;margin-bottom:5px} -.list-group-item-text{margin-bottom:0;line-height:1.3} -.panel{margin-bottom:20px;background-color:#222;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)} -.panel-body{padding:15px} -.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1;border-top-left-radius:-1}.panel-heading>.dropdown .dropdown-toggle{color:inherit} -.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit} -.panel-footer{padding:10px 15px;background-color:#080808;border-top:1px solid #3c3c3c;border-bottom-right-radius:-1;border-bottom-left-radius:-1} -.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0} -.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1;border-top-left-radius:-1} -.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1;border-bottom-left-radius:-1} -.panel-heading+.list-group .list-group-item:first-child{border-top-width:0} -.list-group+.panel-footer{border-top-width:0} -.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px} -.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1;border-top-left-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1;border-top-right-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1} -.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1} -.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1;border-bottom-left-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1;border-bottom-right-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1} -.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1} -.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #444} -.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0} -.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0} -.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0} -.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0} -.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0} -.panel>.table-responsive{border:0;margin-bottom:0} -.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px} -.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #3c3c3c} -.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #3c3c3c} -.panel-default{border-color:#3c3c3c}.panel-default>.panel-heading{color:#222;background-color:#080808;border-color:#3c3c3c}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3c3c3c} -.panel-default>.panel-heading .badge{color:#080808;background-color:#222} -.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3c3c3c} -.panel-primary{border-color:#0f0}.panel-primary>.panel-heading{color:#222;background-color:#0f0;border-color:#0f0}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#0f0} -.panel-primary>.panel-heading .badge{color:#0f0;background-color:#222} -.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#0f0} -.panel-success{border-color:#2f2f2f}.panel-success>.panel-heading{color:#0d0;background-color:#3c3c3c;border-color:#2f2f2f}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2f2f2f} -.panel-success>.panel-heading .badge{color:#3c3c3c;background-color:#0d0} -.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2f2f2f} -.panel-info{border-color:#2a2a2a}.panel-info>.panel-heading{color:#7d8cff;background-color:#3c3c3c;border-color:#2a2a2a}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2a2a2a} -.panel-info>.panel-heading .badge{color:#3c3c3c;background-color:#7d8cff} -.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2a2a2a} -.panel-warning{border-color:#343434}.panel-warning>.panel-heading{color:#f4ff00;background-color:#3c3c3c;border-color:#343434}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#343434} -.panel-warning>.panel-heading .badge{color:#3c3c3c;background-color:#f4ff00} -.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#343434} -.panel-danger{border-color:#343434}.panel-danger>.panel-heading{color:#d00;background-color:#3c3c3c;border-color:#343434}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#343434} -.panel-danger>.panel-heading .badge{color:#3c3c3c;background-color:#d00} -.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#343434} -.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0} -.embed-responsive-16by9{padding-bottom:56.25%} -.embed-responsive-4by3{padding-bottom:75%} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#080808;border:1px solid #000;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} -.well-lg{padding:24px;border-radius:0} -.well-sm{padding:9px;border-radius:0} -.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)} -button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} -.modal-open{overflow:hidden} -.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out} -.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)} -.modal-open .modal{overflow-x:hidden;overflow-y:auto} -.modal-dialog{position:relative;width:auto;margin:10px} -.modal-content{position:relative;background-color:#3c3c3c;border:1px solid #999;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0} -.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#222}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)} -.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)} -.modal-header{padding:15px;border-bottom:1px solid #3c3c3c;min-height:16.428571429px} -.modal-header .close{margin-top:-2px} -.modal-title{margin:0;line-height:1.428571429} -.modal-body{position:relative;padding:15px} -.modal-footer{padding:15px;text-align:right;border-top:1px solid #3c3c3c}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} -.modal-footer .btn-group .btn+.btn{margin-left:-1px} -.modal-footer .btn-block+.btn-block{margin-left:0} -.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll} -@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto} .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)} .modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Monospace;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)} -.tooltip.top{margin-top:-3px;padding:5px 0} -.tooltip.right{margin-left:3px;padding:0 5px} -.tooltip.bottom{margin-top:3px;padding:5px 0} -.tooltip.left{margin-left:-3px;padding:0 5px} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:0} -.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Monospace;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:left;background-color:#3c3c3c;background-clip:padding-box;border:1px solid #333;border:1px solid rgba(0,0,0,0.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} -.popover.right{margin-left:10px} -.popover.bottom{margin-top:10px} -.popover.left{margin-left:-10px} -.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#343434;border-bottom:1px solid #272727;border-radius:-1 -1 0 0} -.popover-content{padding:9px 14px} -.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} -.popover>.arrow{border-width:11px} -.popover>.arrow:after{border-width:10px;content:""} -.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#3c3c3c} -.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#3c3c3c} -.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#3c3c3c} -.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#3c3c3c;bottom:-10px} -.carousel{position:relative} -.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1} -@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;-moz-perspective:1000;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0} .carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0} .carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}} -.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} -.carousel-inner>.active{left:0} -.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} -.carousel-inner>.next{left:100%} -.carousel-inner>.prev{left:-100%} -.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} -.carousel-inner>.active.left{left:-100%} -.carousel-inner>.active.right{left:100%} -.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)} -.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)} -.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} -.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block} -.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px} -.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px} -.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;line-height:1;font-family:serif} -.carousel-control .icon-prev:before{content:'\2039'} -.carousel-control .icon-next:before{content:'\203a'} -.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)} -.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff} -.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none} -@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px} .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px} .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px} .carousel-caption{left:20%;right:20%;padding-bottom:30px} .carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table} -.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both} -.center-block{display:block;margin-left:auto;margin-right:auto} -.pull-right{float:right !important} -.pull-left{float:left !important} -.hide{display:none !important} -.show{display:block !important} -.invisible{visibility:hidden} -.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} -.hidden{display:none !important} -.affix{position:fixed} -@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important} -.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important} -@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table} tr.visible-xs{display:table-row !important} th.visible-xs,td.visible-xs{display:table-cell !important}} -@media (max-width:767px){.visible-xs-block{display:block !important}} -@media (max-width:767px){.visible-xs-inline{display:inline !important}} -@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table} tr.visible-sm{display:table-row !important} th.visible-sm,td.visible-sm{display:table-cell !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table} tr.visible-md{display:table-row !important} th.visible-md,td.visible-md{display:table-cell !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}} -@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table} tr.visible-lg{display:table-row !important} th.visible-lg,td.visible-lg{display:table-cell !important}} -@media (min-width:1200px){.visible-lg-block{display:block !important}} -@media (min-width:1200px){.visible-lg-inline{display:inline !important}} -@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}} -@media (max-width:767px){.hidden-xs{display:none !important}} -@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}} -@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}} -@media (min-width:1200px){.hidden-lg{display:none !important}} -.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table} tr.visible-print{display:table-row !important} th.visible-print,td.visible-print{display:table-cell !important}} -.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}} -.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}} -.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}} -@media print{.hidden-print{display:none !important}} +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, strong { + font-weight: bold +} + +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: -0.5em +} + +sub { + bottom: -0.25em +} + +img { + border: 0 +} + +svg:not(:root) { + overflow: hidden +} + +figure { + margin: 1em 40px +} + +hr { + box-sizing: content-box; + height: 0 +} + +pre { + 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"] { + 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"] { + appearance: textfield; + box-sizing: content-box +} + +input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { + appearance: none +} + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: .35em .625em .75em +} + +legend { + border: 0; + padding: 0 +} + +textarea { + overflow: auto +} + +optgroup { + font-weight: bold +} + +table { + border-collapse: collapse; + border-spacing: 0 +} + +td, th { + padding: 0 +} + +@media print { + *, *:before, *:after { + background: transparent; + color: #000; + box-shadow: none; + text-shadow: none + } + + a, a:visited { + text-decoration: underline + } + + a[href]:after { + content: " ("attr(href) ")" + } + + abbr[title]:after { + content: " ("attr(title) ")" + } + + a[href^="#"]:after, a[href^="javascript:"]:after { + content: "" + } + + pre, blockquote { + border: 1px solid #999; + page-break-inside: avoid + } + + thead { + display: table-header-group + } + + tr, img { + page-break-inside: avoid + } + + img { + max-width: 100% + } + + p, h2, h3 { + orphans: 3; + widows: 3 + } + + h2, h3 { + page-break-after: avoid + } + + select { + background: #fff + } + + .navbar { + display: none + } + + .btn>.caret, .dropup>.btn>.caret { + border-top-color: #000 + } + + .label { + border: 1px solid #000 + } + + .table { + border-collapse: collapse + } + + .table td, .table th { + background-color: #fff + } + + .table-bordered th, .table-bordered td { + border: 1px solid #ddd + } +} + +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg') +} + +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.glyphicon-asterisk:before { + content: "\2a" +} + +.glyphicon-plus:before { + content: "\2b" +} + +.glyphicon-euro:before, .glyphicon-eur:before { + content: "\20ac" +} + +.glyphicon-minus:before { + content: "\2212" +} + +.glyphicon-cloud:before { + content: "\2601" +} + +.glyphicon-envelope:before { + content: "\2709" +} + +.glyphicon-pencil:before { + content: "\270f" +} + +.glyphicon-glass:before { + content: "\e001" +} + +.glyphicon-music:before { + content: "\e002" +} + +.glyphicon-search:before { + content: "\e003" +} + +.glyphicon-heart:before { + content: "\e005" +} + +.glyphicon-star:before { + content: "\e006" +} + +.glyphicon-star-empty:before { + content: "\e007" +} + +.glyphicon-user:before { + content: "\e008" +} + +.glyphicon-film:before { + content: "\e009" +} + +.glyphicon-th-large:before { + content: "\e010" +} + +.glyphicon-th:before { + content: "\e011" +} + +.glyphicon-th-list:before { + content: "\e012" +} + +.glyphicon-ok:before { + content: "\e013" +} + +.glyphicon-remove:before { + content: "\e014" +} + +.glyphicon-zoom-in:before { + content: "\e015" +} + +.glyphicon-zoom-out:before { + content: "\e016" +} + +.glyphicon-off:before { + content: "\e017" +} + +.glyphicon-signal:before { + content: "\e018" +} + +.glyphicon-cog:before { + content: "\e019" +} + +.glyphicon-trash:before { + content: "\e020" +} + +.glyphicon-home:before { + content: "\e021" +} + +.glyphicon-file:before { + content: "\e022" +} + +.glyphicon-time:before { + content: "\e023" +} + +.glyphicon-road:before { + content: "\e024" +} + +.glyphicon-download-alt:before { + content: "\e025" +} + +.glyphicon-download:before { + content: "\e026" +} + +.glyphicon-upload:before { + content: "\e027" +} + +.glyphicon-inbox:before { + content: "\e028" +} + +.glyphicon-play-circle:before { + content: "\e029" +} + +.glyphicon-repeat:before { + content: "\e030" +} + +.glyphicon-refresh:before { + content: "\e031" +} + +.glyphicon-list-alt:before { + content: "\e032" +} + +.glyphicon-lock:before { + content: "\e033" +} + +.glyphicon-flag:before { + content: "\e034" +} + +.glyphicon-headphones:before { + content: "\e035" +} + +.glyphicon-volume-off:before { + content: "\e036" +} + +.glyphicon-volume-down:before { + content: "\e037" +} + +.glyphicon-volume-up:before { + content: "\e038" +} + +.glyphicon-qrcode:before { + content: "\e039" +} + +.glyphicon-barcode:before { + content: "\e040" +} + +.glyphicon-tag:before { + content: "\e041" +} + +.glyphicon-tags:before { + content: "\e042" +} + +.glyphicon-book:before { + content: "\e043" +} + +.glyphicon-bookmark:before { + content: "\e044" +} + +.glyphicon-print:before { + content: "\e045" +} + +.glyphicon-camera:before { + content: "\e046" +} + +.glyphicon-font:before { + content: "\e047" +} + +.glyphicon-bold:before { + content: "\e048" +} + +.glyphicon-italic:before { + content: "\e049" +} + +.glyphicon-text-height:before { + content: "\e050" +} + +.glyphicon-text-width:before { + content: "\e051" +} + +.glyphicon-align-left:before { + content: "\e052" +} + +.glyphicon-align-center:before { + content: "\e053" +} + +.glyphicon-align-right:before { + content: "\e054" +} + +.glyphicon-align-justify:before { + content: "\e055" +} + +.glyphicon-list:before { + content: "\e056" +} + +.glyphicon-indent-left:before { + content: "\e057" +} + +.glyphicon-indent-right:before { + content: "\e058" +} + +.glyphicon-facetime-video:before { + content: "\e059" +} + +.glyphicon-picture:before { + content: "\e060" +} + +.glyphicon-map-marker:before { + content: "\e062" +} + +.glyphicon-adjust:before { + content: "\e063" +} + +.glyphicon-tint:before { + content: "\e064" +} + +.glyphicon-edit:before { + content: "\e065" +} + +.glyphicon-share:before { + content: "\e066" +} + +.glyphicon-check:before { + content: "\e067" +} + +.glyphicon-move:before { + content: "\e068" +} + +.glyphicon-step-backward:before { + content: "\e069" +} + +.glyphicon-fast-backward:before { + content: "\e070" +} + +.glyphicon-backward:before { + content: "\e071" +} + +.glyphicon-play:before { + content: "\e072" +} + +.glyphicon-pause:before { + content: "\e073" +} + +.glyphicon-stop:before { + content: "\e074" +} + +.glyphicon-forward:before { + content: "\e075" +} + +.glyphicon-fast-forward:before { + content: "\e076" +} + +.glyphicon-step-forward:before { + content: "\e077" +} + +.glyphicon-eject:before { + content: "\e078" +} + +.glyphicon-chevron-left:before { + content: "\e079" +} + +.glyphicon-chevron-right:before { + content: "\e080" +} + +.glyphicon-plus-sign:before { + content: "\e081" +} + +.glyphicon-minus-sign:before { + content: "\e082" +} + +.glyphicon-remove-sign:before { + content: "\e083" +} + +.glyphicon-ok-sign:before { + content: "\e084" +} + +.glyphicon-question-sign:before { + content: "\e085" +} + +.glyphicon-info-sign:before { + content: "\e086" +} + +.glyphicon-screenshot:before { + content: "\e087" +} + +.glyphicon-remove-circle:before { + content: "\e088" +} + +.glyphicon-ok-circle:before { + content: "\e089" +} + +.glyphicon-ban-circle:before { + content: "\e090" +} + +.glyphicon-arrow-left:before { + content: "\e091" +} + +.glyphicon-arrow-right:before { + content: "\e092" +} + +.glyphicon-arrow-up:before { + content: "\e093" +} + +.glyphicon-arrow-down:before { + content: "\e094" +} + +.glyphicon-share-alt:before { + content: "\e095" +} + +.glyphicon-resize-full:before { + content: "\e096" +} + +.glyphicon-resize-small:before { + content: "\e097" +} + +.glyphicon-exclamation-sign:before { + content: "\e101" +} + +.glyphicon-gift:before { + content: "\e102" +} + +.glyphicon-leaf:before { + content: "\e103" +} + +.glyphicon-fire:before { + content: "\e104" +} + +.glyphicon-eye-open:before { + content: "\e105" +} + +.glyphicon-eye-close:before { + content: "\e106" +} + +.glyphicon-warning-sign:before { + content: "\e107" +} + +.glyphicon-plane:before { + content: "\e108" +} + +.glyphicon-calendar:before { + content: "\e109" +} + +.glyphicon-random:before { + content: "\e110" +} + +.glyphicon-comment:before { + content: "\e111" +} + +.glyphicon-magnet:before { + content: "\e112" +} + +.glyphicon-chevron-up:before { + content: "\e113" +} + +.glyphicon-chevron-down:before { + content: "\e114" +} + +.glyphicon-retweet:before { + content: "\e115" +} + +.glyphicon-shopping-cart:before { + content: "\e116" +} + +.glyphicon-folder-close:before { + content: "\e117" +} + +.glyphicon-folder-open:before { + content: "\e118" +} + +.glyphicon-resize-vertical:before { + content: "\e119" +} + +.glyphicon-resize-horizontal:before { + content: "\e120" +} + +.glyphicon-hdd:before { + content: "\e121" +} + +.glyphicon-bullhorn:before { + content: "\e122" +} + +.glyphicon-bell:before { + content: "\e123" +} + +.glyphicon-certificate:before { + content: "\e124" +} + +.glyphicon-thumbs-up:before { + content: "\e125" +} + +.glyphicon-thumbs-down:before { + content: "\e126" +} + +.glyphicon-hand-right:before { + content: "\e127" +} + +.glyphicon-hand-left:before { + content: "\e128" +} + +.glyphicon-hand-up:before { + content: "\e129" +} + +.glyphicon-hand-down:before { + content: "\e130" +} + +.glyphicon-circle-arrow-right:before { + content: "\e131" +} + +.glyphicon-circle-arrow-left:before { + content: "\e132" +} + +.glyphicon-circle-arrow-up:before { + content: "\e133" +} + +.glyphicon-circle-arrow-down:before { + content: "\e134" +} + +.glyphicon-globe:before { + content: "\e135" +} + +.glyphicon-wrench:before { + content: "\e136" +} + +.glyphicon-tasks:before { + content: "\e137" +} + +.glyphicon-filter:before { + content: "\e138" +} + +.glyphicon-briefcase:before { + content: "\e139" +} + +.glyphicon-fullscreen:before { + content: "\e140" +} + +.glyphicon-dashboard:before { + content: "\e141" +} + +.glyphicon-paperclip:before { + content: "\e142" +} + +.glyphicon-heart-empty:before { + content: "\e143" +} + +.glyphicon-link:before { + content: "\e144" +} + +.glyphicon-phone:before { + content: "\e145" +} + +.glyphicon-pushpin:before { + content: "\e146" +} + +.glyphicon-usd:before { + content: "\e148" +} + +.glyphicon-gbp:before { + content: "\e149" +} + +.glyphicon-sort:before { + content: "\e150" +} + +.glyphicon-sort-by-alphabet:before { + content: "\e151" +} + +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152" +} + +.glyphicon-sort-by-order:before { + content: "\e153" +} + +.glyphicon-sort-by-order-alt:before { + content: "\e154" +} + +.glyphicon-sort-by-attributes:before { + content: "\e155" +} + +.glyphicon-sort-by-attributes-alt:before { + content: "\e156" +} + +.glyphicon-unchecked:before { + content: "\e157" +} + +.glyphicon-expand:before { + content: "\e158" +} + +.glyphicon-collapse-down:before { + content: "\e159" +} + +.glyphicon-collapse-up:before { + content: "\e160" +} + +.glyphicon-log-in:before { + content: "\e161" +} + +.glyphicon-flash:before { + content: "\e162" +} + +.glyphicon-log-out:before { + content: "\e163" +} + +.glyphicon-new-window:before { + content: "\e164" +} + +.glyphicon-record:before { + content: "\e165" +} + +.glyphicon-save:before { + content: "\e166" +} + +.glyphicon-open:before { + content: "\e167" +} + +.glyphicon-saved:before { + content: "\e168" +} + +.glyphicon-import:before { + content: "\e169" +} + +.glyphicon-export:before { + content: "\e170" +} + +.glyphicon-send:before { + content: "\e171" +} + +.glyphicon-floppy-disk:before { + content: "\e172" +} + +.glyphicon-floppy-saved:before { + content: "\e173" +} + +.glyphicon-floppy-remove:before { + content: "\e174" +} + +.glyphicon-floppy-save:before { + content: "\e175" +} + +.glyphicon-floppy-open:before { + content: "\e176" +} + +.glyphicon-credit-card:before { + content: "\e177" +} + +.glyphicon-transfer:before { + content: "\e178" +} + +.glyphicon-cutlery:before { + content: "\e179" +} + +.glyphicon-header:before { + content: "\e180" +} + +.glyphicon-compressed:before { + content: "\e181" +} + +.glyphicon-earphone:before { + content: "\e182" +} + +.glyphicon-phone-alt:before { + content: "\e183" +} + +.glyphicon-tower:before { + content: "\e184" +} + +.glyphicon-stats:before { + content: "\e185" +} + +.glyphicon-sd-video:before { + content: "\e186" +} + +.glyphicon-hd-video:before { + content: "\e187" +} + +.glyphicon-subtitles:before { + content: "\e188" +} + +.glyphicon-sound-stereo:before { + content: "\e189" +} + +.glyphicon-sound-dolby:before { + content: "\e190" +} + +.glyphicon-sound-5-1:before { + content: "\e191" +} + +.glyphicon-sound-6-1:before { + content: "\e192" +} + +.glyphicon-sound-7-1:before { + content: "\e193" +} + +.glyphicon-copyright-mark:before { + content: "\e194" +} + +.glyphicon-registration-mark:before { + content: "\e195" +} + +.glyphicon-cloud-download:before { + content: "\e197" +} + +.glyphicon-cloud-upload:before { + content: "\e198" +} + +.glyphicon-tree-conifer:before { + content: "\e199" +} + +.glyphicon-tree-deciduous:before { + content: "\e200" +} + +.glyphicon-cd:before { + content: "\e201" +} + +.glyphicon-save-file:before { + content: "\e202" +} + +.glyphicon-open-file:before { + content: "\e203" +} + +.glyphicon-level-up:before { + content: "\e204" +} + +.glyphicon-copy:before { + content: "\e205" +} + +.glyphicon-paste:before { + content: "\e206" +} + +.glyphicon-alert:before { + content: "\e209" +} + +.glyphicon-equalizer:before { + content: "\e210" +} + +.glyphicon-king:before { + content: "\e211" +} + +.glyphicon-queen:before { + content: "\e212" +} + +.glyphicon-pawn:before { + content: "\e213" +} + +.glyphicon-bishop:before { + content: "\e214" +} + +.glyphicon-knight:before { + content: "\e215" +} + +.glyphicon-baby-formula:before { + content: "\e216" +} + +.glyphicon-tent:before { + content: "\26fa" +} + +.glyphicon-blackboard:before { + content: "\e218" +} + +.glyphicon-bed:before { + content: "\e219" +} + +.glyphicon-apple:before { + content: "\f8ff" +} + +.glyphicon-erase:before { + content: "\e221" +} + +.glyphicon-hourglass:before { + content: "\231b" +} + +.glyphicon-lamp:before { + content: "\e223" +} + +.glyphicon-duplicate:before { + content: "\e224" +} + +.glyphicon-piggy-bank:before { + content: "\e225" +} + +.glyphicon-scissors:before { + content: "\e226" +} + +.glyphicon-bitcoin:before { + content: "\e227" +} + +.glyphicon-btc:before { + content: "\e227" +} + +.glyphicon-xbt:before { + content: "\e227" +} + +.glyphicon-yen:before { + content: "\00a5" +} + +.glyphicon-jpy:before { + content: "\00a5" +} + +.glyphicon-ruble:before { + content: "\20bd" +} + +.glyphicon-rub:before { + content: "\20bd" +} + +.glyphicon-scale:before { + content: "\e230" +} + +.glyphicon-ice-lolly:before { + content: "\e231" +} + +.glyphicon-ice-lolly-tasted:before { + content: "\e232" +} + +.glyphicon-education:before { + content: "\e233" +} + +.glyphicon-option-horizontal:before { + content: "\e234" +} + +.glyphicon-option-vertical:before { + content: "\e235" +} + +.glyphicon-menu-hamburger:before { + content: "\e236" +} + +.glyphicon-modal-window:before { + content: "\e237" +} + +.glyphicon-oil:before { + content: "\e238" +} + +.glyphicon-grain:before { + content: "\e239" +} + +.glyphicon-sunglasses:before { + content: "\e240" +} + +.glyphicon-text-size:before { + content: "\e241" +} + +.glyphicon-text-color:before { + content: "\e242" +} + +.glyphicon-text-background:before { + content: "\e243" +} + +.glyphicon-object-align-top:before { + content: "\e244" +} + +.glyphicon-object-align-bottom:before { + content: "\e245" +} + +.glyphicon-object-align-horizontal:before { + content: "\e246" +} + +.glyphicon-object-align-left:before { + content: "\e247" +} + +.glyphicon-object-align-vertical:before { + content: "\e248" +} + +.glyphicon-object-align-right:before { + content: "\e249" +} + +.glyphicon-triangle-right:before { + content: "\e250" +} + +.glyphicon-triangle-left:before { + content: "\e251" +} + +.glyphicon-triangle-bottom:before { + content: "\e252" +} + +.glyphicon-triangle-top:before { + content: "\e253" +} + +.glyphicon-console:before { + content: "\e254" +} + +.glyphicon-superscript:before { + content: "\e255" +} + +.glyphicon-subscript:before { + content: "\e256" +} + +.glyphicon-menu-left:before { + content: "\e257" +} + +.glyphicon-menu-right:before { + content: "\e258" +} + +.glyphicon-menu-down:before { + content: "\e259" +} + +.glyphicon-menu-up:before { + content: "\e260" +} + +* { + box-sizing: border-box +} + +*:before, *:after { + box-sizing: border-box +} + +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0) +} + +body { + font-family: Monospace; + font-size: 14px; + line-height: 1.428571429; + color: #0c0; + background-color: #222 +} + +input, button, select, textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit +} + +a { + color: #0f0; + text-decoration: none +} + +a:hover, a:focus { + color: #00b300; + text-decoration: underline +} + +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +figure { + margin: 0 +} + +img { + vertical-align: middle +} + +.img-responsive, .thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img { + display: block; + max-width: 100%; + height: auto +} + +.img-rounded { + border-radius: 0 +} + +.img-thumbnail { + padding: 4px; + line-height: 1.428571429; + background-color: #222; + border: 1px solid #ddd; + border-radius: 0; + transition: all .2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto +} + +.img-circle { + border-radius: 50% +} + +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #3c3c3c +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0 +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto +} + +[role="button"] { + cursor: pointer +} + +h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { + font-family: Monospace; + font-weight: 500; + line-height: 1.1; + color: inherit +} + +h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { + font-weight: normal; + line-height: 1; + color: #030 +} + +h1, .h1, h2, .h2, h3, .h3 { + margin-top: 20px; + margin-bottom: 10px +} + +h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { + font-size: 65% +} + +h4, .h4, h5, .h5, h6, .h6 { + margin-top: 10px; + margin-bottom: 10px +} + +h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { + font-size: 75% +} + +h1, .h1 { + font-size: 36px +} + +h2, .h2 { + font-size: 30px +} + +h3, .h3 { + font-size: 23px +} + +h4, .h4 { + font-size: 17px +} + +h5, .h5 { + font-size: 14px +} + +h6, .h6 { + font-size: 11px +} + +p { + margin: 0 0 10px +} + +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4 +} + +@media (min-width:768px) { + .lead { + font-size: 21px + } +} + +small, .small { + font-size: 85% +} + +mark, .mark { + background-color: #3c3c3c; + padding: .2em +} + +.text-left { + text-align: left +} + +.text-right { + text-align: right +} + +.text-center { + text-align: center +} + +.text-justify { + text-align: justify +} + +.text-nowrap { + white-space: nowrap +} + +.text-lowercase { + text-transform: lowercase +} + +.text-uppercase { + text-transform: uppercase +} + +.text-capitalize { + text-transform: capitalize +} + +.text-muted { + color: #030 +} + +.text-primary { + color: #0f0 +} + +a.text-primary:hover { + color: #0c0 +} + +.text-success { + color: #0d0 +} + +a.text-success:hover { + color: #0a0 +} + +.text-info { + color: #7d8cff +} + +a.text-info:hover { + color: #4a5fff +} + +.text-warning { + color: #f4ff00 +} + +a.text-warning:hover { + color: #c3cc00 +} + +.text-danger { + color: #d00 +} + +a.text-danger:hover { + color: #a00 +} + +.bg-primary { + color: #fff; + background-color: #0f0 +} + +a.bg-primary:hover { + background-color: #0c0 +} + +.bg-success { + background-color: #3c3c3c +} + +a.bg-success:hover { + background-color: #222 +} + +.bg-info { + background-color: #3c3c3c +} + +a.bg-info:hover { + background-color: #222 +} + +.bg-warning { + background-color: #3c3c3c +} + +a.bg-warning:hover { + background-color: #222 +} + +.bg-danger { + background-color: #3c3c3c +} + +a.bg-danger:hover { + background-color: #222 +} + +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #030 +} + +ul, ol { + margin-top: 0; + margin-bottom: 10px +} + +ul ul, ol ul, ul ol, ol ol { + margin-bottom: 0 +} + +.list-unstyled { + padding-left: 0; + list-style: none +} + +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px +} + +.list-inline>li { + display: inline-block; + padding-left: 5px; + padding-right: 5px +} + +dl { + margin-top: 0; + margin-bottom: 20px +} + +dt, dd { + line-height: 1.428571429 +} + +dt { + font-weight: bold +} + +dd { + margin-left: 0 +} + +@media (min-width:768px) { + .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap + } + + .dl-horizontal dd { + margin-left: 180px + } +} + +abbr[title], abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #030 +} + +.initialism { + font-size: 90%; + text-transform: uppercase +} + +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #030 +} + +blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { + margin-bottom: 0 +} + +blockquote footer, blockquote small, blockquote .small { + display: block; + font-size: 80%; + line-height: 1.428571429; + color: #030 +} + +blockquote footer:before, blockquote small:before, blockquote .small:before { + content: '\2014 \00A0' +} + +.blockquote-reverse, blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #030; + border-left: 0; + text-align: right +} + +.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { + content: '' +} + +.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { + content: '\00A0 \2014' +} + +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429 +} + +code, kbd, pre, samp { + font-family: Monospace +} + +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 0 +} + +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 0; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25) +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: bold; + box-shadow: none +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + word-break: break-all; + word-wrap: break-word; + color: #0c0; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 0 +} + +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0 +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll +} + +.container { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px +} + +@media (min-width:768px) { + .container { + width: 750px + } +} + +@media (min-width:992px) { + .container { + width: 970px + } +} + +@media (min-width:1200px) { + .container { + width: 1170px + } +} + +.container-fluid { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px +} + +.row { + margin-left: -15px; + margin-right: -15px +} + +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-left: 15px; + padding-right: 15px +} + +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left +} + +.col-xs-12 { + width: 100% +} + +.col-xs-11 { + width: 91.66666666666666% +} + +.col-xs-10 { + width: 83.33333333333334% +} + +.col-xs-9 { + width: 75% +} + +.col-xs-8 { + width: 66.66666666666666% +} + +.col-xs-7 { + width: 58.333333333333336% +} + +.col-xs-6 { + width: 50% +} + +.col-xs-5 { + width: 41.66666666666667% +} + +.col-xs-4 { + width: 33.33333333333333% +} + +.col-xs-3 { + width: 25% +} + +.col-xs-2 { + width: 16.666666666666664% +} + +.col-xs-1 { + width: 8.333333333333332% +} + +.col-xs-pull-12 { + right: 100% +} + +.col-xs-pull-11 { + right: 91.66666666666666% +} + +.col-xs-pull-10 { + right: 83.33333333333334% +} + +.col-xs-pull-9 { + right: 75% +} + +.col-xs-pull-8 { + right: 66.66666666666666% +} + +.col-xs-pull-7 { + right: 58.333333333333336% +} + +.col-xs-pull-6 { + right: 50% +} + +.col-xs-pull-5 { + right: 41.66666666666667% +} + +.col-xs-pull-4 { + right: 33.33333333333333% +} + +.col-xs-pull-3 { + right: 25% +} + +.col-xs-pull-2 { + right: 16.666666666666664% +} + +.col-xs-pull-1 { + right: 8.333333333333332% +} + +.col-xs-pull-0 { + right: auto +} + +.col-xs-push-12 { + left: 100% +} + +.col-xs-push-11 { + left: 91.66666666666666% +} + +.col-xs-push-10 { + left: 83.33333333333334% +} + +.col-xs-push-9 { + left: 75% +} + +.col-xs-push-8 { + left: 66.66666666666666% +} + +.col-xs-push-7 { + left: 58.333333333333336% +} + +.col-xs-push-6 { + left: 50% +} + +.col-xs-push-5 { + left: 41.66666666666667% +} + +.col-xs-push-4 { + left: 33.33333333333333% +} + +.col-xs-push-3 { + left: 25% +} + +.col-xs-push-2 { + left: 16.666666666666664% +} + +.col-xs-push-1 { + left: 8.333333333333332% +} + +.col-xs-push-0 { + left: auto +} + +.col-xs-offset-12 { + margin-left: 100% +} + +.col-xs-offset-11 { + margin-left: 91.66666666666666% +} + +.col-xs-offset-10 { + margin-left: 83.33333333333334% +} + +.col-xs-offset-9 { + margin-left: 75% +} + +.col-xs-offset-8 { + margin-left: 66.66666666666666% +} + +.col-xs-offset-7 { + margin-left: 58.333333333333336% +} + +.col-xs-offset-6 { + margin-left: 50% +} + +.col-xs-offset-5 { + margin-left: 41.66666666666667% +} + +.col-xs-offset-4 { + margin-left: 33.33333333333333% +} + +.col-xs-offset-3 { + margin-left: 25% +} + +.col-xs-offset-2 { + margin-left: 16.666666666666664% +} + +.col-xs-offset-1 { + margin-left: 8.333333333333332% +} + +.col-xs-offset-0 { + margin-left: 0 +} + +@media (min-width:768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left + } + + .col-sm-12 { + width: 100% + } + + .col-sm-11 { + width: 91.66666666666666% + } + + .col-sm-10 { + width: 83.33333333333334% + } + + .col-sm-9 { + width: 75% + } + + .col-sm-8 { + width: 66.66666666666666% + } + + .col-sm-7 { + width: 58.333333333333336% + } + + .col-sm-6 { + width: 50% + } + + .col-sm-5 { + width: 41.66666666666667% + } + + .col-sm-4 { + width: 33.33333333333333% + } + + .col-sm-3 { + width: 25% + } + + .col-sm-2 { + width: 16.666666666666664% + } + + .col-sm-1 { + width: 8.333333333333332% + } + + .col-sm-pull-12 { + right: 100% + } + + .col-sm-pull-11 { + right: 91.66666666666666% + } + + .col-sm-pull-10 { + right: 83.33333333333334% + } + + .col-sm-pull-9 { + right: 75% + } + + .col-sm-pull-8 { + right: 66.66666666666666% + } + + .col-sm-pull-7 { + right: 58.333333333333336% + } + + .col-sm-pull-6 { + right: 50% + } + + .col-sm-pull-5 { + right: 41.66666666666667% + } + + .col-sm-pull-4 { + right: 33.33333333333333% + } + + .col-sm-pull-3 { + right: 25% + } + + .col-sm-pull-2 { + right: 16.666666666666664% + } + + .col-sm-pull-1 { + right: 8.333333333333332% + } + + .col-sm-pull-0 { + right: auto + } + + .col-sm-push-12 { + left: 100% + } + + .col-sm-push-11 { + left: 91.66666666666666% + } + + .col-sm-push-10 { + left: 83.33333333333334% + } + + .col-sm-push-9 { + left: 75% + } + + .col-sm-push-8 { + left: 66.66666666666666% + } + + .col-sm-push-7 { + left: 58.333333333333336% + } + + .col-sm-push-6 { + left: 50% + } + + .col-sm-push-5 { + left: 41.66666666666667% + } + + .col-sm-push-4 { + left: 33.33333333333333% + } + + .col-sm-push-3 { + left: 25% + } + + .col-sm-push-2 { + left: 16.666666666666664% + } + + .col-sm-push-1 { + left: 8.333333333333332% + } + + .col-sm-push-0 { + left: auto + } + + .col-sm-offset-12 { + margin-left: 100% + } + + .col-sm-offset-11 { + margin-left: 91.66666666666666% + } + + .col-sm-offset-10 { + margin-left: 83.33333333333334% + } + + .col-sm-offset-9 { + margin-left: 75% + } + + .col-sm-offset-8 { + margin-left: 66.66666666666666% + } + + .col-sm-offset-7 { + margin-left: 58.333333333333336% + } + + .col-sm-offset-6 { + margin-left: 50% + } + + .col-sm-offset-5 { + margin-left: 41.66666666666667% + } + + .col-sm-offset-4 { + margin-left: 33.33333333333333% + } + + .col-sm-offset-3 { + margin-left: 25% + } + + .col-sm-offset-2 { + margin-left: 16.666666666666664% + } + + .col-sm-offset-1 { + margin-left: 8.333333333333332% + } + + .col-sm-offset-0 { + margin-left: 0 + } +} + +@media (min-width:992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left + } + + .col-md-12 { + width: 100% + } + + .col-md-11 { + width: 91.66666666666666% + } + + .col-md-10 { + width: 83.33333333333334% + } + + .col-md-9 { + width: 75% + } + + .col-md-8 { + width: 66.66666666666666% + } + + .col-md-7 { + width: 58.333333333333336% + } + + .col-md-6 { + width: 50% + } + + .col-md-5 { + width: 41.66666666666667% + } + + .col-md-4 { + width: 33.33333333333333% + } + + .col-md-3 { + width: 25% + } + + .col-md-2 { + width: 16.666666666666664% + } + + .col-md-1 { + width: 8.333333333333332% + } + + .col-md-pull-12 { + right: 100% + } + + .col-md-pull-11 { + right: 91.66666666666666% + } + + .col-md-pull-10 { + right: 83.33333333333334% + } + + .col-md-pull-9 { + right: 75% + } + + .col-md-pull-8 { + right: 66.66666666666666% + } + + .col-md-pull-7 { + right: 58.333333333333336% + } + + .col-md-pull-6 { + right: 50% + } + + .col-md-pull-5 { + right: 41.66666666666667% + } + + .col-md-pull-4 { + right: 33.33333333333333% + } + + .col-md-pull-3 { + right: 25% + } + + .col-md-pull-2 { + right: 16.666666666666664% + } + + .col-md-pull-1 { + right: 8.333333333333332% + } + + .col-md-pull-0 { + right: auto + } + + .col-md-push-12 { + left: 100% + } + + .col-md-push-11 { + left: 91.66666666666666% + } + + .col-md-push-10 { + left: 83.33333333333334% + } + + .col-md-push-9 { + left: 75% + } + + .col-md-push-8 { + left: 66.66666666666666% + } + + .col-md-push-7 { + left: 58.333333333333336% + } + + .col-md-push-6 { + left: 50% + } + + .col-md-push-5 { + left: 41.66666666666667% + } + + .col-md-push-4 { + left: 33.33333333333333% + } + + .col-md-push-3 { + left: 25% + } + + .col-md-push-2 { + left: 16.666666666666664% + } + + .col-md-push-1 { + left: 8.333333333333332% + } + + .col-md-push-0 { + left: auto + } + + .col-md-offset-12 { + margin-left: 100% + } + + .col-md-offset-11 { + margin-left: 91.66666666666666% + } + + .col-md-offset-10 { + margin-left: 83.33333333333334% + } + + .col-md-offset-9 { + margin-left: 75% + } + + .col-md-offset-8 { + margin-left: 66.66666666666666% + } + + .col-md-offset-7 { + margin-left: 58.333333333333336% + } + + .col-md-offset-6 { + margin-left: 50% + } + + .col-md-offset-5 { + margin-left: 41.66666666666667% + } + + .col-md-offset-4 { + margin-left: 33.33333333333333% + } + + .col-md-offset-3 { + margin-left: 25% + } + + .col-md-offset-2 { + margin-left: 16.666666666666664% + } + + .col-md-offset-1 { + margin-left: 8.333333333333332% + } + + .col-md-offset-0 { + margin-left: 0 + } +} + +@media (min-width:1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left + } + + .col-lg-12 { + width: 100% + } + + .col-lg-11 { + width: 91.66666666666666% + } + + .col-lg-10 { + width: 83.33333333333334% + } + + .col-lg-9 { + width: 75% + } + + .col-lg-8 { + width: 66.66666666666666% + } + + .col-lg-7 { + width: 58.333333333333336% + } + + .col-lg-6 { + width: 50% + } + + .col-lg-5 { + width: 41.66666666666667% + } + + .col-lg-4 { + width: 33.33333333333333% + } + + .col-lg-3 { + width: 25% + } + + .col-lg-2 { + width: 16.666666666666664% + } + + .col-lg-1 { + width: 8.333333333333332% + } + + .col-lg-pull-12 { + right: 100% + } + + .col-lg-pull-11 { + right: 91.66666666666666% + } + + .col-lg-pull-10 { + right: 83.33333333333334% + } + + .col-lg-pull-9 { + right: 75% + } + + .col-lg-pull-8 { + right: 66.66666666666666% + } + + .col-lg-pull-7 { + right: 58.333333333333336% + } + + .col-lg-pull-6 { + right: 50% + } + + .col-lg-pull-5 { + right: 41.66666666666667% + } + + .col-lg-pull-4 { + right: 33.33333333333333% + } + + .col-lg-pull-3 { + right: 25% + } + + .col-lg-pull-2 { + right: 16.666666666666664% + } + + .col-lg-pull-1 { + right: 8.333333333333332% + } + + .col-lg-pull-0 { + right: auto + } + + .col-lg-push-12 { + left: 100% + } + + .col-lg-push-11 { + left: 91.66666666666666% + } + + .col-lg-push-10 { + left: 83.33333333333334% + } + + .col-lg-push-9 { + left: 75% + } + + .col-lg-push-8 { + left: 66.66666666666666% + } + + .col-lg-push-7 { + left: 58.333333333333336% + } + + .col-lg-push-6 { + left: 50% + } + + .col-lg-push-5 { + left: 41.66666666666667% + } + + .col-lg-push-4 { + left: 33.33333333333333% + } + + .col-lg-push-3 { + left: 25% + } + + .col-lg-push-2 { + left: 16.666666666666664% + } + + .col-lg-push-1 { + left: 8.333333333333332% + } + + .col-lg-push-0 { + left: auto + } + + .col-lg-offset-12 { + margin-left: 100% + } + + .col-lg-offset-11 { + margin-left: 91.66666666666666% + } + + .col-lg-offset-10 { + margin-left: 83.33333333333334% + } + + .col-lg-offset-9 { + margin-left: 75% + } + + .col-lg-offset-8 { + margin-left: 66.66666666666666% + } + + .col-lg-offset-7 { + margin-left: 58.333333333333336% + } + + .col-lg-offset-6 { + margin-left: 50% + } + + .col-lg-offset-5 { + margin-left: 41.66666666666667% + } + + .col-lg-offset-4 { + margin-left: 33.33333333333333% + } + + .col-lg-offset-3 { + margin-left: 25% + } + + .col-lg-offset-2 { + margin-left: 16.666666666666664% + } + + .col-lg-offset-1 { + margin-left: 8.333333333333332% + } + + .col-lg-offset-0 { + margin-left: 0 + } +} + +table { + background-color: transparent +} + +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #030; + text-align: left +} + +th { + text-align: left +} + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px +} + +.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #444 +} + +.table>thead>tr>th { + vertical-align: bottom; + border-bottom: 2px solid #444 +} + +.table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>th, .table>caption+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>td, .table>thead:first-child>tr:first-child>td { + border-top: 0 +} + +.table>tbody+tbody { + border-top: 2px solid #444 +} + +.table .table { + background-color: #222 +} + +.table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td { + padding: 5px +} + +.table-bordered { + border: 1px solid #444 +} + +.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td { + border: 1px solid #444 +} + +.table-bordered>thead>tr>th, .table-bordered>thead>tr>td { + border-bottom-width: 2px +} + +.table-striped>tbody>tr:nth-of-type(odd) { + background-color: #080808 +} + +.table-hover>tbody>tr:hover { + background-color: #030 +} + +table col[class*="col-"] { + position: static; + float: none; + display: table-column +} + +table td[class*="col-"], table th[class*="col-"] { + position: static; + float: none; + display: table-cell +} + +.table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th { + background-color: #030 +} + +.table-hover>tbody>tr>td.active:hover, .table-hover>tbody>tr>th.active:hover, .table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr:hover>.active, .table-hover>tbody>tr.active:hover>th { + background-color: #001900 +} + +.table>thead>tr>td.success, .table>tbody>tr>td.success, .table>tfoot>tr>td.success, .table>thead>tr>th.success, .table>tbody>tr>th.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>tbody>tr.success>td, .table>tfoot>tr.success>td, .table>thead>tr.success>th, .table>tbody>tr.success>th, .table>tfoot>tr.success>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.success:hover, .table-hover>tbody>tr>th.success:hover, .table-hover>tbody>tr.success:hover>td, .table-hover>tbody>tr:hover>.success, .table-hover>tbody>tr.success:hover>th { + background-color: #2f2f2f +} + +.table>thead>tr>td.info, .table>tbody>tr>td.info, .table>tfoot>tr>td.info, .table>thead>tr>th.info, .table>tbody>tr>th.info, .table>tfoot>tr>th.info, .table>thead>tr.info>td, .table>tbody>tr.info>td, .table>tfoot>tr.info>td, .table>thead>tr.info>th, .table>tbody>tr.info>th, .table>tfoot>tr.info>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.info:hover, .table-hover>tbody>tr>th.info:hover, .table-hover>tbody>tr.info:hover>td, .table-hover>tbody>tr:hover>.info, .table-hover>tbody>tr.info:hover>th { + background-color: #2f2f2f +} + +.table>thead>tr>td.warning, .table>tbody>tr>td.warning, .table>tfoot>tr>td.warning, .table>thead>tr>th.warning, .table>tbody>tr>th.warning, .table>tfoot>tr>th.warning, .table>thead>tr.warning>td, .table>tbody>tr.warning>td, .table>tfoot>tr.warning>td, .table>thead>tr.warning>th, .table>tbody>tr.warning>th, .table>tfoot>tr.warning>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.warning:hover, .table-hover>tbody>tr>th.warning:hover, .table-hover>tbody>tr.warning:hover>td, .table-hover>tbody>tr:hover>.warning, .table-hover>tbody>tr.warning:hover>th { + background-color: #2f2f2f +} + +.table>thead>tr>td.danger, .table>tbody>tr>td.danger, .table>tfoot>tr>td.danger, .table>thead>tr>th.danger, .table>tbody>tr>th.danger, .table>tfoot>tr>th.danger, .table>thead>tr.danger>td, .table>tbody>tr.danger>td, .table>tfoot>tr.danger>td, .table>thead>tr.danger>th, .table>tbody>tr.danger>th, .table>tfoot>tr.danger>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.danger:hover, .table-hover>tbody>tr>th.danger:hover, .table-hover>tbody>tr.danger:hover>td, .table-hover>tbody>tr:hover>.danger, .table-hover>tbody>tr.danger:hover>th { + background-color: #2f2f2f +} + +.table-responsive { + overflow-x: auto; + min-height: .01% +} + +@media screen and (max-width:767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #444 + } + + .table-responsive>.table { + margin-bottom: 0 + } + + .table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td { + white-space: nowrap + } + + .table-responsive>.table-bordered { + border: 0 + } + + .table-responsive>.table-bordered>thead>tr>th:first-child, .table-responsive>.table-bordered>tbody>tr>th:first-child, .table-responsive>.table-bordered>tfoot>tr>th:first-child, .table-responsive>.table-bordered>thead>tr>td:first-child, .table-responsive>.table-bordered>tbody>tr>td:first-child, .table-responsive>.table-bordered>tfoot>tr>td:first-child { + border-left: 0 + } + + .table-responsive>.table-bordered>thead>tr>th:last-child, .table-responsive>.table-bordered>tbody>tr>th:last-child, .table-responsive>.table-bordered>tfoot>tr>th:last-child, .table-responsive>.table-bordered>thead>tr>td:last-child, .table-responsive>.table-bordered>tbody>tr>td:last-child, .table-responsive>.table-bordered>tfoot>tr>td:last-child { + border-right: 0 + } + + .table-responsive>.table-bordered>tbody>tr:last-child>th, .table-responsive>.table-bordered>tfoot>tr:last-child>th, .table-responsive>.table-bordered>tbody>tr:last-child>td, .table-responsive>.table-bordered>tfoot>tr:last-child>td { + border-bottom: 0 + } +} + +fieldset { + padding: 0; + margin: 0; + border: 0; + min-width: 0 +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #0c0; + border: 0; + border-bottom: 1px solid #e5e5e5 +} + +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold +} + +input[type="search"] { + box-sizing: border-box +} + +input[type="radio"], input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal +} + +input[type="file"] { + display: block +} + +input[type="range"] { + display: block; + width: 100% +} + +select[multiple], select[size] { + height: auto +} + +input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.428571429; + color: #090 +} + +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #090; + background-color: #000; + background-image: none; + border: 1px solid #444; + border-radius: 0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s +} + +.form-control:focus { + border-color: #0f0; + outline: 0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6) +} + +.form-control::-moz-placeholder { + color: #060; + opacity: 1 +} + +.form-control:-ms-input-placeholder { + color: #060 +} + +.form-control::-webkit-input-placeholder { + color: #060 +} + +.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { + background-color: #030; + opacity: 1 +} + +.form-control[disabled], fieldset[disabled] .form-control { + cursor: not-allowed +} + +textarea.form-control { + height: auto +} + +input[type="search"] { + appearance: none +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { + line-height: 34px + } + + input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { + line-height: 30px + } + + input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { + line-height: 45px + } +} + +.form-group { + margin-bottom: 15px +} + +.radio, .checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px +} + +.radio label, .checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer +} + +.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { + position: absolute; + margin-left: -20px; + margin-top: 4px \9 +} + +.radio+.radio, .checkbox+.checkbox { + margin-top: -5px +} + +.radio-inline, .checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + vertical-align: middle; + font-weight: normal; + cursor: pointer +} + +.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline { + margin-top: 0; + margin-left: 10px +} + +input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed +} + +.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { + cursor: not-allowed +} + +.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { + cursor: not-allowed +} + +.form-control-static { + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; + min-height: 34px +} + +.form-control-static.input-lg, .form-control-static.input-sm { + padding-left: 0; + padding-right: 0 +} + +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +select.input-sm { + height: 30px; + line-height: 30px +} + +textarea.input-sm, select[multiple].input-sm { + height: auto +} + +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +select.form-group-sm .form-control { + height: 30px; + line-height: 30px +} + +textarea.form-group-sm .form-control, select[multiple].form-group-sm .form-control { + height: auto +} + +.form-group-sm .form-control-static { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + min-height: 32px +} + +.input-lg { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +select.input-lg { + height: 45px; + line-height: 45px +} + +textarea.input-lg, select[multiple].input-lg { + height: auto +} + +.form-group-lg .form-control { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +select.form-group-lg .form-control { + height: 45px; + line-height: 45px +} + +textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-control { + height: auto +} + +.form-group-lg .form-control-static { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + min-height: 38px +} + +.has-feedback { + position: relative +} + +.has-feedback .form-control { + padding-right: 42.5px +} + +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none +} + +.input-lg+.form-control-feedback { + width: 45px; + height: 45px; + line-height: 45px +} + +.input-sm+.form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px +} + +.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { + color: #0d0 +} + +.has-success .form-control { + border-color: #0d0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) +} + +.has-success .form-control:focus { + border-color: #0a0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4 +} + +.has-success .input-group-addon { + color: #0d0; + border-color: #0d0; + background-color: #3c3c3c +} + +.has-success .form-control-feedback { + color: #0d0 +} + +.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { + color: #f4ff00 +} + +.has-warning .form-control { + border-color: #f4ff00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) +} + +.has-warning .form-control:focus { + border-color: #c3cc00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66 +} + +.has-warning .input-group-addon { + color: #f4ff00; + border-color: #f4ff00; + background-color: #3c3c3c +} + +.has-warning .form-control-feedback { + color: #f4ff00 +} + +.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { + color: #d00 +} + +.has-error .form-control { + border-color: #d00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) +} + +.has-error .form-control:focus { + border-color: #a00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44 +} + +.has-error .input-group-addon { + color: #d00; + border-color: #d00; + background-color: #3c3c3c +} + +.has-error .form-control-feedback { + color: #d00 +} + +.has-feedback label~.form-control-feedback { + top: 25px +} + +.has-feedback label.sr-only~.form-control-feedback { + top: 0 +} + +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #4dff4d +} + +@media (min-width:768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } + + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + + .form-inline .form-control-static { + display: inline-block + } + + .form-inline .input-group { + display: inline-table; + vertical-align: middle + } + + .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { + width: auto + } + + .form-inline .input-group>.form-control { + width: 100% + } + + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle + } + + .form-inline .radio, .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } + + .form-inline .radio label, .form-inline .checkbox label { + padding-left: 0 + } + + .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0 + } + + .form-inline .has-feedback .form-control-feedback { + top: 0 + } +} + +.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { + margin-top: 0; + margin-bottom: 0; + padding-top: 7px +} + +.form-horizontal .radio, .form-horizontal .checkbox { + min-height: 27px +} + +.form-horizontal .form-group { + margin-left: -15px; + margin-right: -15px +} + +@media (min-width:768px) { + .form-horizontal .control-label { + text-align: right; + margin-bottom: 0; + padding-top: 7px + } +} + +.form-horizontal .has-feedback .form-control-feedback { + right: 15px +} + +@media (min-width:768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.3px + } +} + +@media (min-width:768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px + } +} + +.btn { + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + vertical-align: middle; + touch-action: manipulation; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + white-space: nowrap; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + border-radius: 0; + user-select: none +} + +.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +.btn:hover, .btn:focus, .btn.focus { + color: #0f0; + text-decoration: none +} + +.btn:active, .btn.active { + outline: 0; + background-image: none; + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) +} + +.btn.disabled, .btn[disabled], fieldset[disabled] .btn { + cursor: not-allowed; + pointer-events: none; + opacity: .65; + filter: alpha(opacity=65); + box-shadow: none +} + +.btn-default { + color: #0f0; + background-color: #222; + border-color: #111 +} + +.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default { + color: #0f0; + background-color: #080808; + border-color: #000 +} + +.btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default { + background-image: none +} + +.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { + background-color: #222; + border-color: #111 +} + +.btn-default .badge { + color: #222; + background-color: #0f0 +} + +.btn-primary { + color: #222; + background-color: #0f0; + border-color: #111 +} + +.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary { + color: #222; + background-color: #0c0; + border-color: #000 +} + +.btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary { + background-image: none +} + +.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { + background-color: #0f0; + border-color: #111 +} + +.btn-primary .badge { + color: #0f0; + background-color: #222 +} + +.btn-success { + color: #222; + background-color: #090; + border-color: #111 +} + +.btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success { + color: #222; + background-color: #060; + border-color: #000 +} + +.btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success { + background-image: none +} + +.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { + background-color: #090; + border-color: #111 +} + +.btn-success .badge { + color: #090; + background-color: #222 +} + +.btn-info { + color: #222; + background-color: #36c; + border-color: #111 +} + +.btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { + color: #222; + background-color: #2952a3; + border-color: #000 +} + +.btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { + background-image: none +} + +.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { + background-color: #36c; + border-color: #111 +} + +.btn-info .badge { + color: #36c; + background-color: #222 +} + +.btn-warning { + color: #222; + background-color: #f4ff00; + border-color: #111 +} + +.btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning { + color: #222; + background-color: #c3cc00; + border-color: #000 +} + +.btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning { + background-image: none +} + +.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { + background-color: #f4ff00; + border-color: #111 +} + +.btn-warning .badge { + color: #f4ff00; + background-color: #222 +} + +.btn-danger { + color: #222; + background-color: #f00; + border-color: #111 +} + +.btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger { + color: #222; + background-color: #c00; + border-color: #000 +} + +.btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger { + background-image: none +} + +.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { + background-color: #f00; + border-color: #111 +} + +.btn-danger .badge { + color: #f00; + background-color: #222 +} + +.btn-link { + color: #0f0; + font-weight: normal; + border-radius: 0 +} + +.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { + background-color: transparent; + box-shadow: none +} + +.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { + border-color: transparent +} + +.btn-link:hover, .btn-link:focus { + color: #00b300; + text-decoration: underline; + background-color: transparent +} + +.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { + color: #030; + text-decoration: none +} + +.btn-lg, .btn-group-lg>.btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +.btn-sm, .btn-group-sm>.btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +.btn-xs, .btn-group-xs>.btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +.btn-block { + display: block; + width: 100% +} + +.btn-block+.btn-block { + margin-top: 5px +} + +input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { + width: 100% +} + +.fade { + opacity: 0; + transition: opacity .15s linear +} + +.fade.in { + opacity: 1 +} + +.collapse { + display: none +} + +.collapse.in { + display: block +} + +tr.collapse.in { + display: table-row +} + +tbody.collapse.in { + display: table-row-group +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition-property: height, visibility; + transition-duration: .35s; + transition-timing-function: ease +} + +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-right: 4px solid transparent; + border-left: 4px solid transparent +} + +.dropup, .dropdown { + position: relative +} + +.dropdown-toggle:focus { + outline: 0 +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + font-size: 14px; + text-align: left; + background-color: #3c3c3c; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box +} + +.dropdown-menu.pull-right { + right: 0; + left: auto +} + +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #333 +} + +.dropdown-menu>li>a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #0c0; + white-space: nowrap +} + +.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus { + text-decoration: none; + color: #222; + background-color: #0f0 +} + +.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus { + color: #222; + text-decoration: none; + outline: 0; + background-color: #0f0 +} + +.dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { + color: #030 +} + +.dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { + text-decoration: none; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + cursor: not-allowed +} + +.open>.dropdown-menu { + display: block +} + +.open>a { + outline: 0 +} + +.dropdown-menu-right { + left: auto; + right: 0 +} + +.dropdown-menu-left { + left: 0; + right: auto +} + +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #a2a2a2; + white-space: nowrap +} + +.dropdown-backdrop { + position: fixed; + left: 0; + right: 0; + bottom: 0; + top: 0; + z-index: 990 +} + +.pull-right>.dropdown-menu { + right: 0; + left: auto +} + +.dropup .caret, .navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid; + content: "" +} + +.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px +} + +@media (min-width:768px) { + .navbar-right .dropdown-menu { + left: auto; + right: 0 + } + + .navbar-right .dropdown-menu-left { + left: 0; + right: auto + } +} + +.btn-group, .btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle +} + +.btn-group>.btn, .btn-group-vertical>.btn { + position: relative; + float: left +} + +.btn-group>.btn:hover, .btn-group-vertical>.btn:hover, .btn-group>.btn:focus, .btn-group-vertical>.btn:focus, .btn-group>.btn:active, .btn-group-vertical>.btn:active, .btn-group>.btn.active, .btn-group-vertical>.btn.active { + z-index: 2 +} + +.btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group { + margin-left: -1px +} + +.btn-toolbar { + margin-left: -5px +} + +.btn-toolbar .btn-group, .btn-toolbar .input-group { + float: left +} + +.btn-toolbar>.btn, .btn-toolbar>.btn-group, .btn-toolbar>.input-group { + margin-left: 5px +} + +.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0 +} + +.btn-group>.btn:first-child { + margin-left: 0 +} + +.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.btn-group>.btn-group { + float: left +} + +.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { + border-radius: 0 +} + +.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child, .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { + outline: 0 +} + +.btn-group>.btn+.dropdown-toggle { + padding-left: 8px; + padding-right: 8px +} + +.btn-group>.btn-lg+.dropdown-toggle { + padding-left: 12px; + padding-right: 12px +} + +.btn-group.open .dropdown-toggle { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) +} + +.btn-group.open .dropdown-toggle.btn-link { + box-shadow: none +} + +.btn .caret { + margin-left: 0 +} + +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0 +} + +.dropup .btn-lg .caret { + border-width: 0 5px 5px +} + +.btn-group-vertical>.btn, .btn-group-vertical>.btn-group, .btn-group-vertical>.btn-group>.btn { + display: block; + float: none; + width: 100%; + max-width: 100% +} + +.btn-group-vertical>.btn-group>.btn { + float: none +} + +.btn-group-vertical>.btn+.btn, .btn-group-vertical>.btn+.btn-group, .btn-group-vertical>.btn-group+.btn, .btn-group-vertical>.btn-group+.btn-group { + margin-top: -1px; + margin-left: 0 +} + +.btn-group-vertical>.btn:not(:first-child):not(:last-child) { + border-radius: 0 +} + +.btn-group-vertical>.btn:first-child:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group-vertical>.btn:last-child:not(:first-child) { + border-bottom-left-radius: 0; + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { + border-radius: 0 +} + +.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate +} + +.btn-group-justified>.btn, .btn-group-justified>.btn-group { + float: none; + display: table-cell; + width: 1% +} + +.btn-group-justified>.btn-group .btn { + width: 100% +} + +.btn-group-justified>.btn-group .dropdown-menu { + left: auto +} + +[data-toggle="buttons"]>.btn input[type="radio"], [data-toggle="buttons"]>.btn-group>.btn input[type="radio"], [data-toggle="buttons"]>.btn input[type="checkbox"], [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none +} + +.input-group { + position: relative; + display: table; + border-collapse: separate +} + +.input-group[class*="col-"] { + float: none; + padding-left: 0; + padding-right: 0 +} + +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0 +} + +.input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +select.input-group-lg>.form-control, select.input-group-lg>.input-group-addon, select.input-group-lg>.input-group-btn>.btn { + height: 45px; + line-height: 45px +} + +textarea.input-group-lg>.form-control, textarea.input-group-lg>.input-group-addon, textarea.input-group-lg>.input-group-btn>.btn, select[multiple].input-group-lg>.form-control, select[multiple].input-group-lg>.input-group-addon, select[multiple].input-group-lg>.input-group-btn>.btn { + height: auto +} + +.input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +select.input-group-sm>.form-control, select.input-group-sm>.input-group-addon, select.input-group-sm>.input-group-btn>.btn { + height: 30px; + line-height: 30px +} + +textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addon, textarea.input-group-sm>.input-group-btn>.btn, select[multiple].input-group-sm>.form-control, select[multiple].input-group-sm>.input-group-addon, select[multiple].input-group-sm>.input-group-btn>.btn { + height: auto +} + +.input-group-addon, .input-group-btn, .input-group .form-control { + display: table-cell +} + +.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0 +} + +.input-group-addon, .input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle +} + +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #090; + text-align: center; + background-color: #222; + border: 1px solid #444; + border-radius: 0 +} + +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 0 +} + +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 0 +} + +.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { + margin-top: 0 +} + +.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child>.btn-group:not(:last-child)>.btn { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.input-group-addon:first-child { + border-right: 0 +} + +.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:first-child>.btn-group:not(:first-child)>.btn { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.input-group-addon:last-child { + border-left: 0 +} + +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap +} + +.input-group-btn>.btn { + position: relative +} + +.input-group-btn>.btn+.btn { + margin-left: -1px +} + +.input-group-btn>.btn:hover, .input-group-btn>.btn:focus, .input-group-btn>.btn:active { + z-index: 2 +} + +.input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group { + margin-right: -1px +} + +.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { + margin-left: -1px +} + +.nav { + margin-bottom: 0; + padding-left: 0; + list-style: none +} + +.nav>li { + position: relative; + display: block +} + +.nav>li>a { + position: relative; + display: block; + padding: 10px 15px +} + +.nav>li>a:hover, .nav>li>a:focus { + text-decoration: none; + background-color: #030 +} + +.nav>li.disabled>a { + color: #030 +} + +.nav>li.disabled>a:hover, .nav>li.disabled>a:focus { + color: #030; + text-decoration: none; + background-color: transparent; + cursor: not-allowed +} + +.nav .open>a, .nav .open>a:hover, .nav .open>a:focus { + background-color: #030; + border-color: #0f0 +} + +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5 +} + +.nav>li>a>img { + max-width: none +} + +.nav-tabs { + border-bottom: 1px solid #444 +} + +.nav-tabs>li { + float: left; + margin-bottom: -1px +} + +.nav-tabs>li>a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 0 0 0 0 +} + +.nav-tabs>li>a:hover { + border-color: #444 #444 #444 +} + +.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { + color: #090; + background-color: #333; + border: 1px solid #222; + border-bottom-color: transparent; + cursor: default +} + +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0 +} + +.nav-tabs.nav-justified>li { + float: none +} + +.nav-tabs.nav-justified>li>a { + text-align: center; + margin-bottom: 5px +} + +.nav-tabs.nav-justified>.dropdown .dropdown-menu { + top: auto; + left: auto +} + +@media (min-width:768px) { + .nav-tabs.nav-justified>li { + display: table-cell; + width: 1% + } + + .nav-tabs.nav-justified>li>a { + margin-bottom: 0 + } +} + +.nav-tabs.nav-justified>li>a { + margin-right: 0; + border-radius: 0 +} + +.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { + border: 1px solid #ddd +} + +@media (min-width:768px) { + .nav-tabs.nav-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 0 0 0 0 + } + + .nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { + border-bottom-color: #222 + } +} + +.nav-pills>li { + float: left +} + +.nav-pills>li>a { + border-radius: 0 +} + +.nav-pills>li+li { + margin-left: 2px +} + +.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus { + color: #fff; + background-color: #0f0 +} + +.nav-stacked>li { + float: none +} + +.nav-stacked>li+li { + margin-top: 2px; + margin-left: 0 +} + +.nav-justified { + width: 100% +} + +.nav-justified>li { + float: none +} + +.nav-justified>li>a { + text-align: center; + margin-bottom: 5px +} + +.nav-justified>.dropdown .dropdown-menu { + top: auto; + left: auto +} + +@media (min-width:768px) { + .nav-justified>li { + display: table-cell; + width: 1% + } + + .nav-justified>li>a { + margin-bottom: 0 + } +} + +.nav-tabs-justified { + border-bottom: 0 +} + +.nav-tabs-justified>li>a { + margin-right: 0; + border-radius: 0 +} + +.nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { + border: 1px solid #ddd +} + +@media (min-width:768px) { + .nav-tabs-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 0 0 0 0 + } + + .nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { + border-bottom-color: #222 + } +} + +.tab-content>.tab-pane { + display: none +} + +.tab-content>.active { + display: block +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent +} + +@media (min-width:768px) { + .navbar { + border-radius: 0 + } +} + +@media (min-width:768px) { + .navbar-header { + float: left + } +} + +.navbar-collapse { + overflow-x: visible; + padding-right: 15px; + padding-left: 15px; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch +} + +.navbar-collapse.in { + overflow-y: auto +} + +@media (min-width:768px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none + } + + .navbar-collapse.collapse { + display: block; + height: auto; + padding-bottom: 0; + overflow: visible + } + + .navbar-collapse.in { + overflow-y: visible + } + + .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + padding-left: 0; + padding-right: 0 + } +} + +.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + max-height: 340px +} + +@media (max-device-width:480px) and (orientation:landscape) { + .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + max-height: 200px + } +} + +.container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { + margin-right: -15px; + margin-left: -15px +} + +@media (min-width:768px) { + .container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { + margin-right: 0; + margin-left: 0 + } +} + +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px +} + +@media (min-width:768px) { + .navbar-static-top { + border-radius: 0 + } +} + +.navbar-fixed-top, .navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030 +} + +@media (min-width:768px) { + .navbar-fixed-top, .navbar-fixed-bottom { + border-radius: 0 + } +} + +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px +} + +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0 +} + +.navbar-brand { + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; + height: 50px +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none +} + +.navbar-brand>img { + display: block +} + +@media (min-width:768px) { + .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand { + margin-left: -15px + } +} + +.navbar-toggle { + position: relative; + float: right; + margin-right: 15px; + padding: 9px 10px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 0 +} + +.navbar-toggle:focus { + outline: 0 +} + +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px +} + +.navbar-toggle .icon-bar+.icon-bar { + margin-top: 4px +} + +@media (min-width:768px) { + .navbar-toggle { + display: none + } +} + +.navbar-nav { + margin: 7.5px -15px +} + +.navbar-nav>li>a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px +} + +@media (max-width:767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none + } + + .navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px + } + + .navbar-nav .open .dropdown-menu>li>a { + line-height: 20px + } + + .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-nav .open .dropdown-menu>li>a:focus { + background-image: none + } +} + +@media (min-width:768px) { + .navbar-nav { + float: left; + margin: 0 + } + + .navbar-nav>li { + float: left + } + + .navbar-nav>li>a { + padding-top: 15px; + padding-bottom: 15px + } +} + +.navbar-form { + margin-left: -15px; + margin-right: -15px; + padding: 10px 15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px +} + +@media (min-width:768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } + + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + + .navbar-form .form-control-static { + display: inline-block + } + + .navbar-form .input-group { + display: inline-table; + vertical-align: middle + } + + .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { + width: auto + } + + .navbar-form .input-group>.form-control { + width: 100% + } + + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle + } + + .navbar-form .radio, .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } + + .navbar-form .radio label, .navbar-form .checkbox label { + padding-left: 0 + } + + .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0 + } + + .navbar-form .has-feedback .form-control-feedback { + top: 0 + } +} + +@media (max-width:767px) { + .navbar-form .form-group { + margin-bottom: 5px + } + + .navbar-form .form-group:last-child { + margin-bottom: 0 + } +} + +@media (min-width:768px) { + .navbar-form { + width: auto; + border: 0; + margin-left: 0; + margin-right: 0; + padding-top: 0; + padding-bottom: 0; + box-shadow: none + } +} + +.navbar-nav>li>.dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { + margin-bottom: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px +} + +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px +} + +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px +} + +.navbar-text { + margin-top: 15px; + margin-bottom: 15px +} + +@media (min-width:768px) { + .navbar-text { + float: left; + margin-left: 15px; + margin-right: 15px + } +} + +@media (min-width:768px) { + .navbar-left { + float: left + } + + .navbar-right { + float: right; + margin-right: -15px + } + + .navbar-right~.navbar-right { + margin-right: 0 + } +} + +.navbar-default { + background-color: #080808; + border-color: #000 +} + +.navbar-default .navbar-brand { + color: #0f0 +} + +.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { + color: #0c0; + background-color: transparent +} + +.navbar-default .navbar-text { + color: #0f0 +} + +.navbar-default .navbar-nav>li>a { + color: #0f0 +} + +.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus { + color: #090; + background-color: #222 +} + +.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus { + color: #999; + background-color: #000 +} + +.navbar-default .navbar-nav>.disabled>a, .navbar-default .navbar-nav>.disabled>a:hover, .navbar-default .navbar-nav>.disabled>a:focus { + color: #ccc; + background-color: transparent +} + +.navbar-default .navbar-toggle { + border-color: #ddd +} + +.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background-color: #ddd +} + +.navbar-default .navbar-toggle .icon-bar { + background-color: #888 +} + +.navbar-default .navbar-collapse, .navbar-default .navbar-form { + border-color: #000 +} + +.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { + background-color: #000; + color: #999 +} + +@media (max-width:767px) { + .navbar-default .navbar-nav .open .dropdown-menu>li>a { + color: #0f0 + } + + .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { + color: #090; + background-color: #222 + } + + .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { + color: #999; + background-color: #000 + } + + .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { + color: #ccc; + background-color: transparent + } +} + +.navbar-default .navbar-link { + color: #0f0 +} + +.navbar-default .navbar-link:hover { + color: #090 +} + +.navbar-default .btn-link { + color: #0f0 +} + +.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { + color: #090 +} + +.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc +} + +.navbar-inverse { + background-color: #222; + border-color: #080808 +} + +.navbar-inverse .navbar-brand { + color: #007f00 +} + +.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent +} + +.navbar-inverse .navbar-text { + color: #007f00 +} + +.navbar-inverse .navbar-nav>li>a { + color: #007f00 +} + +.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus { + color: #fff; + background-color: transparent +} + +.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:hover, .navbar-inverse .navbar-nav>.active>a:focus { + color: #fff; + background-color: #080808 +} + +.navbar-inverse .navbar-nav>.disabled>a, .navbar-inverse .navbar-nav>.disabled>a:hover, .navbar-inverse .navbar-nav>.disabled>a:focus { + color: #444; + background-color: transparent +} + +.navbar-inverse .navbar-toggle { + border-color: #333 +} + +.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { + background-color: #333 +} + +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff +} + +.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { + border-color: #101010 +} + +.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus { + background-color: #080808; + color: #fff +} + +@media (max-width:767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { + border-color: #080808 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { + color: #007f00 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { + color: #fff; + background-color: transparent + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { + color: #fff; + background-color: #080808 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { + color: #444; + background-color: transparent + } +} + +.navbar-inverse .navbar-link { + color: #007f00 +} + +.navbar-inverse .navbar-link:hover { + color: #fff +} + +.navbar-inverse .btn-link { + color: #007f00 +} + +.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { + color: #fff +} + +.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444 +} + +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #3c3c3c; + border-radius: 0 +} + +.breadcrumb>li { + display: inline-block +} + +.breadcrumb>li+li:before { + content: "/\00a0"; + padding: 0 5px; + color: #0f0 +} + +.breadcrumb>.active { + color: #090 +} + +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 0 +} + +.pagination>li { + display: inline +} + +.pagination>li>a, .pagination>li>span { + position: relative; + float: left; + padding: 6px 12px; + line-height: 1.428571429; + text-decoration: none; + color: #0f0; + background-color: #222; + border: 1px solid #444; + margin-left: -1px +} + +.pagination>li:first-child>a, .pagination>li:first-child>span { + margin-left: 0; + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.pagination>li:last-child>a, .pagination>li:last-child>span { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus { + color: #00b300; + background-color: #030; + border-color: #555 +} + +.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { + z-index: 2; + color: #222; + background-color: #0f0; + border-color: #0f0; + cursor: default +} + +.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus { + color: #3f3; + background-color: #3c3c3c; + border-color: #444; + cursor: not-allowed +} + +.pagination-lg>li>a, .pagination-lg>li>span { + padding: 10px 16px; + font-size: 18px +} + +.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.pagination-sm>li>a, .pagination-sm>li>span { + padding: 5px 10px; + font-size: 12px +} + +.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.pager { + padding-left: 0; + margin: 20px 0; + list-style: none; + text-align: center +} + +.pager li { + display: inline +} + +.pager li>a, .pager li>span { + display: inline-block; + padding: 5px 14px; + background-color: #222; + border: 1px solid #444; + border-radius: 0 +} + +.pager li>a:hover, .pager li>a:focus { + text-decoration: none; + background-color: #030 +} + +.pager .next>a, .pager .next>span { + float: right +} + +.pager .previous>a, .pager .previous>span { + float: left +} + +.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span { + color: #030; + background-color: #222; + cursor: not-allowed +} + +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #222; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em +} + +a.label:hover, a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer +} + +.label:empty { + display: none +} + +.btn .label { + position: relative; + top: -1px +} + +.label-default { + background-color: #030 +} + +.label-default[href]:hover, .label-default[href]:focus { + background-color: #000 +} + +.label-primary { + background-color: #0f0 +} + +.label-primary[href]:hover, .label-primary[href]:focus { + background-color: #0c0 +} + +.label-success { + background-color: #090 +} + +.label-success[href]:hover, .label-success[href]:focus { + background-color: #060 +} + +.label-info { + background-color: #36c +} + +.label-info[href]:hover, .label-info[href]:focus { + background-color: #2952a3 +} + +.label-warning { + background-color: #f4ff00 +} + +.label-warning[href]:hover, .label-warning[href]:focus { + background-color: #c3cc00 +} + +.label-danger { + background-color: #f00 +} + +.label-danger[href]:hover, .label-danger[href]:focus { + background-color: #c00 +} + +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + color: #0f0; + line-height: 1; + vertical-align: baseline; + white-space: nowrap; + text-align: center; + background-color: #222; + border-radius: 10px +} + +.badge:empty { + display: none +} + +.btn .badge { + position: relative; + top: -1px +} + +.btn-xs .badge, .btn-group-xs>.btn .badge { + top: 0; + padding: 1px 5px +} + +a.badge:hover, a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer +} + +.list-group-item.active>.badge, .nav-pills>.active>a>.badge { + color: #0f0; + background-color: #fff +} + +.list-group-item>.badge { + float: right +} + +.list-group-item>.badge+.badge { + margin-right: 5px +} + +.nav-pills>li>a>.badge { + margin-left: 3px +} + +.jumbotron { + padding: 30px 15px; + margin-bottom: 30px; + color: inherit; + background-color: #080808 +} + +.jumbotron h1, .jumbotron .h1 { + color: inherit +} + +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200 +} + +.jumbotron>hr { + border-top-color: #000 +} + +.container .jumbotron, .container-fluid .jumbotron { + border-radius: 0 +} + +.jumbotron .container { + max-width: 100% +} + +@media screen and (min-width:768px) { + .jumbotron { + padding: 48px 0 + } + + .container .jumbotron, .container-fluid .jumbotron { + padding-left: 60px; + padding-right: 60px + } + + .jumbotron h1, .jumbotron .h1 { + font-size: 63px + } +} + +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.428571429; + background-color: #222; + border: 1px solid #ddd; + border-radius: 0; + transition: border .2s ease-in-out +} + +.thumbnail>img, .thumbnail a>img { + margin-left: auto; + margin-right: auto +} + +a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { + border-color: #0f0 +} + +.thumbnail .caption { + padding: 9px; + color: #0c0 +} + +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 0 +} + +.alert h4 { + margin-top: 0; + color: inherit +} + +.alert .alert-link { + font-weight: bold +} + +.alert>p, .alert>ul { + margin-bottom: 0 +} + +.alert>p+p { + margin-top: 5px +} + +.alert-dismissable, .alert-dismissible { + padding-right: 35px +} + +.alert-dismissable .close, .alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit +} + +.alert-success { + background-color: #3c3c3c; + border-color: #2f2f2f; + color: #0d0 +} + +.alert-success hr { + border-top-color: #222 +} + +.alert-success .alert-link { + color: #0a0 +} + +.alert-info { + background-color: #3c3c3c; + border-color: #2a2a2a; + color: #7d8cff +} + +.alert-info hr { + border-top-color: #1d1d1d +} + +.alert-info .alert-link { + color: #4a5fff +} + +.alert-warning { + background-color: #3c3c3c; + border-color: #343434; + color: #f4ff00 +} + +.alert-warning hr { + border-top-color: #272727 +} + +.alert-warning .alert-link { + color: #c3cc00 +} + +.alert-danger { + background-color: #3c3c3c; + border-color: #343434; + color: #d00 +} + +.alert-danger hr { + border-top-color: #272727 +} + +.alert-danger .alert-link { + color: #a00 +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0 + } + + to { + background-position: 0 0 + } +} + +.progress { + overflow: hidden; + height: 20px; + margin-bottom: 20px; + background-color: #3c3c3c; + border-radius: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) +} + +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #0f0; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + transition: width .6s ease +} + +.progress-striped .progress-bar, .progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px +} + +.progress.active .progress-bar, .progress-bar.active { + animation: progress-bar-stripes 2s linear infinite +} + +.progress-bar-success { + background-color: #090 +} + +.progress-striped .progress-bar-success { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.progress-bar-info { + background-color: #36c +} + +.progress-striped .progress-bar-info { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.progress-bar-warning { + background-color: #f4ff00 +} + +.progress-striped .progress-bar-warning { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.progress-bar-danger { + background-color: #f00 +} + +.progress-striped .progress-bar-danger { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.media { + margin-top: 15px +} + +.media:first-child { + margin-top: 0 +} + +.media, .media-body { + zoom: 1; + overflow: hidden +} + +.media-body { + width: 10000px +} + +.media-object { + display: block +} + +.media-right, .media>.pull-right { + padding-left: 10px +} + +.media-left, .media>.pull-left { + padding-right: 10px +} + +.media-left, .media-right, .media-body { + display: table-cell; + vertical-align: top +} + +.media-middle { + vertical-align: middle +} + +.media-bottom { + vertical-align: bottom +} + +.media-heading { + margin-top: 0; + margin-bottom: 5px +} + +.media-list { + padding-left: 0; + list-style: none +} + +.list-group { + margin-bottom: 20px; + padding-left: 0 +} + +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #3c3c3c; + border: 1px solid #222 +} + +.list-group-item:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +a.list-group-item { + color: #0f0 +} + +a.list-group-item .list-group-item-heading { + color: #0f0 +} + +a.list-group-item:hover, a.list-group-item:focus { + text-decoration: none; + color: #0f0; + background-color: #151515 +} + +.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { + background-color: #030; + color: #030; + cursor: not-allowed +} + +.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { + color: inherit +} + +.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { + color: #030 +} + +.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { + z-index: 2; + color: #222; + background-color: #0f0; + border-color: #0f0 +} + +.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading>small, .list-group-item.active:hover .list-group-item-heading>small, .list-group-item.active:focus .list-group-item-heading>small, .list-group-item.active .list-group-item-heading>.small, .list-group-item.active:hover .list-group-item-heading>.small, .list-group-item.active:focus .list-group-item-heading>.small { + color: inherit +} + +.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { + color: #222 +} + +.list-group-item-success { + color: #0d0; + background-color: #3c3c3c +} + +a.list-group-item-success { + color: #0d0 +} + +a.list-group-item-success .list-group-item-heading { + color: inherit +} + +a.list-group-item-success:hover, a.list-group-item-success:focus { + color: #0d0; + background-color: #2f2f2f +} + +a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { + color: #fff; + background-color: #0d0; + border-color: #0d0 +} + +.list-group-item-info { + color: #7d8cff; + background-color: #3c3c3c +} + +a.list-group-item-info { + color: #7d8cff +} + +a.list-group-item-info .list-group-item-heading { + color: inherit +} + +a.list-group-item-info:hover, a.list-group-item-info:focus { + color: #7d8cff; + background-color: #2f2f2f +} + +a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { + color: #fff; + background-color: #7d8cff; + border-color: #7d8cff +} + +.list-group-item-warning { + color: #f4ff00; + background-color: #3c3c3c +} + +a.list-group-item-warning { + color: #f4ff00 +} + +a.list-group-item-warning .list-group-item-heading { + color: inherit +} + +a.list-group-item-warning:hover, a.list-group-item-warning:focus { + color: #f4ff00; + background-color: #2f2f2f +} + +a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { + color: #fff; + background-color: #f4ff00; + border-color: #f4ff00 +} + +.list-group-item-danger { + color: #d00; + background-color: #3c3c3c +} + +a.list-group-item-danger { + color: #d00 +} + +a.list-group-item-danger .list-group-item-heading { + color: inherit +} + +a.list-group-item-danger:hover, a.list-group-item-danger:focus { + color: #d00; + background-color: #2f2f2f +} + +a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { + color: #fff; + background-color: #d00; + border-color: #d00 +} + +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px +} + +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3 +} + +.panel { + margin-bottom: 20px; + background-color: #222; + border: 1px solid transparent; + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) +} + +.panel-body { + padding: 15px +} + +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: -1; + border-top-left-radius: -1 +} + +.panel-heading>.dropdown .dropdown-toggle { + color: inherit +} + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit +} + +.panel-title>a, .panel-title>small, .panel-title>.small, .panel-title>small>a, .panel-title>.small>a { + color: inherit +} + +.panel-footer { + padding: 10px 15px; + background-color: #080808; + border-top: 1px solid #3c3c3c; + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 +} + +.panel>.list-group, .panel>.panel-collapse>.list-group { + margin-bottom: 0 +} + +.panel>.list-group .list-group-item, .panel>.panel-collapse>.list-group .list-group-item { + border-width: 1px 0; + border-radius: 0 +} + +.panel>.list-group:first-child .list-group-item:first-child, .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-right-radius: -1; + border-top-left-radius: -1 +} + +.panel>.list-group:last-child .list-group-item:last-child, .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 +} + +.panel-heading+.list-group .list-group-item:first-child { + border-top-width: 0 +} + +.list-group+.panel-footer { + border-top-width: 0 +} + +.panel>.table, .panel>.table-responsive>.table, .panel>.panel-collapse>.table { + margin-bottom: 0 +} + +.panel>.table caption, .panel>.table-responsive>.table caption, .panel>.panel-collapse>.table caption { + padding-left: 15px; + padding-right: 15px +} + +.panel>.table:first-child, .panel>.table-responsive:first-child>.table:first-child { + border-top-right-radius: -1; + border-top-left-radius: -1 +} + +.panel>.table:first-child>thead:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child { + border-top-left-radius: -1; + border-top-right-radius: -1 +} + +.panel>.table:first-child>thead:first-child>tr:first-child td:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child, .panel>.table:first-child>thead:first-child>tr:first-child th:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child { + border-top-left-radius: -1 +} + +.panel>.table:first-child>thead:first-child>tr:first-child td:last-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child, .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child, .panel>.table:first-child>thead:first-child>tr:first-child th:last-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child, .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child { + border-top-right-radius: -1 +} + +.panel>.table:last-child, .panel>.table-responsive:last-child>.table:last-child { + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 +} + +.panel>.table:last-child>tbody:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child { + border-bottom-left-radius: -1; + border-bottom-right-radius: -1 +} + +.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child, .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child, .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child { + border-bottom-left-radius: -1 +} + +.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child { + border-bottom-right-radius: -1 +} + +.panel>.panel-body+.table, .panel>.panel-body+.table-responsive, .panel>.table+.panel-body, .panel>.table-responsive+.panel-body { + border-top: 1px solid #444 +} + +.panel>.table>tbody:first-child>tr:first-child th, .panel>.table>tbody:first-child>tr:first-child td { + border-top: 0 +} + +.panel>.table-bordered, .panel>.table-responsive>.table-bordered { + border: 0 +} + +.panel>.table-bordered>thead>tr>th:first-child, .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, .panel>.table-bordered>tbody>tr>th:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, .panel>.table-bordered>tfoot>tr>th:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, .panel>.table-bordered>thead>tr>td:first-child, .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, .panel>.table-bordered>tbody>tr>td:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, .panel>.table-bordered>tfoot>tr>td:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child { + border-left: 0 +} + +.panel>.table-bordered>thead>tr>th:last-child, .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, .panel>.table-bordered>tbody>tr>th:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, .panel>.table-bordered>tfoot>tr>th:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, .panel>.table-bordered>thead>tr>td:last-child, .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, .panel>.table-bordered>tbody>tr>td:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, .panel>.table-bordered>tfoot>tr>td:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child { + border-right: 0 +} + +.panel>.table-bordered>thead>tr:first-child>td, .panel>.table-responsive>.table-bordered>thead>tr:first-child>td, .panel>.table-bordered>tbody>tr:first-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td, .panel>.table-bordered>thead>tr:first-child>th, .panel>.table-responsive>.table-bordered>thead>tr:first-child>th, .panel>.table-bordered>tbody>tr:first-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th { + border-bottom: 0 +} + +.panel>.table-bordered>tbody>tr:last-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, .panel>.table-bordered>tfoot>tr:last-child>td, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td, .panel>.table-bordered>tbody>tr:last-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, .panel>.table-bordered>tfoot>tr:last-child>th, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th { + border-bottom: 0 +} + +.panel>.table-responsive { + border: 0; + margin-bottom: 0 +} + +.panel-group { + margin-bottom: 20px +} + +.panel-group .panel { + margin-bottom: 0; + border-radius: 0 +} + +.panel-group .panel+.panel { + margin-top: 5px +} + +.panel-group .panel-heading { + border-bottom: 0 +} + +.panel-group .panel-heading+.panel-collapse>.panel-body, .panel-group .panel-heading+.panel-collapse>.list-group { + border-top: 1px solid #3c3c3c +} + +.panel-group .panel-footer { + border-top: 0 +} + +.panel-group .panel-footer+.panel-collapse .panel-body { + border-bottom: 1px solid #3c3c3c +} + +.panel-default { + border-color: #3c3c3c +} + +.panel-default>.panel-heading { + color: #222; + background-color: #080808; + border-color: #3c3c3c +} + +.panel-default>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #3c3c3c +} + +.panel-default>.panel-heading .badge { + color: #080808; + background-color: #222 +} + +.panel-default>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #3c3c3c +} + +.panel-primary { + border-color: #0f0 +} + +.panel-primary>.panel-heading { + color: #222; + background-color: #0f0; + border-color: #0f0 +} + +.panel-primary>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #0f0 +} + +.panel-primary>.panel-heading .badge { + color: #0f0; + background-color: #222 +} + +.panel-primary>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #0f0 +} + +.panel-success { + border-color: #2f2f2f +} + +.panel-success>.panel-heading { + color: #0d0; + background-color: #3c3c3c; + border-color: #2f2f2f +} + +.panel-success>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #2f2f2f +} + +.panel-success>.panel-heading .badge { + color: #3c3c3c; + background-color: #0d0 +} + +.panel-success>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #2f2f2f +} + +.panel-info { + border-color: #2a2a2a +} + +.panel-info>.panel-heading { + color: #7d8cff; + background-color: #3c3c3c; + border-color: #2a2a2a +} + +.panel-info>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #2a2a2a +} + +.panel-info>.panel-heading .badge { + color: #3c3c3c; + background-color: #7d8cff +} + +.panel-info>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #2a2a2a +} + +.panel-warning { + border-color: #343434 +} + +.panel-warning>.panel-heading { + color: #f4ff00; + background-color: #3c3c3c; + border-color: #343434 +} + +.panel-warning>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #343434 +} + +.panel-warning>.panel-heading .badge { + color: #3c3c3c; + background-color: #f4ff00 +} + +.panel-warning>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #343434 +} + +.panel-danger { + border-color: #343434 +} + +.panel-danger>.panel-heading { + color: #d00; + background-color: #3c3c3c; + border-color: #343434 +} + +.panel-danger>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #343434 +} + +.panel-danger>.panel-heading .badge { + color: #3c3c3c; + background-color: #d00 +} + +.panel-danger>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #343434 +} + +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden +} + +.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { + position: absolute; + top: 0; + left: 0; + bottom: 0; + height: 100%; + width: 100%; + border: 0 +} + +.embed-responsive-16by9 { + padding-bottom: 56.25% +} + +.embed-responsive-4by3 { + padding-bottom: 75% +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #080808; + border: 1px solid #000; + border-radius: 0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05) +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15) +} + +.well-lg { + padding: 24px; + border-radius: 0 +} + +.well-sm { + padding: 9px; + border-radius: 0 +} + +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .2; + filter: alpha(opacity=20) +} + +.close:hover, .close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + opacity: .5; + filter: alpha(opacity=50) +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + appearance: none +} + +.modal-open { + overflow: hidden +} + +.modal { + display: none; + overflow: hidden; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + -webkit-overflow-scrolling: touch; + outline: 0 +} + +.modal.fade .modal-dialog { + transform: translate(0, -25%); + transition: transform 0.3s ease-out +} + +.modal.in .modal-dialog { + transform: translate(0, 0) +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto +} + +.modal-dialog { + position: relative; + width: auto; + margin: 10px +} + +.modal-content { + position: relative; + background-color: #3c3c3c; + border: 1px solid #999; + border: 1px solid transparent; + border-radius: 0; + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; + outline: 0 +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #222 +} + +.modal-backdrop.fade { + opacity: 0; + filter: alpha(opacity=0) +} + +.modal-backdrop.in { + opacity: .5; + filter: alpha(opacity=50) +} + +.modal-header { + padding: 15px; + border-bottom: 1px solid #3c3c3c; + min-height: 16.428571429px +} + +.modal-header .close { + margin-top: -2px +} + +.modal-title { + margin: 0; + line-height: 1.428571429 +} + +.modal-body { + position: relative; + padding: 15px +} + +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #3c3c3c +} + +.modal-footer .btn+.btn { + margin-left: 5px; + margin-bottom: 0 +} + +.modal-footer .btn-group .btn+.btn { + margin-left: -1px +} + +.modal-footer .btn-block+.btn-block { + margin-left: 0 +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll +} + +@media (min-width:768px) { + .modal-dialog { + width: 600px; + margin: 30px auto + } + + .modal-content { + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) + } + + .modal-sm { + width: 300px + } +} + +@media (min-width:992px) { + .modal-lg { + width: 900px + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: Monospace; + font-size: 12px; + font-weight: normal; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0) +} + +.tooltip.in { + opacity: .9; + filter: alpha(opacity=90) +} + +.tooltip.top { + margin-top: -3px; + padding: 5px 0 +} + +.tooltip.right { + margin-left: 3px; + padding: 0 5px +} + +.tooltip.bottom { + margin-top: 3px; + padding: 5px 0 +} + +.tooltip.left { + margin-left: -3px; + padding: 0 5px +} + +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + text-decoration: none; + background-color: #000; + border-radius: 0 +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.top-left .tooltip-arrow { + bottom: 0; + right: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000 +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000 +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: Monospace; + font-size: 14px; + font-weight: normal; + line-height: 1.428571429; + text-align: left; + background-color: #3c3c3c; + background-clip: padding-box; + border: 1px solid #333; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + white-space: normal +} + +.popover.top { + margin-top: -10px +} + +.popover.right { + margin-left: 10px +} + +.popover.bottom { + margin-top: 10px +} + +.popover.left { + margin-left: -10px +} + +.popover-title { + margin: 0; + padding: 8px 14px; + font-size: 14px; + background-color: #343434; + border-bottom: 1px solid #272727; + border-radius: -1 -1 0 0 +} + +.popover-content { + padding: 9px 14px +} + +.popover>.arrow, .popover>.arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid +} + +.popover>.arrow { + border-width: 11px +} + +.popover>.arrow:after { + border-width: 10px; + content: "" +} + +.popover.top>.arrow { + left: 50%; + margin-left: -11px; + border-bottom-width: 0; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + bottom: -11px +} + +.popover.top>.arrow:after { + content: " "; + bottom: 1px; + margin-left: -10px; + border-bottom-width: 0; + border-top-color: #3c3c3c +} + +.popover.right>.arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25) +} + +.popover.right>.arrow:after { + content: " "; + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #3c3c3c +} + +.popover.bottom>.arrow { + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + top: -11px +} + +.popover.bottom>.arrow:after { + content: " "; + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #3c3c3c +} + +.popover.left>.arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25) +} + +.popover.left>.arrow:after { + content: " "; + right: 1px; + border-right-width: 0; + border-left-color: #3c3c3c; + bottom: -10px +} + +.carousel { + position: relative +} + +.carousel-inner { + position: relative; + overflow: hidden; + width: 100% +} + +.carousel-inner>.item { + display: none; + position: relative; + transition: .6s ease-in-out left +} + +.carousel-inner>.item>img, .carousel-inner>.item>a>img { + line-height: 1 +} + +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner>.item { + transition: transform 0.6s ease-in-out; + backface-visibility: hidden; + perspective: 1000 + } + + .carousel-inner>.item.next, .carousel-inner>.item.active.right { + transform: translate3d(100%, 0, 0); + left: 0 + } + + .carousel-inner>.item.prev, .carousel-inner>.item.active.left { + transform: translate3d(-100%, 0, 0); + left: 0 + } + + .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right, .carousel-inner>.item.active { + transform: translate3d(0, 0, 0); + left: 0 + } +} + +.carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev { + display: block +} + +.carousel-inner>.active { + left: 0 +} + +.carousel-inner>.next, .carousel-inner>.prev { + position: absolute; + top: 0; + width: 100% +} + +.carousel-inner>.next { + left: 100% +} + +.carousel-inner>.prev { + left: -100% +} + +.carousel-inner>.next.left, .carousel-inner>.prev.right { + left: 0 +} + +.carousel-inner>.active.left { + left: -100% +} + +.carousel-inner>.active.right { + left: 100% +} + +.carousel-control { + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 15%; + opacity: .5; + filter: alpha(opacity=50); + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) +} + +.carousel-control.left { + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1) +} + +.carousel-control.right { + left: auto; + right: 0; + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1) +} + +.carousel-control:hover, .carousel-control:focus { + outline: 0; + color: #fff; + text-decoration: none; + opacity: .9; + filter: alpha(opacity=90) +} + +.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block +} + +.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px +} + +.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px +} + +.carousel-control .icon-prev, .carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + line-height: 1; + font-family: serif +} + +.carousel-control .icon-prev:before { + content: '\2039' +} + +.carousel-control .icon-next:before { + content: '\203a' +} + +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + margin-left: -30%; + padding-left: 0; + list-style: none; + text-align: center +} + +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + border: 1px solid #fff; + border-radius: 10px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0) +} + +.carousel-indicators .active { + margin: 0; + width: 12px; + height: 12px; + background-color: #fff +} + +.carousel-caption { + position: absolute; + left: 15%; + right: 15%; + bottom: 20px; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) +} + +.carousel-caption .btn { + text-shadow: none +} + +@media screen and (min-width:768px) { + .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px + } + + .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { + margin-left: -15px + } + + .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { + margin-right: -15px + } + + .carousel-caption { + left: 20%; + right: 20%; + padding-bottom: 30px + } + + .carousel-indicators { + bottom: 20px + } +} + +.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { + content: " "; + display: table +} + +.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical>.btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { + clear: both +} + +.center-block { + display: block; + margin-left: auto; + margin-right: auto +} + +.pull-right { + float: right +} + +.pull-left { + float: left +} + +.hide { + display: none +} + +.show { + display: block +} + +.invisible { + visibility: hidden +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0 +} + +.hidden { + display: none +} + +.affix { + position: fixed +} + +.visible-xs, .visible-sm, .visible-md, .visible-lg { + display: none +} + +.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { + display: none +} + +@media (max-width:767px) { + .visible-xs { + display: block + } + + table.visible-xs { + display: table + } + + tr.visible-xs { + display: table-row + } + + th.visible-xs, td.visible-xs { + display: table-cell + } +} + +@media (max-width:767px) { + .visible-xs-block { + display: block + } +} + +@media (max-width:767px) { + .visible-xs-inline { + display: inline + } +} + +@media (max-width:767px) { + .visible-xs-inline-block { + display: inline-block + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm { + display: block + } + + table.visible-sm { + display: table + } + + tr.visible-sm { + display: table-row + } + + th.visible-sm, td.visible-sm { + display: table-cell + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-block { + display: block + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-inline { + display: inline + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-inline-block { + display: inline-block + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md { + display: block + } + + table.visible-md { + display: table + } + + tr.visible-md { + display: table-row + } + + th.visible-md, td.visible-md { + display: table-cell + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-block { + display: block + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-inline { + display: inline + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-inline-block { + display: inline-block + } +} + +@media (min-width:1200px) { + .visible-lg { + display: block + } + + table.visible-lg { + display: table + } + + tr.visible-lg { + display: table-row + } + + th.visible-lg, td.visible-lg { + display: table-cell + } +} + +@media (min-width:1200px) { + .visible-lg-block { + display: block + } +} + +@media (min-width:1200px) { + .visible-lg-inline { + display: inline + } +} + +@media (min-width:1200px) { + .visible-lg-inline-block { + display: inline-block + } +} + +@media (max-width:767px) { + .hidden-xs { + display: none + } +} + +@media (min-width:768px) and (max-width:991px) { + .hidden-sm { + display: none + } +} + +@media (min-width:992px) and (max-width:1199px) { + .hidden-md { + display: none + } +} + +@media (min-width:1200px) { + .hidden-lg { + display: none + } +} + +.visible-print { + display: none +} + +@media print { + .visible-print { + display: block + } + + table.visible-print { + display: table + } + + tr.visible-print { + display: table-row + } + + th.visible-print, td.visible-print { + display: table-cell + } +} + +.visible-print-block { + display: none +} + +@media print { + .visible-print-block { + display: block + } +} + +.visible-print-inline { + display: none +} + +@media print { + .visible-print-inline { + display: inline + } +} + +.visible-print-inline-block { + display: none +} + +@media print { + .visible-print-inline-block { + display: inline-block + } +} + +@media print { + .hidden-print { + display: none + } +} diff --git a/themes/hipster-gray.css b/themes/hipster-gray.css index e3a32981..c07c6a75 100644 --- a/themes/hipster-gray.css +++ b/themes/hipster-gray.css @@ -3,12 +3,9 @@ * { margin: 0; padding: 0; - -webkit-transition: all 0.2s ease-out; - -moz-transition: all 0.2s ease-out; - -o-transition: all 0.2s ease-out; - -ms-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } + body { background: #aaa; font-family: Merriweather, "Palatino Linotype", Georgia, serif; @@ -16,44 +13,54 @@ body { line-height: 170%; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; - font-smoothing: antialiased; overflow-y: auto; padding: 20pt; } + a:link, a:visited { color: #000; text-decoration: none; border-bottom: 1pt solid #aaa; } + a:hover, a:focus, a:active { background: #aaa; text-decoration: none; } + h1 { font-size: 64pt; font-weight: 400; line-height: 100%; } + article, footer { padding: 50pt 50pt 20pt 20%; background: #ccc; } -article p { margin-top: 40pt; } + +article p { + margin-top: 40pt; +} + article p:first-of-type { margin-top: 20pt; font-size: 14pt; line-height: 150%; } + article :nth-child(4), article :nth-child(4):before { font-size: 18pt; font-weight: 300; } + article :nth-child(4):before { content: "*"; margin-left: -20pt; float: left; } + article p:last-child { border: 20pt solid #c4c4c4; font-size: 17pt; @@ -62,145 +69,215 @@ article p:last-child { color: #888; padding: 20pt; } + footer { padding-top: 0; font-size: 14pt; line-height: 100%; margin-top: -1pt; } + footer p { background: url("hipster-gray-octocat.png") 0 0 no-repeat; margin-left: -20pt; padding-left: 20pt; } + footer a:link, footer a:visited { border-bottom-color: #bbb; color: #888; } + footer a:hover, footer a:focus, footer a:active { color: #000; } - @media only screen and (max-width: 1360px) { article, footer { padding-left: 50pt; } } + @media only screen and (max-width: 1140px) { body { font-size: 17pt; padding: 15pt; } - h1 { font-size: 40pt; } - article, footer { padding: 30pt; } - article p { margin-top: 17pt; } + + h1 { + font-size: 40pt; + } + + article, footer { + padding: 30pt; + } + + article p { + margin-top: 17pt; + } + article p:first-of-type { font-size: 12pt; line-height: 120%; margin-top: 10pt; } - article :nth-child(4), article :nth-child(4):before { font-size: 15pt; } - article :nth-child(4):before { margin-left: -15pt; } + + article :nth-child(4), article :nth-child(4):before { + font-size: 15pt; + } + + article :nth-child(4):before { + margin-left: -15pt; + } + article p:last-child { border-width: 15pt; font-size: 13pt; margin: 15pt 0 0 0; padding: 15pt; } + footer { padding-top: 0; font-size: 11pt; line-height: 120%; } + footer p { margin-left: -15pt; padding-left: 15pt; } } + @media only screen and (max-width: 720px) { body { font-size: 12pt; padding: 10pt; } - h1 { font-size: 24pt; } - article, footer { padding: 20pt; } - article p { margin-top: 15pt; } + + h1 { + font-size: 24pt; + } + + article, footer { + padding: 20pt; + } + + article p { + margin-top: 15pt; + } + article p:first-of-type { font-size: 9pt; line-height: 120%; margin-top: 10pt; } - article :nth-child(4), article :nth-child(4):before { font-size: 10pt; } - article :nth-child(4):before { margin-left: -10pt; } + + article :nth-child(4), article :nth-child(4):before { + font-size: 10pt; + } + + article :nth-child(4):before { + margin-left: -10pt; + } + article p:last-child { border-width: 10pt; font-size: 10pt; margin: 15pt 0 0 0; padding: 10pt; } + footer { padding-top: 0; font-size: 9pt; line-height: 120%; } + footer p { background-position: 0 1px; - -webkit-background-size: 9px; background-size: 11px; margin-left: -10pt; padding-left: 10pt; } } - @media print { - @page { margin: .5cm; } - * { color: black !important; } - a[href^="http"]:after { content: " [" attr(href) "]" } - a:link, a[href]:after { border: none; } + @page { + margin: .5cm; + } + + * { + color: black; + } + + a[href^="http"]:after { + content: " ["attr(href) "]" + } + + a:link, a[href]:after { + border: none; + } + body { background: none; font-size: 12pt; padding: 0; } - h1 { font-size: 28pt; } + + h1 { + font-size: 28pt; + } + article, footer { background: none; padding: 30pt; } - article p { margin-top: 16pt; } + + article p { + margin-top: 16pt; + } + article p:first-of-type { font-size: 10pt; line-height: 120%; margin-top: 10pt; } - article :nth-child(4), article :nth-child(4):before { font-size: 12pt; } - article :nth-child(4):before { margin-left: -12pt; } + + article :nth-child(4), article :nth-child(4):before { + font-size: 12pt; + } + + article :nth-child(4):before { + margin-left: -12pt; + } + article p:last-child { border-width: 11pt; font-size: 11pt; margin: 18pt 0 0 0; padding: 11pt; } + footer { padding-top: 0; font-size: 10pt; line-height: 120%; } + footer p { background-position: 0 1px; - -webkit-background-size: 11px; background-size: 11px; margin-left: -12pt; padding-left: 12pt; } } + #gravatar { - position: relative; - float: left; - border: 20px solid #c4c4c4; - margin-left: -12em; - margin-top: -1em; - width: 5em; + position: relative; + float: left; + border: 20px solid #c4c4c4; + margin-left: -12em; + margin-top: -1em; + width: 5em; } diff --git a/themes/hmt-blue.css b/themes/hmt-blue.css index d4bae46f..7c389c21 100644 --- a/themes/hmt-blue.css +++ b/themes/hmt-blue.css @@ -1,97 +1,336 @@ /* normalize.min.css */ -progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0} figcaption, menu,article,aside,details,figure,footer,header,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0} [hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{}button,select{text-transform:none}[type=submit], [type=reset],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit} +progress, sub, sup { + vertical-align: baseline +} -/* Roboto */ -@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0102-0103,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000} +button, hr, input { + overflow: visible +} + +html { + font-family: sans-serif; + line-height: 1.15; + text-size-adjust: 100%; +} body { - font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - line-height: 1.4; - background-color: #e9ebee; + margin: 0 } + +figcaption, menu, article, aside, details, figure, footer, header, main, nav, section, summary { + display: block +} + +audio, canvas, progress, video { + display: inline-block +} + +audio:not([controls]) { + display: none; + height: 0 +} + +[hidden], template { + display: none +} + +a { + background-color: transparent; + -webkit-text-decoration-skip: objects +} + +a:active, a:hover { + outline-width: 0 +} + +abbr[title] { + border-bottom: none; + text-decoration: underline; + text-decoration: underline dotted +} + +b, strong { + font-weight: bolder +} + +dfn { + font-style: italic +} + +h1 { + font-size: 2em; + margin: .67em 0 +} + +mark { + background-color: #ff0; + color: #000 +} + +small { + font-size: 80% +} + +sub, sup { + font-size: 75%; + line-height: 0; + position: relative +} + +sub { + bottom: -.25em +} + +sup { + top: -.5em +} + +img { + border-style: none +} + +svg:not(:root) { + overflow: hidden +} + +code, kbd, pre, samp { + font-family: monospace, monospace; + font-size: 1em +} + +figure { + margin: 1em 40px +} + +hr { + box-sizing: content-box; + height: 0 +} + +button, input, optgroup, select, textarea { + font: inherit; + margin: 0 +} + +optgroup { + font-weight: 700 +} + +button, input {} + +button, select { + text-transform: none +} + +[type=submit], [type=reset], button, html [type=button] { + appearance: button +} + +[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner { + border-style: none; + padding: 0 +} + +[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring { + outline: ButtonText dotted 1px +} + +fieldset { + border: 1px solid silver; + margin: 0 2px; + padding: .35em .625em .75em +} + +legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal +} + +textarea { + overflow: auto +} + +[type=checkbox], [type=radio] { + box-sizing: border-box; + padding: 0 +} + +[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { + height: auto +} + +[type=search] { + appearance: textfield; + outline-offset: -2px +} + +[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration { + appearance: none +} + +::-webkit-input-placeholder { + color: inherit; + opacity: .54 +} + +::-webkit-file-upload-button { + appearance: button; + font: inherit +} + +/* Roboto */ +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+1F00-1FFF +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0370-03FF +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000 +} + +body { + font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + line-height: 1.4; + background-color: #e9ebee; +} + a:focus, a:hover { - color: #23527c; + color: #23527c; } + a:active, a:hover { - outline: 0; + outline: 0; } + a { - color: #337ab7; - text-decoration: none; + color: #337ab7; + text-decoration: none; } + article, footer { - width: 800px; - margin: 0 auto; + width: 800px; + margin: 0 auto; } + article p { - text-align: justify; + text-align: justify; } + footer p { - text-align: center; + text-align: center; } + #gravatar { - display: block; - float: right; - border-radius: 50%; - border: none; - margin-top: 5px; + display: block; + float: right; + border-radius: 50%; + border: none; + margin-top: 5px; } + article h1 { - font-weight: bold; - line-height: 1.3; - text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.2); + font-weight: bold; + line-height: 1.3; + text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.2); } + footer { - text-align: center; - border-top: 1px solid #ccc; - font-style: italic; + text-align: center; + border-top: 1px solid #ccc; + font-style: italic; } + /* Blockquote: https://codepen.io/maxds/pen/DcveB */ -article > p:last-child { - display: block; - background: #fff; - padding: 15px 20px 15px 45px; - margin: 0 0 20px; - position: relative; - /*Font*/ - - font-family: Georgia, serif; - font-size: 16px; - line-height: 1.4; - color: #666; - text-align: justify; - /*Borders - (Optional)*/ - - border-left: 15px solid #3392cd; - border-right: 2px solid #3392cd; - /*Box Shadow - (Optional)*/ - - -moz-box-shadow: 2px 2px 15px #ccc; - -webkit-box-shadow: 2px 2px 15px #ccc; - box-shadow: 2px 2px 15px #ccc; +article>p:last-child { + display: block; + background: #fff; + padding: 15px 20px 15px 45px; + margin: 0 0 20px; + position: relative; + /*Font*/ + font-family: Georgia, serif; + font-size: 16px; + line-height: 1.4; + color: #666; + text-align: justify; + /*Borders - (Optional)*/ + border-left: 15px solid #3392cd; + border-right: 2px solid #3392cd; + /*Box Shadow - (Optional)*/ + box-shadow: 2px 2px 15px #ccc; } -article > p:last-child::before { - content: "\201C"; - /*Unicode for Left Double Quote*/ - /*Font*/ - - font-family: Georgia, serif; - font-size: 60px; - font-weight: bold; - color: #999; - /*Positioning*/ - - position: absolute; - left: 10px; - top: 5px; + +article>p:last-child::before { + content: "\201C"; + /*Unicode for Left Double Quote*/ + /*Font*/ + font-family: Georgia, serif; + font-size: 60px; + font-weight: bold; + color: #999; + /*Positioning*/ + position: absolute; + left: 10px; + top: 5px; } -article > p:last-child::after { - /*Reset to make sure*/ - - content: ""; + +article>p:last-child::after { + /*Reset to make sure*/ + content: ""; } diff --git a/themes/magic-mint.css b/themes/magic-mint.css index 50f226da..e529cccc 100644 --- a/themes/magic-mint.css +++ b/themes/magic-mint.css @@ -1,8 +1,9 @@ @import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic"); -html{ +html { font-size: 62.5%; } + body { font-family: Lato, Helvetica, sans-serif; padding: 8px; @@ -18,7 +19,7 @@ article { position: relative; } -#gravatar{ +#gravatar { position: absolute; left: 0; top: 22px; @@ -56,11 +57,12 @@ article p:last-child { font-size: 1.8rem; } -p{ +p { text-align: justify; font-size: 18px; font-size: 1.8rem; } + a { padding: 0.1em; } @@ -97,6 +99,7 @@ footer { padding: 12px 0; font-style: italic; } -footer p{ + +footer p { text-align: center; } diff --git a/themes/material-amber.css b/themes/material-amber.css index 02a7b06a..da4e6222 100644 --- a/themes/material-amber.css +++ b/themes/material-amber.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ffc107;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fff8e1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffecb3}article h1+p a:hover{color:#ff6f00}article p{padding:0 2em;text-align:justify}article p:last-child{color:#ffa000;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#ff6f00}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ffc107; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fff8e1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffecb3 +} + +article h1+p a:hover { + color: #ff6f00 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #ffa000; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #ff6f00 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-blue.css b/themes/material-blue.css index 45de0ce5..4f1bc702 100644 --- a/themes/material-blue.css +++ b/themes/material-blue.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#2196f3;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e3f2fd;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#bbdefb}article h1+p a:hover{color:#0d47a1}article p{padding:0 2em;text-align:justify}article p:last-child{color:#1976d2;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#0d47a1}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #2196f3; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e3f2fd; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #bbdefb +} + +article h1+p a:hover { + color: #0d47a1 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #1976d2; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #0d47a1 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-brown.css b/themes/material-brown.css index 42eb904f..d1c72e45 100644 --- a/themes/material-brown.css +++ b/themes/material-brown.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#795548;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#efebe9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#d7ccc8}article h1+p a:hover{color:#3e2723}article p{padding:0 2em;text-align:justify}article p:last-child{color:#5d4037;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#3e2723}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #795548; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #efebe9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #d7ccc8 +} + +article h1+p a:hover { + color: #3e2723 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #5d4037; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #3e2723 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-cyan.css b/themes/material-cyan.css index 96ea1ad7..cc4e6c77 100644 --- a/themes/material-cyan.css +++ b/themes/material-cyan.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#00bcd4;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e0f7fa;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b2ebf2}article h1+p a:hover{color:#006064}article p{padding:0 2em;text-align:justify}article p:last-child{color:#0097a7;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#006064}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #00bcd4; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e0f7fa; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #b2ebf2 +} + +article h1+p a:hover { + color: #006064 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #0097a7; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #006064 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-deep-orange.css b/themes/material-deep-orange.css index 8f62aa7f..110bb035 100644 --- a/themes/material-deep-orange.css +++ b/themes/material-deep-orange.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ff5722;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fbe9e7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffccbc}article h1+p a:hover{color:#bf360c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#e64a19;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#bf360c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ff5722; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fbe9e7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffccbc +} + +article h1+p a:hover { + color: #bf360c +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #e64a19; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #bf360c +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-deep-purple.css b/themes/material-deep-purple.css index 3d365118..ef4e7626 100644 --- a/themes/material-deep-purple.css +++ b/themes/material-deep-purple.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#673ab7;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#ede7f6;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#d1c4e9}article h1+p a:hover{color:#311b92}article p{padding:0 2em;text-align:justify}article p:last-child{color:#512da8;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#311b92}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #673ab7; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #ede7f6; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #d1c4e9 +} + +article h1+p a:hover { + color: #311b92 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #512da8; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #311b92 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-green.css b/themes/material-green.css index 2b1c17bd..9b1e4be6 100644 --- a/themes/material-green.css +++ b/themes/material-green.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#4caf50;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e8f5e9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#c8e6c9}article h1+p a:hover{color:#1b5e20}article p{padding:0 2em;text-align:justify}article p:last-child{color:#388e3c;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#1b5e20}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #4caf50; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e8f5e9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #c8e6c9 +} + +article h1+p a:hover { + color: #1b5e20 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #388e3c; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #1b5e20 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-grey.css b/themes/material-grey.css index d8fc722a..091d9527 100644 --- a/themes/material-grey.css +++ b/themes/material-grey.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#9e9e9e;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fafafa;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f5f5f5}article h1+p a:hover{color:#212121}article p{padding:0 2em;text-align:justify}article p:last-child{color:#616161;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#212121}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #9e9e9e; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fafafa; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #f5f5f5 +} + +article h1+p a:hover { + color: #212121 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #616161; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #212121 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-indigo.css b/themes/material-indigo.css index ace7612d..4ad58800 100644 --- a/themes/material-indigo.css +++ b/themes/material-indigo.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#3f51b5;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e8eaf6;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#c5cae9}article h1+p a:hover{color:#1a237e}article p{padding:0 2em;text-align:justify}article p:last-child{color:#303f9f;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#1a237e}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #3f51b5; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e8eaf6; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #c5cae9 +} + +article h1+p a:hover { + color: #1a237e +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #303f9f; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #1a237e +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-light-blue.css b/themes/material-light-blue.css index 7ebef4f0..873965f7 100644 --- a/themes/material-light-blue.css +++ b/themes/material-light-blue.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#03a9f4;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e1f5fe;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b3e5fc}article h1+p a:hover{color:#01579b}article p{padding:0 2em;text-align:justify}article p:last-child{color:#0288d1;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#01579b}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #03a9f4; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e1f5fe; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #b3e5fc +} + +article h1+p a:hover { + color: #01579b +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #0288d1; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #01579b +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-light-green.css b/themes/material-light-green.css index dddd455c..3ff00238 100644 --- a/themes/material-light-green.css +++ b/themes/material-light-green.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#8bc34a;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f1f8e9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#dcedc8}article h1+p a:hover{color:#33691e}article p{padding:0 2em;text-align:justify}article p:last-child{color:#689f38;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#33691e}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #8bc34a; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #f1f8e9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #dcedc8 +} + +article h1+p a:hover { + color: #33691e +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #689f38; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #33691e +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-lime.css b/themes/material-lime.css index e0febd50..0f1ce85f 100644 --- a/themes/material-lime.css +++ b/themes/material-lime.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#cddc39;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f9fbe7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f0f4c3}article h1+p a:hover{color:#827717}article p{padding:0 2em;text-align:justify}article p:last-child{color:#afb42b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#827717}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #cddc39; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #f9fbe7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #f0f4c3 +} + +article h1+p a:hover { + color: #827717 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #afb42b; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #827717 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-orange.css b/themes/material-orange.css index 7eca46ac..7e1d28fe 100644 --- a/themes/material-orange.css +++ b/themes/material-orange.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ff9800;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fff3e0;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffe0b2}article h1+p a:hover{color:#e65100}article p{padding:0 2em;text-align:justify}article p:last-child{color:#f57c00;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#e65100}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ff9800; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fff3e0; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffe0b2 +} + +article h1+p a:hover { + color: #e65100 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #f57c00; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #e65100 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-pink.css b/themes/material-pink.css index 3597ef3c..1f84c8a4 100644 --- a/themes/material-pink.css +++ b/themes/material-pink.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#e91e63;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fce4ec;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f8bbd0}article h1+p a:hover{color:#880e4f}article p{padding:0 2em;text-align:justify}article p:last-child{color:#c2185b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#880e4f}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #e91e63; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fce4ec; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #f8bbd0 +} + +article h1+p a:hover { + color: #880e4f +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #c2185b; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #880e4f +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-purple.css b/themes/material-purple.css index bfdc7f69..ad7ae0fb 100644 --- a/themes/material-purple.css +++ b/themes/material-purple.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#9c27b0;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f3e5f5;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#e1bee7}article h1+p a:hover{color:#4a148c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#7b1fa2;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#4a148c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #9c27b0; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #f3e5f5; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #e1bee7 +} + +article h1+p a:hover { + color: #4a148c +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #7b1fa2; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #4a148c +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-red.css b/themes/material-red.css index f6fefdd6..af8e0619 100644 --- a/themes/material-red.css +++ b/themes/material-red.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#f44336;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#ffebee;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffcdd2}article h1+p a:hover{color:#b71c1c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#d32f2f;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#b71c1c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #f44336; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #ffebee; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffcdd2 +} + +article h1+p a:hover { + color: #b71c1c +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #d32f2f; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #b71c1c +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-teal.css b/themes/material-teal.css index 6013ddfe..e9d270a8 100644 --- a/themes/material-teal.css +++ b/themes/material-teal.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#009688;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e0f2f1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b2dfdb}article h1+p a:hover{color:#004d40}article p{padding:0 2em;text-align:justify}article p:last-child{color:#00796b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#004d40}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #009688; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e0f2f1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #b2dfdb +} + +article h1+p a:hover { + color: #004d40 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #00796b; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #004d40 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-yellow.css b/themes/material-yellow.css index fd2dc56f..1a21ae7d 100644 --- a/themes/material-yellow.css +++ b/themes/material-yellow.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ffeb3b;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fffde7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#fff9c4}article h1+p a:hover{color:#f57f17}article p{padding:0 2em;text-align:justify}article p:last-child{color:#fbc02d;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#f57f17}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ffeb3b; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fffde7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #fff9c4 +} + +article h1+p a:hover { + color: #f57f17 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #fbc02d; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #f57f17 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material.css b/themes/material.css index 53653c08..dc861ea6 100644 --- a/themes/material.css +++ b/themes/material.css @@ -1 +1,148 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#607d8b;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#eceff1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#cfd8dc}article h1+p a:hover{color:#263238}article p{padding:0 2em;text-align:justify}article p:last-child{color:#455a64;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#263238}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #607d8b; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #eceff1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #cfd8dc +} + +article h1+p a:hover { + color: #263238 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #455a64; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #263238 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/mitserrat.css b/themes/mitserrat.css index a9cf1ff0..4856b2bb 100644 --- a/themes/mitserrat.css +++ b/themes/mitserrat.css @@ -2,21 +2,70 @@ MIT-license Theme: MITserrat -version: 1.0 -date: 17/09/2016 -author: Wouter Janson -github: https://github.com/WouterJanson +version: 1.0 +date: 17/09/2016 +author: Wouter Janson +github: https://github.com/WouterJanson description: A simple theme based on the Montserrat font -----------------------------------------------------------------------------*/ - @import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); -html{padding:0;margin:0;} -body{background-color:#F9F9F9;} -h1{color:#B93A32;font-family:Montserrat;font-size:72px;font-weight:600;line-height:72px;letter-spacing:-4px;margin-bottom:48px;text-transform:uppercase;text-align:center;} -p{color:#3E4147;font-family:Montserrat;font-size:22px;font-weight:500;line-height:32px;margin-bottom:48px;margin-left:auto;margin-right:auto;max-width:80%;} -a{color:#3E4147;border-bottom:3px solid #B93A32;font-weight:700;text-decoration:none;} -a:hover{color:#B93A32;} -p:first-of-type,footer{text-align:center;} -#gravatar{display:block;margin-left:auto;margin-right:auto;height:80px;width:80px;margin-top:72px;border-radius:40px;-webkit-border-radius:40px;-moz-border-radius:40px;} + +html { + padding: 0; + margin: 0; +} + +body { + background-color: #F9F9F9; +} + +h1 { + color: #B93A32; + font-family: Montserrat; + font-size: 72px; + font-weight: 600; + line-height: 72px; + letter-spacing: -4px; + margin-bottom: 48px; + text-transform: uppercase; + text-align: center; +} + +p { + color: #3E4147; + font-family: Montserrat; + font-size: 22px; + font-weight: 500; + line-height: 32px; + margin-bottom: 48px; + margin-left: auto; + margin-right: auto; + max-width: 80%; +} + +a { + color: #3E4147; + border-bottom: 3px solid #B93A32; + font-weight: 700; + text-decoration: none; +} + +a:hover { + color: #B93A32; +} + +p:first-of-type, footer { + text-align: center; +} + +#gravatar { + display: block; + margin-left: auto; + margin-right: auto; + height: 80px; + width: 80px; + margin-top: 72px; + border-radius: 40px; +} diff --git a/themes/open-sans.css b/themes/open-sans.css index 39e0a816..efd379d8 100644 --- a/themes/open-sans.css +++ b/themes/open-sans.css @@ -1 +1,70 @@ -@font-face{font-family:'Open Sans Bold';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff')}html{background:#f2f2f8}body{margin:0;padding:100px;font-family:'Open Sans',sans-serif;font-size:1.2em;line-height:1.6}::selection{background:#ccc}::-moz-selection{background:#ccc}h1{text-align:center;font:36px 'Open Sans Bold'}p{margin:25px 0 0}p:first-of-type{text-align:center;margin:0 0 50px}a{color:#0a0a0b;text-decoration:none;border-bottom:3px solid rgba(10,10,11,1);-webkit-transition:.15s ease;-moz-transition:.15s ease;-ms-transition:.15s ease;-o-transition:.15s ease;transition:.15s ease}a:focus,a:hover{opacity:.5}article,footer{display:block;margin:0 auto!important;padding:25px;max-width:900px;width:100%}footer{text-align:center;font:75% 'Open Sans Bold'}#gravatar{display:block!important;border-radius:100%;margin:0 auto} +@font-face { + font-family: 'Open Sans Bold'; + font-style: normal; + font-weight: 700; + src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff') +} + +html { + background: #f2f2f8 +} + +body { + margin: 0; + padding: 100px; + font-family: 'Open Sans', sans-serif; + font-size: 1.2em; + line-height: 1.6 +} + +::selection { + background: #ccc +} + +::-moz-selection { + background: #ccc +} + +h1 { + text-align: center; + font: 36px 'Open Sans Bold' +} + +p { + margin: 25px 0 0 +} + +p:first-of-type { + text-align: center; + margin: 0 0 50px +} + +a { + color: #0a0a0b; + text-decoration: none; + border-bottom: 3px solid rgba(10, 10, 11, 1); + transition: .15s ease +} + +a:focus, a:hover { + opacity: .5 +} + +article, footer { + display: block; + margin: 0 auto !important; + padding: 25px; + max-width: 900px; + width: 100% +} + +footer { + text-align: center; + font: 75% 'Open Sans Bold' +} + +#gravatar { + display: block !important; + border-radius: 100%; + margin: 0 auto +} diff --git a/themes/orange.css b/themes/orange.css index 525eeddd..4d9388b2 100644 --- a/themes/orange.css +++ b/themes/orange.css @@ -1,14 +1,85 @@ @import url(https://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Caption:700); -html,body{background:#663B14;font:13pt "PT Sans",sans-serif;text-align:center} -a:link,a:visited{color:#234234;text-decoration:none} -a:hover,a:active{color:#432321;text-decoration:underline} -article{background:#CC9900;text-align:left;width:85%;margin:80px auto;border-radius:10px;-moz-border-radius:10px;box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7);-webkit-box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7)} -article h1{background:#CC6600;text-align:center;font:bold 35pt "PT Sans Caption","PT Sans",sans-serif;margin:0;padding:19px;border-radius:10px;-moz-border-radius:10px;box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3);-webkit-box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3)} -article p{margin:0;padding:10px 15px} -footer{position:fixed;bottom:0;left:0;width:100%;border-top:1px solid #7A7A00;background:#333300;user-select:none;-moz-user-select:none;-webkit-user-select:none} -footer p,footer a{display:block;margin:0;text-shadow:0 0 10px #ccc;font-size:11.5pt} -footer a:link,footer a:visited{color:#aaa} -footer a:hover,footer a:active{color:#eee} -::selection{background:#663300;color:white} -::-moz-selection{background:#663300;color:white} -#gravatar { position: relative; float: right; top: 0.5em; z-index: 1; right: 0.7em; border-radius: 10px; } + +html, body { + background: #663B14; + font: 13pt "PT Sans", sans-serif; + text-align: center +} + +a:link, a:visited { + color: #234234; + text-decoration: none +} + +a:hover, a:active { + color: #432321; + text-decoration: underline +} + +article { + background: #CC9900; + text-align: left; + width: 85%; + margin: 80px auto; + border-radius: 10px; + box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7); +} + +article h1 { + background: #CC6600; + text-align: center; + font: bold 35pt "PT Sans Caption", "PT Sans", sans-serif; + margin: 0; + padding: 19px; + border-radius: 10px; + box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3); +} + +article p { + margin: 0; + padding: 10px 15px +} + +footer { + position: fixed; + bottom: 0; + left: 0; + width: 100%; + border-top: 1px solid #7A7A00; + background: #333300; + user-select: none; +} + +footer p, footer a { + display: block; + margin: 0; + text-shadow: 0 0 10px #ccc; + font-size: 11.5pt +} + +footer a:link, footer a:visited { + color: #aaa +} + +footer a:hover, footer a:active { + color: #eee +} + +::selection { + background: #663300; + color: white +} + +::-moz-selection { + background: #663300; + color: white +} + +#gravatar { + position: relative; + float: right; + top: 0.5em; + z-index: 1; + right: 0.7em; + border-radius: 10px; +} diff --git a/themes/page_gradient_linear.svg b/themes/page_gradient_linear.svg index 8e84cbf0..ba2d2b4a 100644 --- a/themes/page_gradient_linear.svg +++ b/themes/page_gradient_linear.svg @@ -1,9 +1,8 @@ - - - - - - + + + + + + diff --git a/themes/page_gradient_radial.svg b/themes/page_gradient_radial.svg index 5a18f6b9..9339d94d 100644 --- a/themes/page_gradient_radial.svg +++ b/themes/page_gradient_radial.svg @@ -1,9 +1,8 @@ - - - - - - + + + + + + diff --git a/themes/plaintext.css b/themes/plaintext.css index 8d25f115..bdc4f796 100644 --- a/themes/plaintext.css +++ b/themes/plaintext.css @@ -1,7 +1,9 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); + body { max-width: 625px; } + body, h1, h2, h3, h4, h5, h6 { font: normal 15px Inconsolata, Consolas, monospace; } diff --git a/themes/rokkitt.css b/themes/rokkitt.css index f51d5b20..e38b57a6 100644 --- a/themes/rokkitt.css +++ b/themes/rokkitt.css @@ -1,70 +1,79 @@ @import url(https://fonts.googleapis.com/css?family=Rokkitt:400,700); body { - margin: 0 auto; - font: normal x-large/1.3 Rokkitt, Helvetica, Arial; - line-height: 1.2em; - color: #666; - text-align: justify; + margin: 0 auto; + font: normal x-large/1.3 Rokkitt, Helvetica, Arial; + line-height: 1.2em; + color: #666; + text-align: justify; } article, footer { - display: block; - min-width: 360px; - max-width: 900px; - width: 80%; + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; } article { - margin: 0 auto 0 auto; - border: 1px solid ; - border-color: #fff #fff #fff #fff; - padding: 2em; background: #fff; + margin: 0 auto 0 auto; + border: 1px solid; + border-color: #fff #fff #fff #fff; + padding: 2em; + background: #fff; } h1 { - margin: 0; + margin: 0; } article p:first-of-type { - margin-top: 1.6em; + margin-top: 1.6em; } article p:last-child { - margin-bottom: 0; + margin-bottom: 0; } footer { - margin: 0em auto 2em auto; - text-align: center; + margin: 0em auto 2em auto; + text-align: center; } footer a { - color: #abc8e2; - text-shadow: 0 1px 1px #fff; - text-decoration:none; - font-size:.8em; - padding: 1em; + color: #abc8e2; + text-shadow: 0 1px 1px #fff; + text-decoration: none; + font-size: .8em; + padding: 1em; } h1 { - font-weight:normal; - line-height: 36px; - font-size: 2em; - text-align: center + font-weight: normal; + line-height: 36px; + font-size: 2em; + text-align: center } a { - color: #abc8e2; - text-decoration:none; + color: #abc8e2; + text-decoration: none; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #ddd; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } -@media all and ( max-width: 500px) { article {padding:1em;} body {font-size:1em;} } +@media all and (max-width: 500px) { + article { + padding: 1em; + } + + body { + font-size: 1em; + } +} diff --git a/themes/silver-style.css b/themes/silver-style.css index dec1f123..68813409 100644 --- a/themes/silver-style.css +++ b/themes/silver-style.css @@ -6,32 +6,79 @@ **https://in.linkedin.com/in/devdipesh/ */ body { - margin:0; padding: 50px; - font: normal 14px/20px "DroidSansRegular",Arial,Helvetica,sans-serif; + margin: 0; + padding: 50px; + font: normal 14px/20px "DroidSansRegular", Arial, Helvetica, sans-serif; color: #444; background: #FAFAFA; background: url(/themes/page_gradient_radial.svg) 50% -300px no-repeat, url(/themes/page_gradient_linear.svg) 50% 0 repeat-x, #FAFAFA; - background-size: 1600px 600px, 100% 500px,auto; + background-size: 1600px 600px, 100% 500px, auto; } article { - border-right: 1.5px solid #9ab8ed; padding: 17px; + border-right: 1.5px solid #9ab8ed; + padding: 17px; border-radius: 1%; - -webkit-box-shadow: 3px 0px 20px -2px #7ba5e4; - -moz-box-shadow: 3px 0px 20px -2px #7ba5e4; - box-shadow: 3px 0px 20px -2px #7ba5e4; - -background: -webkit-radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); + box-shadow: 3px 0px 20px -2px #7ba5e4; + background: radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); } -article, footer { display:block; max-width:720px; margin:0 auto; } - article { padding:28px;} -footer { padding:0 28px; text-align:center; } - h1 { margin:0; font-size: 24px; line-height: 32px;color:#008CCC; text-transform: uppercase;} -a, a:visited { color:#577446; padding:4px; text-decoration:none; } -a:active, a:hover { color:#5dd912; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {background:#bc4a46;} -::selection {background:#bc4a46;} -::-moz-selection {background:#bc4a46;} -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } \ No newline at end of file +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + padding: 28px; +} + +footer { + padding: 0 28px; + text-align: center; +} + +h1 { + margin: 0; + font-size: 24px; + line-height: 32px; + color: #008CCC; + text-transform: uppercase; +} + +a, a:visited { + color: #577446; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #5dd912; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + background: #bc4a46; +} + +::selection { + background: #bc4a46; +} + +::-moz-selection { + background: #bc4a46; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; +} diff --git a/themes/solarized.css b/themes/solarized.css index 8990fb35..05919457 100644 --- a/themes/solarized.css +++ b/themes/solarized.css @@ -1,3 +1,91 @@ /*Solarized theme by Ethan Schoonover*/ /*Part of source code reused from the Open Sans Theme */ -@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Source+Code+Pro:700);html{padding:0;font-size:1em;background-color:#eee8d5}body{font-family:'Source Sans Pro',sans-serif;font-size:1.5em;font-weight:300;text-align:center;margin:0;background:none repeat scroll 0 0 #eee8d5}article,footer{text-align:center;margin:auto;max-width:100%}article{margin-top:0;padding:1.75em;color:#dc322f;text-align:center;position:relative;background:none repeat scroll 0 0 #002b36}article p{text-align:left;color:#93a1a1}article p:first-of-type{text-align:center;color:#b58900}article p:last-of-type{color:#268bd2}#gravatar{width:50px;border:5px solid #FFF;border-radius:15px;display:block;margin:0 auto}h1{font-size:2em;font-weight:700;text-transform:uppercase;display:inline-block;padding-bottom:12px;border-bottom:2px dashed #dc322f;margin:0}a{font-family:'Source Sans Pro',sans-serif;font-size:1em;font-weight:700;color:#859900;text-decoration:none;word-wrap:break-word}a:active,a:focus,a:hover{color:#d33682}@media screen and (min-width:960px){#gravatar{display: none;position:absolute;top:2em;left:2em}h1{font-size:2.5em}}sour +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Source+Code+Pro:700); + +html { + padding: 0; + font-size: 1em; + background-color: #eee8d5 +} + +body { + font-family: 'Source Sans Pro', sans-serif; + font-size: 1.5em; + font-weight: 300; + text-align: center; + margin: 0; + background: none repeat scroll 0 0 #eee8d5 +} + +article, footer { + text-align: center; + margin: auto; + max-width: 100% +} + +article { + margin-top: 0; + padding: 1.75em; + color: #dc322f; + text-align: center; + position: relative; + background: none repeat scroll 0 0 #002b36 +} + +article p { + text-align: left; + color: #93a1a1 +} + +article p:first-of-type { + text-align: center; + color: #b58900 +} + +article p:last-of-type { + color: #268bd2 +} + +#gravatar { + width: 50px; + border: 5px solid #FFF; + border-radius: 15px; + display: block; + margin: 0 auto +} + +h1 { + font-size: 2em; + font-weight: 700; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #dc322f; + margin: 0 +} + +a { + font-family: 'Source Sans Pro', sans-serif; + font-size: 1em; + font-weight: 700; + color: #859900; + text-decoration: none; + word-wrap: break-word +} + +a:active, a:focus, a:hover { + color: #d33682 +} + +@media screen and (min-width:960px) { + #gravatar { + display: none; + position: absolute; + top: 2em; + left: 2em + } + + h1 { + font-size: 2.5em + } +} diff --git a/themes/willpower.css b/themes/willpower.css index 04cebcc5..b163da77 100644 --- a/themes/willpower.css +++ b/themes/willpower.css @@ -1,14 +1,72 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400,700); -* { margin: 0; padding: 0; box-sizing: boder-box; } -img { border: 0; } -body { background: #fff; font: 16px/28px "Roboto", sans-serif; color: #888; } -article, footer { display: block; max-width: 720px; margin: 0 auto; } -article { padding: 20px; } -footer { padding: 0 20px; text-align: center; font-size: 12px; } -h1 { font-size: 24px; line-height: 32px; color: #399; } -a, a:visited { color: #369; padding:4px; text-decoration:none; } -a:active, a:hover { text-decoration: underline;} -a img { position: absolute; top: 0; right: 0; } -article p { margin: 10px 0; } -article p:last-child {border-left: 2px solid #399; padding-left: 10px; } -#gravatar { float:right; margin:1em; width:80px; height:80px; border-radius:40px; } \ No newline at end of file + +* { + margin: 0; + padding: 0; + box-sizing: boder-box; +} + +img { + border: 0; +} + +body { + background: #fff; + font: 16px/28px "Roboto", sans-serif; + color: #888; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + padding: 20px; +} + +footer { + padding: 0 20px; + text-align: center; + font-size: 12px; +} + +h1 { + font-size: 24px; + line-height: 32px; + color: #399; +} + +a, a:visited { + color: #369; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + text-decoration: underline; +} + +a img { + position: absolute; + top: 0; + right: 0; +} + +article p { + margin: 10px 0; +} + +article p:last-child { + border-left: 2px solid #399; + padding-left: 10px; +} + +#gravatar { + float: right; + margin: 1em; + width: 80px; + height: 80px; + border-radius: 40px; +} diff --git a/themes/xtansia.css b/themes/xtansia.css index 8790fe1f..c35303c7 100644 --- a/themes/xtansia.css +++ b/themes/xtansia.css @@ -67,8 +67,8 @@ a:active { } #gravatar { - position: relative; - float: right; - border: 2px solid gray; - top: -1em; -} \ No newline at end of file + position: relative; + float: right; + border: 2px solid gray; + top: -1em; +} diff --git a/users/$abas.json b/users/$abas.json deleted file mode 100644 index 92ad1835..00000000 --- a/users/$abas.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme" : "default" -} \ No newline at end of file diff --git a/users/1000ch.json b/users/1000ch.json index 62ddc0ef..e9f811bf 100644 --- a/users/1000ch.json +++ b/users/1000ch.json @@ -1 +1,5 @@ -{"copyright":"Shogo Sensui","url":"http:\/\/1000ch.net","email":"shogo.sensui@gmail.com"} \ No newline at end of file +{ + "copyright": "Shogo Sensui", + "url": "http://1000ch.net", + "email": "shogo.sensui@gmail.com" +} diff --git a/users/10kb.json b/users/10kb.json index 8fb4055d..7d316307 100644 --- a/users/10kb.json +++ b/users/10kb.json @@ -1 +1,6 @@ -{"copyright":"10KB","url":"http:\/\/10kb.nl","email":"info@10kb.nl","gravatar":true} \ No newline at end of file +{ + "copyright": "10KB", + "url": "http://10kb.nl", + "email": "info@10kb.nl", + "gravatar": true +} diff --git a/users/15minuteslate.json b/users/15minuteslate.json index f45a5180..2c4e527d 100644 --- a/users/15minuteslate.json +++ b/users/15minuteslate.json @@ -1 +1,7 @@ -{"copyright":"15minuteslate","url":"http:\/\/15minuteslate.net","email":"hi@15minuteslate.net","format":"html","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "15minuteslate", + "url": "http://15minuteslate.net", + "email": "hi@15minuteslate.net", + "format": "html", + "theme": "afterdark" +} diff --git a/users/1up.json b/users/1up.json index 4304d665..8048194c 100644 --- a/users/1up.json +++ b/users/1up.json @@ -1 +1,6 @@ -{"copyright":"1UP, http:\/\/1upnote.com","url":"http:\/\/1upnote.com","email":"1up@1upz.com","format":"html"} \ No newline at end of file +{ + "copyright": "1UP, http://1upnote.com", + "url": "http://1upnote.com", + "email": "1up@1upz.com", + "format": "html" +} diff --git a/users/2nate.json b/users/2nate.json index 3c1165d2..674a195b 100644 --- a/users/2nate.json +++ b/users/2nate.json @@ -1 +1,6 @@ -{"copyright":"2nate","url":"http:\/\/2nate.com","email":"post@2nate.com","format":"html"} \ No newline at end of file +{ + "copyright": "2nate", + "url": "http://2nate.com", + "email": "post@2nate.com", + "format": "html" +} diff --git a/users/321maker.json b/users/321maker.json index ec486310..dd1d937a 100644 --- a/users/321maker.json +++ b/users/321maker.json @@ -1 +1,6 @@ -{"copyright":"321Maker","url":"http:\/\/321maker.com","email":"maker@321maker.com","format":"html"} \ No newline at end of file +{ + "copyright": "321Maker", + "url": "http://321maker.com", + "email": "maker@321maker.com", + "format": "html" +} diff --git a/users/360slider.json b/users/360slider.json index 40918f59..85e067d0 100644 --- a/users/360slider.json +++ b/users/360slider.json @@ -1 +1,6 @@ -{"copyright":"360 Slider","url":"http:\/\/360slider.com","email":"gaurav@jassal.me","format":"txt"} \ No newline at end of file +{ + "copyright": "360 Slider", + "url": "http://360slider.com", + "email": "gaurav@jassal.me", + "format": "txt" +} diff --git a/users/3846.json b/users/3846.json index 356e4f6b..fa510d7d 100644 --- a/users/3846.json +++ b/users/3846.json @@ -1 +1,4 @@ -{"copyright":"3846masa","url":"https:\/\/github.com\/3846masa"} \ No newline at end of file +{ + "copyright": "3846masa", + "url": "https://github.com/3846masa" +} diff --git a/users/3846masa.json b/users/3846masa.json index 356e4f6b..fa510d7d 100644 --- a/users/3846masa.json +++ b/users/3846masa.json @@ -1 +1,4 @@ -{"copyright":"3846masa","url":"https:\/\/github.com\/3846masa"} \ No newline at end of file +{ + "copyright": "3846masa", + "url": "https://github.com/3846masa" +} diff --git a/users/4soft.json b/users/4soft.json index 83b1f9d8..e2ab35a4 100644 --- a/users/4soft.json +++ b/users/4soft.json @@ -1 +1,3 @@ -{"copyright":"4Soft"} \ No newline at end of file +{ + "copyright": "4Soft" +} diff --git a/users/4thace.json b/users/4thace.json index 03ee5833..51212ac0 100644 --- a/users/4thace.json +++ b/users/4thace.json @@ -1 +1,6 @@ -{"copyright":"Richard Magahiz","url":"https:\/\/magahiz.com","email":"frabdango@magahiz.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Richard Magahiz", + "url": "https://magahiz.com", + "email": "frabdango@magahiz.com", + "format": "txt" +} diff --git a/users/5310.json b/users/5310.json index 786189ff..b119e8a1 100644 --- a/users/5310.json +++ b/users/5310.json @@ -1 +1,7 @@ -{"copyright":"Sayantan Chaudhuri","url":"https:\/\/google.com\/+SayantanChaudhuri\/about","email":"sayantan.chaudhuri@gmail.com","theme":"plaintext","gravatar":true} \ No newline at end of file +{ + "copyright": "Sayantan Chaudhuri", + "url": "https://google.com/+SayantanChaudhuri/about", + "email": "sayantan.chaudhuri@gmail.com", + "theme": "plaintext", + "gravatar": true +} diff --git a/users/59.json b/users/59.json index 17d0635b..6ce5a758 100644 --- a/users/59.json +++ b/users/59.json @@ -1 +1,5 @@ -{"copyright":"59","url":"http:\/\/berabou.me","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "59", + "url": "http://berabou.me", + "theme": "afterdark" +} diff --git a/users/59naga.json b/users/59naga.json index 4d83907b..9e630cab 100644 --- a/users/59naga.json +++ b/users/59naga.json @@ -1 +1,4 @@ -{"copyright":"59naga","url":"http:\/\/berabou.me"} \ No newline at end of file +{ + "copyright": "59naga", + "url": "http://berabou.me" +} diff --git a/users/623hs.json b/users/623hs.json index 6251b5bd..852ba7b1 100644 --- a/users/623hs.json +++ b/users/623hs.json @@ -1 +1,5 @@ -{"copyright":"623HS","email":"z.tar.gz@gmail.com","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "623HS", + "email": "z.tar.gz@gmail.com", + "theme": "afterdark" +} diff --git a/users/6n38.json b/users/6n38.json index cd40d64e..08dac878 100644 --- a/users/6n38.json +++ b/users/6n38.json @@ -1,6 +1,6 @@ { - "copyright": "Elena", - "URL": "http://6n38.jp", - "format": "html", - "theme": "material-light-blue" + "copyright": "Elena", + "URL": "http://6n38.jp", + "format": "html", + "theme": "material-light-blue" } diff --git a/users/844196.json b/users/844196.json index cf672c79..49c39372 100644 --- a/users/844196.json +++ b/users/844196.json @@ -1 +1,4 @@ -{"copyright":"Masaya Tk","url":"http:\/\/104.844196.com\/"} \ No newline at end of file +{ + "copyright": "Masaya Tk", + "url": "http://104.844196.com/" +} diff --git a/users/9joneg.json b/users/9joneg.json index c7443037..4c461429 100644 --- a/users/9joneg.json +++ b/users/9joneg.json @@ -1 +1,3 @@ -{"copyright":"9joneg"} \ No newline at end of file +{ + "copyright": "9joneg" +} diff --git a/users/DanielArthurUK.json b/users/DanielArthurUK.json index f4fdb7d9..7178821a 100644 --- a/users/DanielArthurUK.json +++ b/users/DanielArthurUK.json @@ -1,6 +1,6 @@ { - "copyright":"Daniel Arthur, https://danielarthur.uk", - "url":"https://danielarthur.uk", + "copyright": "Daniel Arthur, https://danielarthur.uk", + "url": "https://danielarthur.uk", "email": "me@danielarthur.uk", "gravatar": "true" } diff --git a/users/SITZ.json b/users/SITZ.json index bdec8461..4b33865e 100644 --- a/users/SITZ.json +++ b/users/SITZ.json @@ -1,8 +1,8 @@ { - "copyright": "Sitesh Shrivastava", - "url": "http://www.siteshshrivastava.com", - "email": "siteshshrivastava@gmail.com", - "format": "html", - "theme": "default", - "gravatar": true -} \ No newline at end of file + "copyright": "Sitesh Shrivastava", + "url": "http://www.siteshshrivastava.com", + "email": "siteshshrivastava@gmail.com", + "format": "html", + "theme": "default", + "gravatar": true +} diff --git a/users/a-tech.json b/users/a-tech.json index de203487..1b9f0355 100644 --- a/users/a-tech.json +++ b/users/a-tech.json @@ -1 +1,3 @@ -{"copyright":"Alplax Technologies"} \ No newline at end of file +{ + "copyright": "Alplax Technologies" +} diff --git a/users/a.json b/users/a.json index 7a76b929..80389da7 100644 --- a/users/a.json +++ b/users/a.json @@ -1 +1,6 @@ -{"copyright":"Austin Pray","url":"http:\/\/austinpray.com.com","email":"austin@austinpray.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Austin Pray", + "url": "http://austinpray.com.com", + "email": "austin@austinpray.com", + "format": "txt" +} diff --git a/users/aaaaaa.json b/users/aaaaaa.json index dbd965d1..61109e89 100644 --- a/users/aaaaaa.json +++ b/users/aaaaaa.json @@ -1 +1,6 @@ -{"copyright":"Aa Aa","url":"http:\/\/aaaaa.com","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Aa Aa", + "url": "http://aaaaa.com", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/aarjithn.json b/users/aarjithn.json index 6916f22f..97b41eeb 100644 --- a/users/aarjithn.json +++ b/users/aarjithn.json @@ -1 +1,6 @@ -{"copyright":"Aarjith Nandakumar","url":"http:\/\/aarjithn.github.io","email":"aarjithn[at]gmail.com","gravatar":"true"} \ No newline at end of file +{ + "copyright": "Aarjith Nandakumar", + "url": "http://aarjithn.github.io", + "email": "aarjithn[at]gmail.com", + "gravatar": "true" +} diff --git a/users/aaroncaito.json b/users/aaroncaito.json index c786526b..a95dcb7f 100644 --- a/users/aaroncaito.json +++ b/users/aaroncaito.json @@ -1 +1,6 @@ -{"copyright":"Aaron Caito","url":"http:\/\/csw.io","email":"aaron@csw.io","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Aaron Caito", + "url": "http://csw.io", + "email": "aaron@csw.io", + "theme": "double-windsor" +} diff --git a/users/aashutoshrathi.json b/users/aashutoshrathi.json index 5e8ca80f..2573ae67 100644 --- a/users/aashutoshrathi.json +++ b/users/aashutoshrathi.json @@ -1,7 +1,7 @@ -{ - "copyright": "Aashutosh Rathi", - "url": "http://aashutoshrathi.co", - "email": "aashutoshrathi@gmail.com", - "format": "txt", - "theme": "dusk" +{ + "copyright": "Aashutosh Rathi", + "url": "http://aashutoshrathi.co", + "email": "aashutoshrathi@gmail.com", + "format": "txt", + "theme": "dusk" } diff --git a/users/aayush.json b/users/aayush.json index cbfcc185..19f85ef3 100644 --- a/users/aayush.json +++ b/users/aayush.json @@ -1,6 +1,6 @@ { - "copyright": "Aayush Jain", - "email": "aayush.2896@gmail.com", - "gravatar": true, - "theme": "dusk" + "copyright": "Aayush Jain", + "email": "aayush.2896@gmail.com", + "gravatar": true, + "theme": "dusk" } diff --git a/users/ab2d.json b/users/ab2d.json index 0744e4d6..a182d4d2 100644 --- a/users/ab2d.json +++ b/users/ab2d.json @@ -1 +1,3 @@ -{"copyright":"Remy Sharp A"} \ No newline at end of file +{ + "copyright": "Remy Sharp A" +} diff --git a/users/abas.json b/users/abas.json index 92ad1835..ebb90a16 100644 --- a/users/abas.json +++ b/users/abas.json @@ -4,5 +4,5 @@ "format": "txt", "email": "omidgharib@yahoo.com", "gravatar": true, - "theme" : "default" -} \ No newline at end of file + "theme": "default" +} diff --git a/users/abitgone.json b/users/abitgone.json index 90fcd068..c8fe9289 100644 --- a/users/abitgone.json +++ b/users/abitgone.json @@ -1 +1,7 @@ -{"copyright":"Anthony Williams","url":"http:\/\/abitgone.co.uk","email":"anthony@abitgone.co.uk","format":"html","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Anthony Williams", + "url": "http://abitgone.co.uk", + "email": "anthony@abitgone.co.uk", + "format": "html", + "theme": "flesch" +} diff --git a/users/abnersajr.json b/users/abnersajr.json index 0bc0b1c0..973f477e 100644 --- a/users/abnersajr.json +++ b/users/abnersajr.json @@ -1 +1,6 @@ -{ "copyright": "Abner Soares Alves Junior", "url": "http://abnersajr.net", "email": "me@abnersajr.net", "format": "html" } +{ + "copyright": "Abner Soares Alves Junior", + "url": "http://abnersajr.net", + "email": "me@abnersajr.net", + "format": "html" +} diff --git a/users/abovethewater.json b/users/abovethewater.json index 9a48620c..83561ef8 100644 --- a/users/abovethewater.json +++ b/users/abovethewater.json @@ -1 +1,6 @@ -{"copyright":"Joe Mathews","url":"http:\/\/abovethewater.co.uk","email":"joe@abovethewater.co.uk","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Joe Mathews", + "url": "http://abovethewater.co.uk", + "email": "joe@abovethewater.co.uk", + "theme": "double-windsor" +} diff --git a/users/abrambleninja.json b/users/abrambleninja.json index ccbd38f9..08989764 100644 --- a/users/abrambleninja.json +++ b/users/abrambleninja.json @@ -1 +1,4 @@ -{ "copyright": "ABrambleNinja", "url": "http://boj.cc"} +{ + "copyright": "ABrambleNinja", + "url": "http://boj.cc" +} diff --git a/users/abuasmaa.json b/users/abuasmaa.json index 0e0d6e36..effb9f65 100644 --- a/users/abuasmaa.json +++ b/users/abuasmaa.json @@ -1 +1,3 @@ -{"copyright":"Abd Al-Ala Camara"} \ No newline at end of file +{ + "copyright": "Abd Al-Ala Camara" +} diff --git a/users/abulava.json b/users/abulava.json index fbbe4b8b..a85625e6 100644 --- a/users/abulava.json +++ b/users/abulava.json @@ -1 +1,6 @@ -{"copyright":"Andrey Bulava","email":"abulava@gmail.com","gravatar":true,"theme":"material-indigo"} \ No newline at end of file +{ + "copyright": "Andrey Bulava", + "email": "abulava@gmail.com", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/ac.json b/users/ac.json index e8de7a5d..f3a4d86a 100644 --- a/users/ac.json +++ b/users/ac.json @@ -1 +1,5 @@ -{"copyright":"Alan Cohen","url":"https:\/\/twitter.com\/alan_mit","email":"alan.mit@gmail.com"} \ No newline at end of file +{ + "copyright": "Alan Cohen", + "url": "https://twitter.com/alan_mit", + "email": "alan.mit@gmail.com" +} diff --git a/users/acaua.json b/users/acaua.json index 85bdb778..0a397b6e 100644 --- a/users/acaua.json +++ b/users/acaua.json @@ -1 +1,5 @@ -{"copyright":"Acauã Montiel","url":"http:\/\/acauamontiel.com.br","email":"contato@acauamontiel.com.br"} +{ + "copyright": "Acauã Montiel", + "url": "http://acauamontiel.com.br", + "email": "contato@acauamontiel.com.br" +} diff --git a/users/acenode.json b/users/acenode.json index 4b232c2d..d5dbdc2c 100644 --- a/users/acenode.json +++ b/users/acenode.json @@ -1 +1,6 @@ -{"copyright":"AceNode","url":"http:\/\/acenode.com https:\/\/github.com\/acenode","email":"open@acenode.com","format":"txt"} \ No newline at end of file +{ + "copyright": "AceNode", + "url": "http://acenode.com https://github.com/acenode", + "email": "open@acenode.com", + "format": "txt" +} diff --git a/users/achilles.json b/users/achilles.json index 7e726916..dcc74cf3 100644 --- a/users/achilles.json +++ b/users/achilles.json @@ -1 +1,6 @@ -{"copyright":"Achillefs Charmpilas","url":"http:\/\/humbuckercode.co.uk\/licks\/","email":"ac@humbuckercode.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "Achillefs Charmpilas", + "url": "http://humbuckercode.co.uk/licks/", + "email": "ac@humbuckercode.co.uk", + "format": "txt" +} diff --git a/users/achun.json b/users/achun.json index c3fe9c23..dbad66ee 100644 --- a/users/achun.json +++ b/users/achun.json @@ -1 +1,3 @@ -{"copyright":"achun, achun.shx@qq.com"} \ No newline at end of file +{ + "copyright": "achun, achun.shx@qq.com" +} diff --git a/users/aclemen1.json b/users/aclemen1.json index dbc5a766..00dc229c 100644 --- a/users/aclemen1.json +++ b/users/aclemen1.json @@ -1 +1,6 @@ -{"copyright":"Alain Cl\u00e9ment-Pavon","email":"alain.clement-pavon@unil.ch","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Alain Clément-Pavon", + "email": "alain.clement-pavon@unil.ch", + "format": "txt", + "gravatar": true +} diff --git a/users/acolchado.json b/users/acolchado.json index 18c3e118..f899d99d 100644 --- a/users/acolchado.json +++ b/users/acolchado.json @@ -1 +1,3 @@ -{"copyright":"Agustin Colchado"} \ No newline at end of file +{ + "copyright": "Agustin Colchado" +} diff --git a/users/adafruit.json b/users/adafruit.json index 64007537..ad719628 100644 --- a/users/adafruit.json +++ b/users/adafruit.json @@ -1 +1,3 @@ -{"copyright":"Adafruit"} \ No newline at end of file +{ + "copyright": "Adafruit" +} diff --git a/users/adam-lynch.json b/users/adam-lynch.json index ef35f018..32c4fd77 100644 --- a/users/adam-lynch.json +++ b/users/adam-lynch.json @@ -1 +1,6 @@ -{"copyright":"Adam Lynch","url":"http:\/\/adamlynch.ie","email":"contact@adamlynch.ie","format":"txt"} \ No newline at end of file +{ + "copyright": "Adam Lynch", + "url": "http://adamlynch.ie", + "email": "contact@adamlynch.ie", + "format": "txt" +} diff --git a/users/adam.json b/users/adam.json index 1fa017d4..782e162b 100644 --- a/users/adam.json +++ b/users/adam.json @@ -1,7 +1,7 @@ { - "copyright": "Adam Demasi", - "url": "http://kirb.me/", - "email": "adam@hbang.ws", - "gravatar": true, - "theme": "solarized" + "copyright": "Adam Demasi", + "url": "http://kirb.me/", + "email": "adam@hbang.ws", + "gravatar": true, + "theme": "solarized" } diff --git a/users/adamh.json b/users/adamh.json index fc4df2f3..d56b2fce 100644 --- a/users/adamh.json +++ b/users/adamh.json @@ -1 +1,4 @@ -{"copyright":"Adam Holt","url":"http:\/\/adamholt.co.uk\/"} \ No newline at end of file +{ + "copyright": "Adam Holt", + "url": "http://adamholt.co.uk/" +} diff --git a/users/adampritchard.json b/users/adampritchard.json index 9970d963..ff6a204e 100644 --- a/users/adampritchard.json +++ b/users/adampritchard.json @@ -1 +1,3 @@ -{"copyright":"Adam Pritchard"} \ No newline at end of file +{ + "copyright": "Adam Pritchard" +} diff --git a/users/adamreeve.json b/users/adamreeve.json index e3598bb8..cef53082 100644 --- a/users/adamreeve.json +++ b/users/adamreeve.json @@ -1 +1,5 @@ -{"copyright":"Adam Reeve, http:\/\/adamreeve.com","url":"http:\/\/adamreeve.com","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Adam Reeve, http://adamreeve.com", + "url": "http://adamreeve.com", + "theme": "friendly" +} diff --git a/users/adamroberts.json b/users/adamroberts.json index 7d99ac9d..b525471c 100644 --- a/users/adamroberts.json +++ b/users/adamroberts.json @@ -1 +1,3 @@ -{"copyright":"Adam Roberts"} \ No newline at end of file +{ + "copyright": "Adam Roberts" +} diff --git a/users/aditya.json b/users/aditya.json index e31a57f8..d1084a11 100644 --- a/users/aditya.json +++ b/users/aditya.json @@ -1 +1,6 @@ -{"copyright":"Aditya Prakash","url":"http:\/\/adityaprakash.in","email":"me@adityaprakash.in","format":"html"} \ No newline at end of file +{ + "copyright": "Aditya Prakash", + "url": "http://adityaprakash.in", + "email": "me@adityaprakash.in", + "format": "html" +} diff --git a/users/adjohnson916.json b/users/adjohnson916.json index 3c6903e3..c002ae60 100644 --- a/users/adjohnson916.json +++ b/users/adjohnson916.json @@ -1,4 +1,4 @@ { "copyright": "Anders D. Johnson, http://andrz.me", "url": "http://andrz.me" -} \ No newline at end of file +} diff --git a/users/adopi.json b/users/adopi.json index edbe1ab1..6726872e 100644 --- a/users/adopi.json +++ b/users/adopi.json @@ -1 +1,5 @@ -{"copyright":"Adonis Najimi","email":"adopi.naj@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Adonis Najimi", + "email": "adopi.naj@gmail.com", + "format": "html" +} diff --git a/users/adthul.json b/users/adthul.json index 333a42b5..c0dc0a9f 100644 --- a/users/adthul.json +++ b/users/adthul.json @@ -1 +1,6 @@ -{"copyright":"Andy Thul","email":"thul.andy@gmail.com","gravatar":true,"theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Andy Thul", + "email": "thul.andy@gmail.com", + "gravatar": true, + "theme": "xtansia" +} diff --git a/users/ael.json b/users/ael.json index 9b68f1c5..3bb31e99 100644 --- a/users/ael.json +++ b/users/ael.json @@ -1 +1,4 @@ -{"copyright":"Futoshi Takeo","url":"http:\/\/ael.aquilegia.info\/"} \ No newline at end of file +{ + "copyright": "Futoshi Takeo", + "url": "http://ael.aquilegia.info/" +} diff --git a/users/aen.json b/users/aen.json index 28159313..19631cb8 100644 --- a/users/aen.json +++ b/users/aen.json @@ -1 +1,3 @@ -{"copyright":"Aen Tan"} \ No newline at end of file +{ + "copyright": "Aen Tan" +} diff --git a/users/aendrew.json b/users/aendrew.json index d6871d29..06d7a397 100644 --- a/users/aendrew.json +++ b/users/aendrew.json @@ -1 +1,5 @@ -{"copyright":"\u00c6ndrew Rininsland","url":"http:\/\/aendrew.com","email":"aendrew@aendrew.com"} \ No newline at end of file +{ + "copyright": "Ændrew Rininsland", + "url": "http://aendrew.com", + "email": "aendrew@aendrew.com" +} diff --git a/users/aergonaut.json b/users/aergonaut.json index 1b5eff67..6d915aaf 100644 --- a/users/aergonaut.json +++ b/users/aergonaut.json @@ -1 +1,4 @@ -{"copyright":"Chris Fung","url":"https:\/\/github.com\/aergonaut"} \ No newline at end of file +{ + "copyright": "Chris Fung", + "url": "https://github.com/aergonaut" +} diff --git a/users/aetheris.json b/users/aetheris.json index 22032fc8..6f737cfd 100644 --- a/users/aetheris.json +++ b/users/aetheris.json @@ -1 +1,4 @@ -{"copyright":"Alex Cai","email":"alex.cai@uwaterloo.ca"} \ No newline at end of file +{ + "copyright": "Alex Cai", + "email": "alex.cai@uwaterloo.ca" +} diff --git a/users/af.json b/users/af.json index f19dbcf4..a0c6e80d 100644 --- a/users/af.json +++ b/users/af.json @@ -1,7 +1,7 @@ { - "copyright": "Stanislav Lechev [AngelFire], http://0xAF.org", - "url": "http://0xAF.org", - "email": "af@0xAF.org", - "gravatar": true, - "theme": "dusk" + "copyright": "Stanislav Lechev [AngelFire], http://0xAF.org", + "url": "http://0xAF.org", + "email": "af@0xAF.org", + "gravatar": true, + "theme": "dusk" } diff --git a/users/afein.json b/users/afein.json index 7e39592e..eb304d76 100644 --- a/users/afein.json +++ b/users/afein.json @@ -1 +1,4 @@ -{"copyright":"Alex Mavrogiannis","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Alex Mavrogiannis", + "theme": "double-windsor" +} diff --git a/users/afghah.json b/users/afghah.json index ba781522..2a944b68 100644 --- a/users/afghah.json +++ b/users/afghah.json @@ -1 +1,3 @@ -{"copyright":"Ali Afghah"} \ No newline at end of file +{ + "copyright": "Ali Afghah" +} diff --git a/users/afiore.json b/users/afiore.json index 59e9b5e4..d7b6cbbf 100644 --- a/users/afiore.json +++ b/users/afiore.json @@ -1 +1,3 @@ -{"copyright":"Andrea Fiore"} \ No newline at end of file +{ + "copyright": "Andrea Fiore" +} diff --git a/users/afonsof.json b/users/afonsof.json index 0b859e40..f807d5e7 100644 --- a/users/afonsof.json +++ b/users/afonsof.json @@ -1 +1,7 @@ -{"copyright":"Afonso F","url":"http:\/\/afonsof.com","email":"me@afonsof.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Afonso F", + "url": "http://afonsof.com", + "email": "me@afonsof.com", + "format": "html", + "gravatar": true +} diff --git a/users/agentmilindu.json b/users/agentmilindu.json index ee6c3e68..5e5b38f5 100644 --- a/users/agentmilindu.json +++ b/users/agentmilindu.json @@ -1 +1,7 @@ -{"copyright":"Milindu Sanoj Kumarage","url":"http:\/\/agentmilindu.com","email":"agentmilindu@gmail.com","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Milindu Sanoj Kumarage", + "url": "http://agentmilindu.com", + "email": "agentmilindu@gmail.com", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/ago6e.json b/users/ago6e.json index 8f90a705..c0faaa37 100644 --- a/users/ago6e.json +++ b/users/ago6e.json @@ -1 +1,5 @@ -{"copyright":"Futoshi Takeo","url":"http:\/\/code.google.com\/p\/ago6e-libraries\/","format":"txt"} \ No newline at end of file +{ + "copyright": "Futoshi Takeo", + "url": "http://code.google.com/p/ago6e-libraries/", + "format": "txt" +} diff --git a/users/ahaasler.json b/users/ahaasler.json index 8b874d04..8e9ebdf8 100644 --- a/users/ahaasler.json +++ b/users/ahaasler.json @@ -1,5 +1,5 @@ { - "copyright": "Adrian Haasler García", + "copyright": "Adrian Haasler García", "url": "https://www.adrianhaasler.com", "email": "dev@adrianhaasler.com", "format": "html", diff --git a/users/aheissenberger.json b/users/aheissenberger.json index 6bb4beca..2ccd0fd7 100644 --- a/users/aheissenberger.json +++ b/users/aheissenberger.json @@ -1 +1,3 @@ -{"copyright":"Andreas Heissenberger"} \ No newline at end of file +{ + "copyright": "Andreas Heissenberger" +} diff --git a/users/ahluntang.json b/users/ahluntang.json index 3408a2ce..07a284e5 100644 --- a/users/ahluntang.json +++ b/users/ahluntang.json @@ -1 +1,6 @@ -{"copyright":"Ah-Lun Tang","url":"http:\/\/ahlun.be","email":"tang@ahlun.be","format":"txt"} \ No newline at end of file +{ + "copyright": "Ah-Lun Tang", + "url": "http://ahlun.be", + "email": "tang@ahlun.be", + "format": "txt" +} diff --git a/users/ahmet.json b/users/ahmet.json index 20b00d1b..b1fbdff2 100644 --- a/users/ahmet.json +++ b/users/ahmet.json @@ -1 +1,5 @@ -{"copyright":"Ahmet AYGUN","url":"http://github.com/ahmet","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Ahmet AYGUN", + "url": "http://github.com/ahmet", + "theme": "flesch" +} diff --git a/users/ahsanhabib.json b/users/ahsanhabib.json index fb71b34a..3c60afc3 100644 --- a/users/ahsanhabib.json +++ b/users/ahsanhabib.json @@ -1 +1,3 @@ -{"copyright":"Ahsan Habib"} \ No newline at end of file +{ + "copyright": "Ahsan Habib" +} diff --git a/users/aike.json b/users/aike.json index 8906d2af..cfe17497 100644 --- a/users/aike.json +++ b/users/aike.json @@ -1 +1,4 @@ -{"copyright":"aike","url":"https:\/\/github.com\/aike"} \ No newline at end of file +{ + "copyright": "aike", + "url": "https://github.com/aike" +} diff --git a/users/ailen0ada.json b/users/ailen0ada.json index 4dc6a3b1..c4d21bb2 100644 --- a/users/ailen0ada.json +++ b/users/ailen0ada.json @@ -1 +1,4 @@ -{"copyright":"Tsubasa HIRANO","url":"https:\/\/github.com\/ailen0ada"} \ No newline at end of file +{ + "copyright": "Tsubasa HIRANO", + "url": "https://github.com/ailen0ada" +} diff --git a/users/airtonix.json b/users/airtonix.json index 65cf5c1a..3071107d 100644 --- a/users/airtonix.json +++ b/users/airtonix.json @@ -1 +1,6 @@ -{"copyright":"Zenobius Jiricek","url":"http:\/\/airtonix.net","email":"airtonix@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Zenobius Jiricek", + "url": "http://airtonix.net", + "email": "airtonix@gmail.com", + "format": "txt" +} diff --git a/users/aj9.json b/users/aj9.json index 198e6e08..7353a491 100644 --- a/users/aj9.json +++ b/users/aj9.json @@ -1 +1,4 @@ -{"copyright":"Adam Gask","url":"http:\/\/aj9.github.io"} \ No newline at end of file +{ + "copyright": "Adam Gask", + "url": "http://aj9.github.io" +} diff --git a/users/ajay.json b/users/ajay.json index 3a4e11fd..7821f60a 100644 --- a/users/ajay.json +++ b/users/ajay.json @@ -1 +1,3 @@ -{"copyright":"Ajay Raj"} \ No newline at end of file +{ + "copyright": "Ajay Raj" +} diff --git a/users/ajmal.json b/users/ajmal.json index b11238bc..0da2835a 100644 --- a/users/ajmal.json +++ b/users/ajmal.json @@ -1 +1,4 @@ -{"copyright":"Ajmal Eylia","url":"http:\/\/ajmaleylia.com"} \ No newline at end of file +{ + "copyright": "Ajmal Eylia", + "url": "http://ajmaleylia.com" +} diff --git a/users/ajmichael.json b/users/ajmichael.json index 3c5562c7..4b5344f1 100644 --- a/users/ajmichael.json +++ b/users/ajmichael.json @@ -1 +1,4 @@ -{"copyright":"Adam Michael","email":"adam@ajmichael.net"} +{ + "copyright": "Adam Michael", + "email": "adam@ajmichael.net" +} diff --git a/users/ajsquared.json b/users/ajsquared.json index 26e6a6ab..b1885b44 100644 --- a/users/ajsquared.json +++ b/users/ajsquared.json @@ -1 +1,6 @@ -{"copyright":"Andrew Johnson","url":"http:\/\/andrewjamesjohnson.com","email":"andrew@andrewjamesjohnson.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Andrew Johnson", + "url": "http://andrewjamesjohnson.com", + "email": "andrew@andrewjamesjohnson.com", + "theme": "double-windsor" +} diff --git a/users/ak.json b/users/ak.json index 2270e54c..289ec8af 100644 --- a/users/ak.json +++ b/users/ak.json @@ -1 +1,3 @@ -{"copyright":"Abhishek Kandoi"} \ No newline at end of file +{ + "copyright": "Abhishek Kandoi" +} diff --git a/users/akash.json b/users/akash.json index 7bed0d0d..7d5f93c3 100644 --- a/users/akash.json +++ b/users/akash.json @@ -1 +1,6 @@ -{"copyright":"Akash Kothawale","url":"https:\/\/decached.com","email":"akash@decached.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Akash Kothawale", + "url": "https://decached.com", + "email": "akash@decached.com", + "format": "txt" +} diff --git a/users/akervern.json b/users/akervern.json index 56bc42e4..4b0ae7ab 100644 --- a/users/akervern.json +++ b/users/akervern.json @@ -1 +1,3 @@ -{"copyright":"Arnaud Kervern"} \ No newline at end of file +{ + "copyright": "Arnaud Kervern" +} diff --git a/users/akizor.json b/users/akizor.json index 777b777b..69e50f91 100644 --- a/users/akizor.json +++ b/users/akizor.json @@ -1,7 +1,7 @@ { - "copyright": "Daniel Plăcintă", + "copyright": "Daniel Plăcintă", "url": "http://artgames.ro", - "email":"daniel@artgames.ro", - "gravatar":true, - "theme":"flesch" + "email": "daniel@artgames.ro", + "gravatar": true, + "theme": "flesch" } diff --git a/users/akkartik.json b/users/akkartik.json index 989abe48..52d45821 100644 --- a/users/akkartik.json +++ b/users/akkartik.json @@ -1 +1,3 @@ -{"copyright":"Kartik Agaram"} \ No newline at end of file +{ + "copyright": "Kartik Agaram" +} diff --git a/users/akky.json b/users/akky.json index f0931116..c8514f52 100644 --- a/users/akky.json +++ b/users/akky.json @@ -1 +1,3 @@ -{"copyright":"Akky AKIMOTO"} \ No newline at end of file +{ + "copyright": "Akky AKIMOTO" +} diff --git a/users/aknosis.json b/users/aknosis.json index a262094c..e674427a 100644 --- a/users/aknosis.json +++ b/users/aknosis.json @@ -1 +1,4 @@ -{"copyright":"Paul Giberson","url":"http:\/\/aknosis.com"} \ No newline at end of file +{ + "copyright": "Paul Giberson", + "url": "http://aknosis.com" +} diff --git a/users/akshay.json b/users/akshay.json index a2e092bb..3c1c2790 100644 --- a/users/akshay.json +++ b/users/akshay.json @@ -1 +1,3 @@ -{"copyright":"Akshay Mhatre"} \ No newline at end of file +{ + "copyright": "Akshay Mhatre" +} diff --git a/users/akshaymhatre.json b/users/akshaymhatre.json index a2e092bb..3c1c2790 100644 --- a/users/akshaymhatre.json +++ b/users/akshaymhatre.json @@ -1 +1,3 @@ -{"copyright":"Akshay Mhatre"} \ No newline at end of file +{ + "copyright": "Akshay Mhatre" +} diff --git a/users/albertofdzm.json b/users/albertofdzm.json index be11bb67..10f38ced 100644 --- a/users/albertofdzm.json +++ b/users/albertofdzm.json @@ -1 +1,7 @@ -{"copyright":"Alberto Fernandez Medina, http:\/\/onlythepixel.com","url":"http:\/\/onlythepixel.com","email":"albertofdzm@gmail.com","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Alberto Fernandez Medina, http://onlythepixel.com", + "url": "http://onlythepixel.com", + "email": "albertofdzm@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/albertogasparin.json b/users/albertogasparin.json index 5e697b95..3c6bf140 100644 --- a/users/albertogasparin.json +++ b/users/albertogasparin.json @@ -1 +1,3 @@ -{"copyright":"Alberto Gasparin"} \ No newline at end of file +{ + "copyright": "Alberto Gasparin" +} diff --git a/users/alco.json b/users/alco.json index aa92f5d2..32ea8205 100644 --- a/users/alco.json +++ b/users/alco.json @@ -1 +1,3 @@ -{"copyright":"Ricardo Alcocer"} \ No newline at end of file +{ + "copyright": "Ricardo Alcocer" +} diff --git a/users/alcore.json b/users/alcore.json index d9273206..10444736 100644 --- a/users/alcore.json +++ b/users/alcore.json @@ -1 +1,8 @@ -{"copyright":"Michal Chojnacki, http:\/\/muyo.io","url":"http:\/\/muyo.io","email":"m.chojnacki@muyo.io","format":"html","theme":"flesch","gravatar":true} \ No newline at end of file +{ + "copyright": "Michal Chojnacki, http://muyo.io", + "url": "http://muyo.io", + "email": "m.chojnacki@muyo.io", + "format": "html", + "theme": "flesch", + "gravatar": true +} diff --git a/users/aldenquimby.json b/users/aldenquimby.json index 0060ca7e..a4b5c5e9 100644 --- a/users/aldenquimby.json +++ b/users/aldenquimby.json @@ -1 +1,6 @@ -{"copyright":"Alden Quimby","url":"http:\/\/www.aldenquimby.com","email":"aldenquimby@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Alden Quimby", + "url": "http://www.aldenquimby.com", + "email": "aldenquimby@gmail.com", + "gravatar": true +} diff --git a/users/aldoborrero.json b/users/aldoborrero.json index ea8dacda..0bb983bc 100644 --- a/users/aldoborrero.json +++ b/users/aldoborrero.json @@ -1 +1,3 @@ -{"copyright":"Aldo Borrero"} \ No newline at end of file +{ + "copyright": "Aldo Borrero" +} diff --git a/users/ale.json b/users/ale.json index 265ca84c..0dc69262 100644 --- a/users/ale.json +++ b/users/ale.json @@ -1 +1,6 @@ -{"copyright":"Alejandro Morales","url":"http:\/\/alejandromorales.co.cc","email":"alejandro@numbus.co","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Alejandro Morales", + "url": "http://alejandromorales.co.cc", + "email": "alejandro@numbus.co", + "theme": "double-windsor" +} diff --git a/users/aleksi.json b/users/aleksi.json index f19058d2..f6660e1b 100644 --- a/users/aleksi.json +++ b/users/aleksi.json @@ -1 +1,3 @@ -{"copyright":"Alexey Palazhchenko"} \ No newline at end of file +{ + "copyright": "Alexey Palazhchenko" +} diff --git a/users/alessioalex.json b/users/alessioalex.json index f4415cc2..22973ae5 100644 --- a/users/alessioalex.json +++ b/users/alessioalex.json @@ -1 +1,5 @@ -{"copyright":"Alexandru Vladutu","email":"alexandru.vladutu@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Alexandru Vladutu", + "email": "alexandru.vladutu@gmail.com", + "gravatar": true +} diff --git a/users/aleung.json b/users/aleung.json index 40e0d99a..2735e71e 100644 --- a/users/aleung.json +++ b/users/aleung.json @@ -1 +1,5 @@ -{"copyright":"Leo Liang","url":"https:\/\/github.com\/aleung","email":"leoliang@gmail.com"} \ No newline at end of file +{ + "copyright": "Leo Liang", + "url": "https://github.com/aleung", + "email": "leoliang@gmail.com" +} diff --git a/users/alex.json b/users/alex.json index 93ea2897..ad8c062e 100644 --- a/users/alex.json +++ b/users/alex.json @@ -1 +1,3 @@ -{"copyright":"Alex Peattie"} \ No newline at end of file +{ + "copyright": "Alex Peattie" +} diff --git a/users/alexaaronfrancisco.json b/users/alexaaronfrancisco.json index a7093e93..b0ae5777 100644 --- a/users/alexaaronfrancisco.json +++ b/users/alexaaronfrancisco.json @@ -1 +1,3 @@ -{"copyright":"Alexander Aaron Francisco"} +{ + "copyright": "Alexander Aaron Francisco" +} diff --git a/users/alexander.json b/users/alexander.json index 76129107..1534199e 100644 --- a/users/alexander.json +++ b/users/alexander.json @@ -1 +1,5 @@ -{"copyright":"Alexander Shpilkin","url":"http:\/\/about.me\/alex.shpilkin","email":"ashpilkin@gmail.com"} \ No newline at end of file +{ + "copyright": "Alexander Shpilkin", + "url": "http://about.me/alex.shpilkin", + "email": "ashpilkin@gmail.com" +} diff --git a/users/alexb.json b/users/alexb.json index 7b8a1606..00109ac8 100644 --- a/users/alexb.json +++ b/users/alexb.json @@ -1 +1,5 @@ -{"copyright":"Alex Bierwagen","url":"http:\/\/alexb.ninja","email":"me@alexb.ninja"} \ No newline at end of file +{ + "copyright": "Alex Bierwagen", + "url": "http://alexb.ninja", + "email": "me@alexb.ninja" +} diff --git a/users/alexgleason.json b/users/alexgleason.json index 52bff2c0..9e950c2e 100644 --- a/users/alexgleason.json +++ b/users/alexgleason.json @@ -1 +1,3 @@ -{"copyright":"Alex Gleason"} \ No newline at end of file +{ + "copyright": "Alex Gleason" +} diff --git a/users/alexh.json b/users/alexh.json index 9bc5be8f..5dab7834 100644 --- a/users/alexh.json +++ b/users/alexh.json @@ -1 +1,6 @@ -{"copyright":"Alex Hamilton","url":"https:\/\/hmltn.me","email":"github@aehmlo.me","gravatar":true} +{ + "copyright": "Alex Hamilton", + "url": "https://hmltn.me", + "email": "github@aehmlo.me", + "gravatar": true +} diff --git a/users/alexluke.json b/users/alexluke.json index fbc7dc37..7afff8c9 100644 --- a/users/alexluke.json +++ b/users/alexluke.json @@ -1 +1,5 @@ -{"copyright":"Alex Luke","url":"http:\/\/alexluke.me","email":"alex@alexluke.me"} \ No newline at end of file +{ + "copyright": "Alex Luke", + "url": "http://alexluke.me", + "email": "alex@alexluke.me" +} diff --git a/users/ali-sdk.json b/users/ali-sdk.json index ffbb9f2e..e22b03e8 100644 --- a/users/ali-sdk.json +++ b/users/ali-sdk.json @@ -1 +1,6 @@ -{"copyright":"ali-sdk and other contributors","url":"https:\/\/github.com\/ali-sdk","email":"m@fengmk2.com","format":"txt"} \ No newline at end of file +{ + "copyright": "ali-sdk and other contributors", + "url": "https://github.com/ali-sdk", + "email": "m@fengmk2.com", + "format": "txt" +} diff --git a/users/ali.json b/users/ali.json index 60054650..7f507581 100644 --- a/users/ali.json +++ b/users/ali.json @@ -1 +1,6 @@ -{"copyright":"Ali El-Ashram","url":"http:\/\/aliel.herokuapp.com","email":"ali.elashram@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ali El-Ashram", + "url": "http://aliel.herokuapp.com", + "email": "ali.elashram@gmail.com", + "format": "txt" +} diff --git a/users/alias.json b/users/alias.json index cef64fc5..c10fe11e 100644 --- a/users/alias.json +++ b/users/alias.json @@ -1 +1,6 @@ -{"copyright":"Alias,http:\/\/www.alias4bb.com","url":"http:\/\/www.alias4bb.com","email":"yygggg@foxmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Alias,http://www.alias4bb.com", + "url": "http://www.alias4bb.com", + "email": "yygggg@foxmail.com", + "gravatar": true +} diff --git a/users/alibabatajine.json b/users/alibabatajine.json index 06768708..b1cd5916 100644 --- a/users/alibabatajine.json +++ b/users/alibabatajine.json @@ -1 +1,6 @@ -{"copyright":"Harald Haesler","url":"http:\/\/www.tajine.de","email":"mit@tajine.de","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Harald Haesler", + "url": "http://www.tajine.de", + "email": "mit@tajine.de", + "theme": "double-windsor" +} diff --git a/users/aliel.json b/users/aliel.json index 071b53df..51c4f230 100644 --- a/users/aliel.json +++ b/users/aliel.json @@ -1 +1,6 @@ -{"copyright":"Ali El-Ashram","url":"http:\/\/aliel.herokuapp.com","email":"ali.elashram@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Ali El-Ashram", + "url": "http://aliel.herokuapp.com", + "email": "ali.elashram@gmail.com", + "theme": "double-windsor" +} diff --git a/users/alisch.json b/users/alisch.json index d7478996..2b462a9f 100644 --- a/users/alisch.json +++ b/users/alisch.json @@ -1 +1,6 @@ -{ "copyright": "Ali SADEGHIPOURKORABASLO", "url": "https://alisch.me/", "email": "mail@alisch.me", "format": "txt" } +{ + "copyright": "Ali SADEGHIPOURKORABASLO", + "url": "https://alisch.me/", + "email": "mail@alisch.me", + "format": "txt" +} diff --git a/users/alisdair.json b/users/alisdair.json index 3d26fbfb..367527e8 100644 --- a/users/alisdair.json +++ b/users/alisdair.json @@ -1 +1,3 @@ -{"copyright":"Alisdair McDiarmid"} \ No newline at end of file +{ + "copyright": "Alisdair McDiarmid" +} diff --git a/users/almad.json b/users/almad.json index 04051ba8..c13dbc4f 100644 --- a/users/almad.json +++ b/users/almad.json @@ -1 +1,7 @@ -{"copyright":"Lukas Linhart","url":"http:\/\/almad.net","email":"bugs@almad.net","format":"html","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Lukas Linhart", + "url": "http://almad.net", + "email": "bugs@almad.net", + "format": "html", + "theme": "eula-modern" +} diff --git a/users/alno.json b/users/alno.json index db6874c1..75cbd627 100644 --- a/users/alno.json +++ b/users/alno.json @@ -1 +1,5 @@ -{"copyright":"Alexey Noskov","url":"http:\/\/alno.name\/","email":"alexey.noskov@gmail.com"} \ No newline at end of file +{ + "copyright": "Alexey Noskov", + "url": "http://alno.name/", + "email": "alexey.noskov@gmail.com" +} diff --git a/users/alphawhy.json b/users/alphawhy.json index 87528ea8..f5d30d5f 100644 --- a/users/alphawhy.json +++ b/users/alphawhy.json @@ -1 +1,3 @@ -{"copyright":"Alpha Why"} \ No newline at end of file +{ + "copyright": "Alpha Why" +} diff --git a/users/altun.json b/users/altun.json index aba2401d..ed461650 100644 --- a/users/altun.json +++ b/users/altun.json @@ -1 +1,6 @@ -{"copyright":"Mustafa Altun","url":"http:\/\/mustafaaltun.com","email":"gmail@mustafaaltun.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Mustafa Altun", + "url": "http://mustafaaltun.com", + "email": "gmail@mustafaaltun.com", + "format": "txt" +} diff --git a/users/amaan.json b/users/amaan.json index 723f2856..0e168904 100644 --- a/users/amaan.json +++ b/users/amaan.json @@ -1 +1,3 @@ -{"copyright":"Amaan Cheval"} \ No newline at end of file +{ + "copyright": "Amaan Cheval" +} diff --git a/users/amiranda.json b/users/amiranda.json index ff5d1cfb..056f1876 100644 --- a/users/amiranda.json +++ b/users/amiranda.json @@ -1 +1,3 @@ -{"copyright":"Alex Miranda"} \ No newline at end of file +{ + "copyright": "Alex Miranda" +} diff --git a/users/amitmerchant1990.json b/users/amitmerchant1990.json index b1a74493..91bcf0d0 100644 --- a/users/amitmerchant1990.json +++ b/users/amitmerchant1990.json @@ -1,6 +1,6 @@ { - "copyright": "Amit Merchant", - "url": "https://github.com/amitmerchant1990", - "email": "bullredeyes@gmail.com", - "theme": "cherry" + "copyright": "Amit Merchant", + "url": "https://github.com/amitmerchant1990", + "email": "bullredeyes@gmail.com", + "theme": "cherry" } diff --git a/users/analogj.json b/users/analogj.json index 71275fb3..6208ad55 100644 --- a/users/analogj.json +++ b/users/analogj.json @@ -1 +1,3 @@ -{"copyright":"Jason Kulatunga"} +{ + "copyright": "Jason Kulatunga" +} diff --git a/users/anant.json b/users/anant.json index 6af27def..bc25b05b 100644 --- a/users/anant.json +++ b/users/anant.json @@ -1 +1,3 @@ -{"copyright":"Anant Jain"} \ No newline at end of file +{ + "copyright": "Anant Jain" +} diff --git a/users/ancy.json b/users/ancy.json index 28e3b9a4..f9aca67a 100644 --- a/users/ancy.json +++ b/users/ancy.json @@ -1,5 +1,5 @@ -{ +{ "copyright": "Ancy , http://lazulirose.com", "url": "http://lazulirose.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/and3k5.json b/users/and3k5.json index c3a44bfe..d57587c7 100644 --- a/users/and3k5.json +++ b/users/and3k5.json @@ -1 +1,3 @@ -{"copyright":"Anders Kjeldsen"} \ No newline at end of file +{ + "copyright": "Anders Kjeldsen" +} diff --git a/users/andersonaguiar.json b/users/andersonaguiar.json index 99b09c9a..ec49930b 100644 --- a/users/andersonaguiar.json +++ b/users/andersonaguiar.json @@ -1 +1,5 @@ -{"copyright":"Anderson Aguiar","url":"http:\/\/andersonaguiar.com.br","email":"andersonaguiar.web@gmail.com"} +{ + "copyright": "Anderson Aguiar", + "url": "http://andersonaguiar.com.br", + "email": "andersonaguiar.web@gmail.com" +} diff --git a/users/andre.json b/users/andre.json index 385f73a3..798ec52e 100644 --- a/users/andre.json +++ b/users/andre.json @@ -1 +1,3 @@ -{"copyright":"Andr\u00e9 Braga"} \ No newline at end of file +{ + "copyright": "André Braga" +} diff --git a/users/andreasonny.json b/users/andreasonny.json index f8bd7c1a..8fd34221 100644 --- a/users/andreasonny.json +++ b/users/andreasonny.json @@ -1 +1,7 @@ -{"copyright":"Andrea SonnY","url":"https:\/\/github.com\/andreasonny83","email":"andreasonny83@gmail.com","gravatar":true,"theme":"material-teal"} +{ + "copyright": "Andrea SonnY", + "url": "https://github.com/andreasonny83", + "email": "andreasonny83@gmail.com", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/andreif.json b/users/andreif.json index 362a6ad3..6a38214b 100644 --- a/users/andreif.json +++ b/users/andreif.json @@ -1 +1,5 @@ -{"copyright":"Andrei Fokau","email":"fokau@kth.se","url":"https:\/\/github.com\/andreif"} \ No newline at end of file +{ + "copyright": "Andrei Fokau", + "email": "fokau@kth.se", + "url": "https://github.com/andreif" +} diff --git a/users/andreisebastianc.json b/users/andreisebastianc.json index d0165aa2..d38037f4 100644 --- a/users/andreisebastianc.json +++ b/users/andreisebastianc.json @@ -1,5 +1,5 @@ { - "copyright": "Andrei Sebastian Cîmpean", - "email": "andreisebastianc@gmail.com", - "format": "txt" + "copyright": "Andrei Sebastian Cîmpean", + "email": "andreisebastianc@gmail.com", + "format": "txt" } diff --git a/users/andrel.json b/users/andrel.json index ad12afbf..ed427ae4 100644 --- a/users/andrel.json +++ b/users/andrel.json @@ -1 +1,7 @@ -{"copyright":"Andre Loureiro","url":"http:\/\/andrel.me","email":"hi@andrel.me","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Andre Loureiro", + "url": "http://andrel.me", + "email": "hi@andrel.me", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/andreloureiro.json b/users/andreloureiro.json index 114b7bec..33d7949a 100644 --- a/users/andreloureiro.json +++ b/users/andreloureiro.json @@ -1 +1,6 @@ -{"copyright":"Andre Loureiro","url":"http:\/\/andrel.me","email":"andreloureiroo@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andre Loureiro", + "url": "http://andrel.me", + "email": "andreloureiroo@gmail.com", + "format": "txt" +} diff --git a/users/andrew.json b/users/andrew.json index a142346e..13bda5b9 100644 --- a/users/andrew.json +++ b/users/andrew.json @@ -1 +1,5 @@ -{"copyright":"Andrew Fischer","email":"afischer15@mac.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Andrew Fischer", + "email": "afischer15@mac.com", + "gravatar": true +} diff --git a/users/andreyknupp.json b/users/andreyknupp.json index 5dc75265..58979fd9 100644 --- a/users/andreyknupp.json +++ b/users/andreyknupp.json @@ -1 +1,6 @@ -{"copyright":"Andrey Knupp","url":"http:\/\/github.com\/andreyknupp","email":"andreykvital@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrey Knupp", + "url": "http://github.com/andreyknupp", + "email": "andreykvital@gmail.com", + "format": "txt" +} diff --git a/users/andrezero.json b/users/andrezero.json index 6dc4fb16..fbb2af8b 100644 --- a/users/andrezero.json +++ b/users/andrezero.json @@ -1 +1,6 @@ -{"copyright":"Andre Torgal","url":"http:\/\/andretorgal.com","email":"andre.torgal@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Andre Torgal", + "url": "http://andretorgal.com", + "email": "andre.torgal@gmail.com", + "theme": "double-windsor" +} diff --git a/users/androidnix.json b/users/androidnix.json index 7de63ffc..adfeebfa 100644 --- a/users/androidnix.json +++ b/users/androidnix.json @@ -1 +1,6 @@ -{"copyright":"Androidnix - Android Tools for Linux Users","theme":"flesch","email":"support@icodeclarity.com","format":"html"} \ No newline at end of file +{ + "copyright": "Androidnix - Android Tools for Linux Users", + "theme": "flesch", + "email": "support@icodeclarity.com", + "format": "html" +} diff --git a/users/andxyz.json b/users/andxyz.json index 7dbec1bc..cae89088 100644 --- a/users/andxyz.json +++ b/users/andxyz.json @@ -1 +1,6 @@ -{"copyright":"Andrew Stevens","url":"http:\/\/andxyz.com","email":"andy@andxyz.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrew Stevens", + "url": "http://andxyz.com", + "email": "andy@andxyz.com", + "format": "txt" +} diff --git a/users/andyedinborough.json b/users/andyedinborough.json index 0d0edf09..f3719ec0 100644 --- a/users/andyedinborough.json +++ b/users/andyedinborough.json @@ -1 +1,3 @@ -{"copyright":"Andy Edinborough"} \ No newline at end of file +{ + "copyright": "Andy Edinborough" +} diff --git a/users/andystubbs.json b/users/andystubbs.json index 50c8ed8f..76f609f3 100644 --- a/users/andystubbs.json +++ b/users/andystubbs.json @@ -1 +1,3 @@ -{"copyright":"Andy Stubbs"} \ No newline at end of file +{ + "copyright": "Andy Stubbs" +} diff --git a/users/angrychimp.json b/users/angrychimp.json index 5dfdd1bc..32ed0965 100644 --- a/users/angrychimp.json +++ b/users/angrychimp.json @@ -1 +1,7 @@ -{"copyright": "Randall Kahler", "url": "https://angrychimp.net", "email": "rkahler@gmail.com", "gravatar": true, "theme": "material-teal"} +{ + "copyright": "Randall Kahler", + "url": "https://angrychimp.net", + "email": "rkahler@gmail.com", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/angus.json b/users/angus.json index 24e27903..3e1475ab 100644 --- a/users/angus.json +++ b/users/angus.json @@ -1 +1,3 @@ -{"copyright":"Angus Thomsen"} \ No newline at end of file +{ + "copyright": "Angus Thomsen" +} diff --git a/users/angusm.json b/users/angusm.json index ef87e5c3..ee2b946b 100644 --- a/users/angusm.json +++ b/users/angusm.json @@ -1 +1,3 @@ -{"copyright":"Angus McIntyre"} \ No newline at end of file +{ + "copyright": "Angus McIntyre" +} diff --git a/users/anish.json b/users/anish.json index b5a301aa..56f223c4 100644 --- a/users/anish.json +++ b/users/anish.json @@ -1 +1,6 @@ -{"copyright":"Anish Athalye","email":"anish-foss@mit.edu","gravatar":true,"theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Anish Athalye", + "email": "anish-foss@mit.edu", + "gravatar": true, + "theme": "xtansia" +} diff --git a/users/anishathalye.json b/users/anishathalye.json index b5a301aa..56f223c4 100644 --- a/users/anishathalye.json +++ b/users/anishathalye.json @@ -1 +1,6 @@ -{"copyright":"Anish Athalye","email":"anish-foss@mit.edu","gravatar":true,"theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Anish Athalye", + "email": "anish-foss@mit.edu", + "gravatar": true, + "theme": "xtansia" +} diff --git a/users/ankur.json b/users/ankur.json index 2b18aba9..2dd486c0 100644 --- a/users/ankur.json +++ b/users/ankur.json @@ -1 +1,7 @@ -{"copyright":"Ankur Jaiswal","email":"aj17@iitbbs.ac.in","theme": "dusk","format":"html","gravatar": true} +{ + "copyright": "Ankur Jaiswal", + "email": "aj17@iitbbs.ac.in", + "theme": "dusk", + "format": "html", + "gravatar": true +} diff --git a/users/anmoljagetia.json b/users/anmoljagetia.json index 8f665a7b..de2b6233 100644 --- a/users/anmoljagetia.json +++ b/users/anmoljagetia.json @@ -1 +1,6 @@ -{"copyright":"Anmol Jagetia","url":"http:\/\/anmoljagetia.me","email":"anmoljagetia@gmail.com","theme":"solarized"} \ No newline at end of file +{ + "copyright": "Anmol Jagetia", + "url": "http://anmoljagetia.me", + "email": "anmoljagetia@gmail.com", + "theme": "solarized" +} diff --git a/users/anon.json b/users/anon.json index d9619605..19a649b9 100644 --- a/users/anon.json +++ b/users/anon.json @@ -1 +1,8 @@ -{"copyright":"anon","url":"http:\/\/anoncom.net","email":"anon@anoncom.net","format":"html","theme":"eula-modern","gravatar":true} \ No newline at end of file +{ + "copyright": "anon", + "url": "http://anoncom.net", + "email": "anon@anoncom.net", + "format": "html", + "theme": "eula-modern", + "gravatar": true +} diff --git a/users/anovsiradj.json b/users/anovsiradj.json index eb013f52..c35630c2 100644 --- a/users/anovsiradj.json +++ b/users/anovsiradj.json @@ -1,6 +1,6 @@ { - "copyright": "Mayendra Costanov (anovsiradj)", - "email": "anov.siradj(22@(gmail|live).com|@gin.co.id)", - "url": "http://ne-a-r.blogspot.com/ncr", - "format": "txt" + "copyright": "Mayendra Costanov (anovsiradj)", + "email": "anov.siradj(22@(gmail|live).com|@gin.co.id)", + "url": "http://ne-a-r.blogspot.com/ncr", + "format": "txt" } diff --git a/users/anrodon.json b/users/anrodon.json index 7dd3c8b3..6b5c696e 100644 --- a/users/anrodon.json +++ b/users/anrodon.json @@ -1,6 +1,6 @@ { - "copyright": "Andreu Rodríguez i Donaire", - "url": "http://arodriguezdonaire.com", - "email": "arodriguezdonaire@gmail.com", - "format": "txt" + "copyright": "Andreu Rodríguez i Donaire", + "url": "http://arodriguezdonaire.com", + "email": "arodriguezdonaire@gmail.com", + "format": "txt" } diff --git a/users/anshul.json b/users/anshul.json index 9bef6705..fabc4492 100644 --- a/users/anshul.json +++ b/users/anshul.json @@ -1 +1,4 @@ -{"copyright":"Anshul Shah","email":"anshulshah96@gmail.com"} \ No newline at end of file +{ + "copyright": "Anshul Shah", + "email": "anshulshah96@gmail.com" +} diff --git a/users/anthkris.json b/users/anthkris.json index 1cf6ea37..5ebbcbd6 100644 --- a/users/anthkris.json +++ b/users/anthkris.json @@ -1,7 +1,7 @@ -{ -"copyright": "Kristin Anthony, http://knanthony.com", -"url": "http://knanthony.com", -"email": "kristin@knanthony.com", -"format": "html", -"theme": "mitserrat" +{ + "copyright": "Kristin Anthony, http://knanthony.com", + "url": "http://knanthony.com", + "email": "kristin@knanthony.com", + "format": "html", + "theme": "mitserrat" } diff --git a/users/anthony.json b/users/anthony.json index e0dd5687..9d5fa5ac 100644 --- a/users/anthony.json +++ b/users/anthony.json @@ -1 +1,7 @@ -{"copyright":"Anthony Rappa","url":"http:\/\/rappasoft.com","email":"rappa819@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Anthony Rappa", + "url": "http://rappasoft.com", + "email": "rappa819@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/antimatter15.json b/users/antimatter15.json index e7bbf69d..7a7d17f4 100644 --- a/users/antimatter15.json +++ b/users/antimatter15.json @@ -1 +1,5 @@ -{"copyright":"Kevin Kwok","url":"http:\/\/antimatter15.com","email":"antimatter15@gmail.com"} \ No newline at end of file +{ + "copyright": "Kevin Kwok", + "url": "http://antimatter15.com", + "email": "antimatter15@gmail.com" +} diff --git a/users/anton.json b/users/anton.json index e9c9d22f..f08402ad 100644 --- a/users/anton.json +++ b/users/anton.json @@ -1 +1,3 @@ -{"copyright":"Anton Piatek"} \ No newline at end of file +{ + "copyright": "Anton Piatek" +} diff --git a/users/antonhalim.json b/users/antonhalim.json index e02ba318..e6a2978b 100644 --- a/users/antonhalim.json +++ b/users/antonhalim.json @@ -1 +1,6 @@ -{"copyright": "Anton Halim, http://antonhalim.me", "url": "antonhalim.me", "email": "anton@antonhalim.me", "theme": "flesch" } +{ + "copyright": "Anton Halim, http://antonhalim.me", + "url": "antonhalim.me", + "email": "anton@antonhalim.me", + "theme": "flesch" +} diff --git a/users/antonholmgren.json b/users/antonholmgren.json index c6dea75c..366bcc55 100644 --- a/users/antonholmgren.json +++ b/users/antonholmgren.json @@ -1 +1,6 @@ -{"copyright":"Anton Holmgren","url":"http:\/\/antonholmgren.com","email":"me@antonholmgren.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Anton Holmgren", + "url": "http://antonholmgren.com", + "email": "me@antonholmgren.com", + "format": "txt" +} diff --git a/users/antonio.json b/users/antonio.json index 6a3296e6..e2291b4f 100644 --- a/users/antonio.json +++ b/users/antonio.json @@ -1,4 +1,4 @@ { - "copyright":"Antonio Santos", - "theme":"afterdark" -} \ No newline at end of file + "copyright": "Antonio Santos", + "theme": "afterdark" +} diff --git a/users/antonybailey.json b/users/antonybailey.json index 047154e8..06398c10 100644 --- a/users/antonybailey.json +++ b/users/antonybailey.json @@ -1 +1,6 @@ -{"copyright":"Antony Bailey","url":"http:\/\/www.antonybailey.net","email":"support@antonybailey.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Antony Bailey", + "url": "http://www.antonybailey.net", + "email": "support@antonybailey.net", + "format": "txt" +} diff --git a/users/anunay.json b/users/anunay.json index a5d15e1a..19042247 100644 --- a/users/anunay.json +++ b/users/anunay.json @@ -1 +1,6 @@ -{"copyright":"Anunay Dahal","url":"http:\/\/anunaydahal.com","email":"anunay.dahal@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Anunay Dahal", + "url": "http://anunaydahal.com", + "email": "anunay.dahal@gmail.com", + "format": "txt" +} diff --git a/users/anuraj.json b/users/anuraj.json index 62441e4a..07754edd 100644 --- a/users/anuraj.json +++ b/users/anuraj.json @@ -1,6 +1,6 @@ { - "copyright": "Anuraj P", - "url": "https://dotnetthoughts.net", - "email": "me@dotnetthoughts.net", - "format": "html" + "copyright": "Anuraj P", + "url": "https://dotnetthoughts.net", + "email": "me@dotnetthoughts.net", + "format": "html" } diff --git a/users/anwarjaved.json b/users/anwarjaved.json index 22daa74f..0acf685a 100644 --- a/users/anwarjaved.json +++ b/users/anwarjaved.json @@ -1 +1,7 @@ -{ "copyright": "Anwar Javed", "email": "anwarjaved@gmail.com", "format": "html", "gravatar": true, "theme": "default-dark" } +{ + "copyright": "Anwar Javed", + "email": "anwarjaved@gmail.com", + "format": "html", + "gravatar": true, + "theme": "default-dark" +} diff --git a/users/anze.json b/users/anze.json index b74b73bf..bc7963e3 100644 --- a/users/anze.json +++ b/users/anze.json @@ -1 +1,6 @@ -{"copyright":"Alberto Anzellotti","url":"http:\/\/anzellotti.cu.cc","email":"alberto.anzellotti@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Alberto Anzellotti", + "url": "http://anzellotti.cu.cc", + "email": "alberto.anzellotti@gmail.com", + "format": "txt" +} diff --git a/users/apnerve.json b/users/apnerve.json index 6adbe036..3c228c18 100644 --- a/users/apnerve.json +++ b/users/apnerve.json @@ -1 +1,3 @@ -{"copyright":"Praveen Kumar"} \ No newline at end of file +{ + "copyright": "Praveen Kumar" +} diff --git a/users/apollojustice.json b/users/apollojustice.json index c299a6ed..8d1a34d0 100644 --- a/users/apollojustice.json +++ b/users/apollojustice.json @@ -1 +1,7 @@ -{"copyright":"Ricardo Garcia (ApolloJustice)","url":"https:\/\/apollo.pw","email":"me@apollo.pw","theme":"material-indigo","gravatar":true} +{ + "copyright": "Ricardo Garcia (ApolloJustice)", + "url": "https://apollo.pw", + "email": "me@apollo.pw", + "theme": "material-indigo", + "gravatar": true +} diff --git a/users/aponxi.json b/users/aponxi.json index e9d9a09f..0fb52255 100644 --- a/users/aponxi.json +++ b/users/aponxi.json @@ -1 +1,7 @@ -{"copyright":"WeaponXI","url":"http:\/\/www.weaponxi.com","email":"aponxi@weaponxi.com","format":"html","theme":"blackwood"} \ No newline at end of file +{ + "copyright": "WeaponXI", + "url": "http://www.weaponxi.com", + "email": "aponxi@weaponxi.com", + "format": "html", + "theme": "blackwood" +} diff --git a/users/apopelo.json b/users/apopelo.json index ffac6f1f..fb8dde11 100644 --- a/users/apopelo.json +++ b/users/apopelo.json @@ -1 +1,3 @@ -{"copyright":"Andrey Popelo"} \ No newline at end of file +{ + "copyright": "Andrey Popelo" +} diff --git a/users/apriendeau.json b/users/apriendeau.json index 570bf7ff..8b187bbc 100644 --- a/users/apriendeau.json +++ b/users/apriendeau.json @@ -1 +1,5 @@ -{"copyright":"Austin Riendeau","url":"http:\/\/apriendeau.com","email":"austin@apriendeau.com"} \ No newline at end of file +{ + "copyright": "Austin Riendeau", + "url": "http://apriendeau.com", + "email": "austin@apriendeau.com" +} diff --git a/users/ar.json b/users/ar.json index 4966f63a..92c31b39 100644 --- a/users/ar.json +++ b/users/ar.json @@ -1 +1,3 @@ -{"copyright":"Alexander Rosolko"} \ No newline at end of file +{ + "copyright": "Alexander Rosolko" +} diff --git a/users/arashmilani.json b/users/arashmilani.json index d9f900e5..cafc65a6 100644 --- a/users/arashmilani.json +++ b/users/arashmilani.json @@ -1,7 +1,7 @@ { - "copyright": "Arash Milani", - "url": "http://arashmilani.com", - "email": "me@arashmilani.com", - "format": "html", - "gravatar": true + "copyright": "Arash Milani", + "url": "http://arashmilani.com", + "email": "me@arashmilani.com", + "format": "html", + "gravatar": true } diff --git a/users/ariporad.json b/users/ariporad.json index 581b2e01..bf0a3169 100644 --- a/users/ariporad.json +++ b/users/ariporad.json @@ -1,6 +1,6 @@ { - "copyright": "Ari Porad", - "url": "http: //ariporad.com", - "email": "ari@ariporad.com", - "gravatar": true + "copyright": "Ari Porad", + "url": "http: //ariporad.com", + "email": "ari@ariporad.com", + "gravatar": true } diff --git a/users/arizzol.json b/users/arizzol.json index 20404c34..f532bdd6 100644 --- a/users/arizzol.json +++ b/users/arizzol.json @@ -1 +1,3 @@ -{"copyright":"Arier Filizzola"} \ No newline at end of file +{ + "copyright": "Arier Filizzola" +} diff --git a/users/arjun.json b/users/arjun.json index 634dc897..2d0bba25 100644 --- a/users/arjun.json +++ b/users/arjun.json @@ -1 +1,5 @@ -{ "copyright": "Arjun Rao", "url": "https://arjun.fyi", "email": "contact@arjun.fyi" } +{ + "copyright": "Arjun Rao", + "url": "https://arjun.fyi", + "email": "contact@arjun.fyi" +} diff --git a/users/armpit.json b/users/armpit.json index 06f0767f..c9eaddd6 100644 --- a/users/armpit.json +++ b/users/armpit.json @@ -1 +1,3 @@ -{"copyright":"Shane Holding"} \ No newline at end of file +{ + "copyright": "Shane Holding" +} diff --git a/users/armujahid.json b/users/armujahid.json index 5f2e5320..7edcfc19 100644 --- a/users/armujahid.json +++ b/users/armujahid.json @@ -1,7 +1,7 @@ { - "copyright": "Abdul Rauf, https://armujahid.me", - "url": "https://armujahid.me", - "email": "abdulraufmujahid@gmail.com", - "theme": "material", - "gravatar": true -} \ No newline at end of file + "copyright": "Abdul Rauf, https://armujahid.me", + "url": "https://armujahid.me", + "email": "abdulraufmujahid@gmail.com", + "theme": "material", + "gravatar": true +} diff --git a/users/arnavroy.json b/users/arnavroy.json index a9d41fa5..044df008 100644 --- a/users/arnavroy.json +++ b/users/arnavroy.json @@ -1 +1,6 @@ -{"copyright":"Arnav Roy","url":"http:\/\/www.arnavroy.com","email":"roy.arnav@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Arnav Roy", + "url": "http://www.arnavroy.com", + "email": "roy.arnav@gmail.com", + "format": "txt" +} diff --git a/users/arroxa.json b/users/arroxa.json index b75dc124..8824502d 100644 --- a/users/arroxa.json +++ b/users/arroxa.json @@ -1 +1,4 @@ -{"copyright":"Arroxa","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Arroxa", + "theme": "eula-modern" +} diff --git a/users/artemave.json b/users/artemave.json index 76c9ebfc..b8ad52ae 100644 --- a/users/artemave.json +++ b/users/artemave.json @@ -1 +1,3 @@ -{"copyright":"Artem Avetisyan"} \ No newline at end of file +{ + "copyright": "Artem Avetisyan" +} diff --git a/users/arthurfigueiredo.json b/users/arthurfigueiredo.json index c63b932b..7b5683db 100644 --- a/users/arthurfigueiredo.json +++ b/users/arthurfigueiredo.json @@ -1 +1,6 @@ -{"copyright":"Arthur Figueiredo Nunes","url":"http:\/\/www.arthurfigueiredo.com.br","email":"arthurfn.webdev@gmail.com","format":"html"} +{ + "copyright": "Arthur Figueiredo Nunes", + "url": "http://www.arthurfigueiredo.com.br", + "email": "arthurfn.webdev@gmail.com", + "format": "html" +} diff --git a/users/arthurguy.json b/users/arthurguy.json index 5aad4dbe..74e1548d 100644 --- a/users/arthurguy.json +++ b/users/arthurguy.json @@ -1 +1,3 @@ -{"copyright":"Arthur Guy"} \ No newline at end of file +{ + "copyright": "Arthur Guy" +} diff --git a/users/artnc.json b/users/artnc.json index 9f41d3d3..e7931fe2 100644 --- a/users/artnc.json +++ b/users/artnc.json @@ -1 +1,3 @@ -{"copyright":"Art Chaidarun"} \ No newline at end of file +{ + "copyright": "Art Chaidarun" +} diff --git a/users/aruhan.json b/users/aruhan.json index 63e6d9b6..08d758d4 100644 --- a/users/aruhan.json +++ b/users/aruhan.json @@ -1 +1,3 @@ -{"copyright":"Takashi Harada"} \ No newline at end of file +{ + "copyright": "Takashi Harada" +} diff --git a/users/arunoda.json b/users/arunoda.json index d037cac9..7371facc 100644 --- a/users/arunoda.json +++ b/users/arunoda.json @@ -1 +1,3 @@ -{"copyright":"Arunoda Susiripala"} \ No newline at end of file +{ + "copyright": "Arunoda Susiripala" +} diff --git a/users/arvid.json b/users/arvid.json index 474a0d49..f8681214 100644 --- a/users/arvid.json +++ b/users/arvid.json @@ -1 +1,4 @@ -{"copyright":"Arvid Bj\u00f6rkstr\u00f6m","email":"arvid@bjorkstrom.se"} \ No newline at end of file +{ + "copyright": "Arvid Björkström", + "email": "arvid@bjorkstrom.se" +} diff --git a/users/asante.json b/users/asante.json index bc5d88a7..53dec2a4 100644 --- a/users/asante.json +++ b/users/asante.json @@ -1 +1,3 @@ -{"copyright":"Alexander Sante"} \ No newline at end of file +{ + "copyright": "Alexander Sante" +} diff --git a/users/asbubam.json b/users/asbubam.json index 876c0527..d4cecfeb 100644 --- a/users/asbubam.json +++ b/users/asbubam.json @@ -1 +1,6 @@ -{"copyright":"asbubam","url":"http:\/\/blog.2dal.com","email":"asbubam@gmail.com","format":"txt"} +{ + "copyright": "asbubam", + "url": "http://blog.2dal.com", + "email": "asbubam@gmail.com", + "format": "txt" +} diff --git a/users/aschn.json b/users/aschn.json index fb65021d..c9eca8e5 100644 --- a/users/aschn.json +++ b/users/aschn.json @@ -1 +1,3 @@ -{"copyright":"Anna Schneider"} \ No newline at end of file +{ + "copyright": "Anna Schneider" +} diff --git a/users/asdbasjdbaskjd.json b/users/asdbasjdbaskjd.json index 627d7028..15576578 100644 --- a/users/asdbasjdbaskjd.json +++ b/users/asdbasjdbaskjd.json @@ -1 +1,3 @@ -{"copyright":"Lucas Galfas\u00f3"} \ No newline at end of file +{ + "copyright": "Lucas Galfasó" +} diff --git a/users/asdbjasbdja.json b/users/asdbjasbdja.json index dce85522..5fb9ab49 100644 --- a/users/asdbjasbdja.json +++ b/users/asdbjasbdja.json @@ -1 +1,3 @@ -{"copyright":"ajsdhbjabsdh"} \ No newline at end of file +{ + "copyright": "ajsdhbjabsdh" +} diff --git a/users/aseemk.json b/users/aseemk.json index 7057ef56..ce206a17 100644 --- a/users/aseemk.json +++ b/users/aseemk.json @@ -1 +1,5 @@ -{"copyright":"Aseem Kishore","url":"http:\/\/aseemk.com\/","email":"aseem.kishore@gmail.com"} \ No newline at end of file +{ + "copyright": "Aseem Kishore", + "url": "http://aseemk.com/", + "email": "aseem.kishore@gmail.com" +} diff --git a/users/ashchan.json b/users/ashchan.json index 6e8b318b..87c3c718 100644 --- a/users/ashchan.json +++ b/users/ashchan.json @@ -1 +1,5 @@ -{"copyright":"James Chen","url":"http:\/\/ashchan.com","email":"ashchan@gmail.com"} \ No newline at end of file +{ + "copyright": "James Chen", + "url": "http://ashchan.com", + "email": "ashchan@gmail.com" +} diff --git a/users/ashtonwar.json b/users/ashtonwar.json index 16220a96..96c3d735 100644 --- a/users/ashtonwar.json +++ b/users/ashtonwar.json @@ -1 +1,3 @@ -{"copyright":"Ashton War"} \ No newline at end of file +{ + "copyright": "Ashton War" +} diff --git a/users/ask11.json b/users/ask11.json index ad3944fa..dfffc20a 100644 --- a/users/ask11.json +++ b/users/ask11.json @@ -1 +1,5 @@ -{"copyright":"Aleksey Kulikov","email":"alekseys.kulikov@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Aleksey Kulikov", + "email": "alekseys.kulikov@gmail.com", + "format": "txt" +} diff --git a/users/askesian.json b/users/askesian.json index 1c8b32d1..ccc4ffad 100644 --- a/users/askesian.json +++ b/users/askesian.json @@ -1 +1,5 @@ -{"copyright":"askesian","url":"http:\/\/askesian.com","email":"askesian@outlook.com"} \ No newline at end of file +{ + "copyright": "askesian", + "url": "http://askesian.com", + "email": "askesian@outlook.com" +} diff --git a/users/assefamaru.json b/users/assefamaru.json index 4abebfa4..48827316 100644 --- a/users/assefamaru.json +++ b/users/assefamaru.json @@ -1,8 +1,8 @@ { - "copyright": "Alexander Maru", - "url": "https://alexander.fyi", - "email": "iam@alexander.fyi", - "format": "txt", - "gravatar": true, - "theme": "plaintext" + "copyright": "Alexander Maru", + "url": "https://alexander.fyi", + "email": "iam@alexander.fyi", + "format": "txt", + "gravatar": true, + "theme": "plaintext" } diff --git a/users/astrocb.json b/users/astrocb.json index ad71b42a..638d1c9e 100644 --- a/users/astrocb.json +++ b/users/astrocb.json @@ -1,8 +1,8 @@ { - "copyright": "Cameron Bernhardt", - "url": "http://github.com/AstroCB", - "email": "cambernhardt@me.com", - "format": "html", - "gravatar": true, - "theme": "black-beauty" + "copyright": "Cameron Bernhardt", + "url": "http://github.com/AstroCB", + "email": "cambernhardt@me.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" } diff --git a/users/atelierbram.json b/users/atelierbram.json index 66c19d84..d4f2834b 100644 --- a/users/atelierbram.json +++ b/users/atelierbram.json @@ -1,5 +1,5 @@ { "copyright": "Bram de Haan, http://atelierbramdehaan.nl", "url": "http://atelierbramdehaan.nl", - "theme": "black-beauty" + "theme": "black-beauty" } diff --git a/users/atran.json b/users/atran.json index 77244099..33d45e1a 100644 --- a/users/atran.json +++ b/users/atran.json @@ -1 +1,4 @@ -{"copyright":"Anthony Tran","url":"http:\/\/anthonytran.info"} \ No newline at end of file +{ + "copyright": "Anthony Tran", + "url": "http://anthonytran.info" +} diff --git a/users/ats.json b/users/ats.json index cfc428c9..f0234e06 100644 --- a/users/ats.json +++ b/users/ats.json @@ -1 +1,3 @@ -{"copyright":"ActBlue Technical Services"} \ No newline at end of file +{ + "copyright": "ActBlue Technical Services" +} diff --git a/users/audreyr.json b/users/audreyr.json index e51cb1ca..c23f060c 100644 --- a/users/audreyr.json +++ b/users/audreyr.json @@ -1 +1,6 @@ -{"copyright":"Audrey Roy","url":"http:\/\/www.audreymroy.com","email":"audreyr@cartwheelweb.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Audrey Roy", + "url": "http://www.audreymroy.com", + "email": "audreyr@cartwheelweb.com", + "format": "txt" +} diff --git a/users/aus3ris.json b/users/aus3ris.json index eee2456e..3a2566c7 100644 --- a/users/aus3ris.json +++ b/users/aus3ris.json @@ -1 +1,6 @@ -{"copyright":"Austris Landmanis","url":"http:\/\/chevron.lv","email":"austris@chevron.lv","format":"txt"} \ No newline at end of file +{ + "copyright": "Austris Landmanis", + "url": "http://chevron.lv", + "email": "austris@chevron.lv", + "format": "txt" +} diff --git a/users/aus3ys.json b/users/aus3ys.json index 1069f92b..16625e93 100644 --- a/users/aus3ys.json +++ b/users/aus3ys.json @@ -1 +1,4 @@ -{"copyright":"Austris Landmanis","email":"aus3ys@gmail.com"} \ No newline at end of file +{ + "copyright": "Austris Landmanis", + "email": "aus3ys@gmail.com" +} diff --git a/users/austin.json b/users/austin.json index 2e70e18d..9c77b2f7 100644 --- a/users/austin.json +++ b/users/austin.json @@ -1 +1,6 @@ -{"copyright":"Austin Riendeau","url":"http:\/\/apriendeau.com","email":"austin@apriendeau.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Austin Riendeau", + "url": "http://apriendeau.com", + "email": "austin@apriendeau.com", + "format": "txt" +} diff --git a/users/avdaredevil.json b/users/avdaredevil.json index 31222d34..67911a9e 100644 --- a/users/avdaredevil.json +++ b/users/avdaredevil.json @@ -1 +1,7 @@ -{"copyright":"Apoorv Verma","url":"https:\/\/www.linkedin.com\/in\/apoorvverma","email":"avdaredevil@gmail.com","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Apoorv Verma", + "url": "https://www.linkedin.com/in/apoorvverma", + "email": "avdaredevil@gmail.com", + "format": "txt", + "gravatar": true +} diff --git a/users/avelino.json b/users/avelino.json index 2e11f699..2a29f50d 100644 --- a/users/avelino.json +++ b/users/avelino.json @@ -1 +1,6 @@ -{"copyright":"Avelino","url":"http:\/\/avelino.xxx","email":"thiago@avelino.xxx","gravatar":true} +{ + "copyright": "Avelino", + "url": "http://avelino.xxx", + "email": "thiago@avelino.xxx", + "gravatar": true +} diff --git a/users/average-studios.json b/users/average-studios.json index a33c1379..bbf2da89 100644 --- a/users/average-studios.json +++ b/users/average-studios.json @@ -1 +1,3 @@ -{"copyright":"Andrew Stewart"} \ No newline at end of file +{ + "copyright": "Andrew Stewart" +} diff --git a/users/avidal.json b/users/avidal.json index fb036c7b..11a43586 100644 --- a/users/avidal.json +++ b/users/avidal.json @@ -1 +1,6 @@ -{"copyright":"Alex Vidal","url":"https:\/\/github.com\/avidal","email":"alex.vidal@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Alex Vidal", + "url": "https://github.com/avidal", + "email": "alex.vidal@gmail.com", + "format": "html" +} diff --git a/users/avidenie.json b/users/avidenie.json index 1918bac5..8896db5c 100644 --- a/users/avidenie.json +++ b/users/avidenie.json @@ -1 +1,6 @@ -{"copyright":"Adrian Videnie","url":"http:\/\/web.expectations.ro","email":"avidenie@gmail.com","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Adrian Videnie", + "url": "http://web.expectations.ro", + "email": "avidenie@gmail.com", + "theme": "eula-modern" +} diff --git a/users/avm99963.json b/users/avm99963.json index e25375e8..d7961f8a 100644 --- a/users/avm99963.json +++ b/users/avm99963.json @@ -1 +1,7 @@ -{"copyright":"Adri\u00e0 Vilanova Mart\u00ednez","url":"http:\/\/avm99963.tk","email":"me@avm99963.tk","gravatar":true,"theme":"material-indigo"} \ No newline at end of file +{ + "copyright": "Adrià Vilanova Martínez", + "url": "http://avm99963.tk", + "email": "me@avm99963.tk", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/axe312.json b/users/axe312.json index e598e2ce..3c42a4ce 100644 --- a/users/axe312.json +++ b/users/axe312.json @@ -1 +1,3 @@ -{"copyright":"Benedikt R\u00f6tsch"} \ No newline at end of file +{ + "copyright": "Benedikt Rötsch" +} diff --git a/users/axelav.json b/users/axelav.json index 91ab769f..c1abe97d 100644 --- a/users/axelav.json +++ b/users/axelav.json @@ -1 +1,6 @@ -{"copyright":"Axel Anderson, axelav.com","url":"http:\/\/axelav.com","email":"axelav@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Axel Anderson, axelav.com", + "url": "http://axelav.com", + "email": "axelav@gmail.com", + "format": "txt" +} diff --git a/users/axisthemes.json b/users/axisthemes.json index 13552d2d..98399aea 100644 --- a/users/axisthemes.json +++ b/users/axisthemes.json @@ -1 +1,5 @@ -{"copyright":"AxisThemes","url":"http:\/\/axisthemes.com","theme":"double-windsor"} +{ + "copyright": "AxisThemes", + "url": "http://axisthemes.com", + "theme": "double-windsor" +} diff --git a/users/ayahya.json b/users/ayahya.json index 8ea36ef1..8432afe7 100644 --- a/users/ayahya.json +++ b/users/ayahya.json @@ -1 +1,8 @@ -{ "copyright": "Abdullah Yahya", "url": "https://ayahya.me", "email": "me.ayahya@gmail.com", "format": "html", "gravatar": true, "theme": "material" } +{ + "copyright": "Abdullah Yahya", + "url": "https://ayahya.me", + "email": "me.ayahya@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material" +} diff --git a/users/ayesh.json b/users/ayesh.json index 1afaa2bc..89ae282c 100644 --- a/users/ayesh.json +++ b/users/ayesh.json @@ -1 +1,4 @@ -{"copyright":"Ayesh Karunaratne","url":"http:\/\/ayesh.me"} \ No newline at end of file +{ + "copyright": "Ayesh Karunaratne", + "url": "http://ayesh.me" +} diff --git a/users/azamara.json b/users/azamara.json index d1044274..0e3bd237 100644 --- a/users/azamara.json +++ b/users/azamara.json @@ -1 +1,4 @@ -{"copyright":"William Kim, http:\/\/azamara.io\/","url":"http:\/\/azamara.io\/"} \ No newline at end of file +{ + "copyright": "William Kim, http://azamara.io/", + "url": "http://azamara.io/" +} diff --git a/users/azder.json b/users/azder.json index 3fe83043..8fda510b 100644 --- a/users/azder.json +++ b/users/azder.json @@ -1 +1,5 @@ -{"copyright":"Goran Peoski","email":"azhder@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Goran Peoski", + "email": "azhder@gmail.com", + "format": "txt" +} diff --git a/users/azizur.json b/users/azizur.json index d9c18f81..e1b60d17 100644 --- a/users/azizur.json +++ b/users/azizur.json @@ -1 +1,3 @@ -{"copyright":"Azizur Rahman"} \ No newline at end of file +{ + "copyright": "Azizur Rahman" +} diff --git a/users/azlab.json b/users/azlab.json index e719f26c..aa40701e 100644 --- a/users/azlab.json +++ b/users/azlab.json @@ -1 +1,3 @@ -{"copyright":"AnZen-Lab (UEC, Tokyo)"} \ No newline at end of file +{ + "copyright": "AnZen-Lab (UEC, Tokyo)" +} diff --git a/users/azu.json b/users/azu.json index 51be2f68..3fead3f3 100644 --- a/users/azu.json +++ b/users/azu.json @@ -1 +1,4 @@ -{"copyright":"azu","url":"http:\/\/efcl.info\/"} \ No newline at end of file +{ + "copyright": "azu", + "url": "http://efcl.info/" +} diff --git a/users/b4b4r07.json b/users/b4b4r07.json index 341e307c..67b11d69 100644 --- a/users/b4b4r07.json +++ b/users/b4b4r07.json @@ -1 +1,6 @@ -{"copyright":"Masaki Ishiyama","url":"http:\/\/b4b4r07.com","email":"b4b4r07@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Masaki Ishiyama", + "url": "http://b4b4r07.com", + "email": "b4b4r07@gmail.com", + "format": "txt" +} diff --git a/users/baenziger-hug.json b/users/baenziger-hug.json index d19147a5..117e146e 100644 --- a/users/baenziger-hug.json +++ b/users/baenziger-hug.json @@ -1 +1,6 @@ -{"copyright":"B\u00e4nziger Hug Ltd.","url":"http:\/\/baenziger-hug.com","email":"oh@baenziger-hug.com","format":"html"} \ No newline at end of file +{ + "copyright": "Bänziger Hug Ltd.", + "url": "http://baenziger-hug.com", + "email": "oh@baenziger-hug.com", + "format": "html" +} diff --git a/users/baivong.json b/users/baivong.json index 2e3c6b33..da692309 100644 --- a/users/baivong.json +++ b/users/baivong.json @@ -1,8 +1,8 @@ { - "copyright": "Zzbaivong", - "url": "https://baivong.github.io", - "email": "Zzbaivong@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-teal" + "copyright": "Zzbaivong", + "url": "https://baivong.github.io", + "email": "Zzbaivong@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-teal" } diff --git a/users/balbeko.json b/users/balbeko.json index ab9d2053..98adf645 100644 --- a/users/balbeko.json +++ b/users/balbeko.json @@ -1,5 +1,5 @@ { - "copyright":"Sergey Balbeko, http://balbeko.com/", + "copyright": "Sergey Balbeko, http://balbeko.com/", "email": "sergey@balbeko.com", "url": "http://balbeko.com/", "theme": "double-windsor" diff --git a/users/bamorim.json b/users/bamorim.json index 15e79c5c..a66f831a 100644 --- a/users/bamorim.json +++ b/users/bamorim.json @@ -1 +1,6 @@ -{"copyright":"Bernardo Amorim","url":"http:\/\/bamorim.com","email":"contato@bamorim.com","format":"html"} \ No newline at end of file +{ + "copyright": "Bernardo Amorim", + "url": "http://bamorim.com", + "email": "contato@bamorim.com", + "format": "html" +} diff --git a/users/bankfacil.json b/users/bankfacil.json index 1bd3a770..ba90a5d8 100644 --- a/users/bankfacil.json +++ b/users/bankfacil.json @@ -1 +1,4 @@ -{"copyright":"BankFacil, http:\/\/bankfacil.com.br","url":"http:\/\/bankfacil.com.br"} \ No newline at end of file +{ + "copyright": "BankFacil, http://bankfacil.com.br", + "url": "http://bankfacil.com.br" +} diff --git a/users/banyan.json b/users/banyan.json index 0fbb7788..87d3f1ca 100644 --- a/users/banyan.json +++ b/users/banyan.json @@ -1,6 +1,6 @@ { "copyright": "Kohei Hasegawa, https://github.com/banyan", - "url": "https://github.com/banyan", - "email": "ameutau@gmail.com", - "theme": "flesch" + "url": "https://github.com/banyan", + "email": "ameutau@gmail.com", + "theme": "flesch" } diff --git a/users/bardi.json b/users/bardi.json index 4aee4352..df252a8d 100644 --- a/users/bardi.json +++ b/users/bardi.json @@ -1 +1,6 @@ -{"copyright":"Bardi Harborow","url":"https:\/\/www.bardiharborow.com","email":"bardi@bardiharborow.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Bardi Harborow", + "url": "https://www.bardiharborow.com", + "email": "bardi@bardiharborow.com", + "gravatar": true +} diff --git a/users/barnik.json b/users/barnik.json index 433fc979..c1fbce8b 100644 --- a/users/barnik.json +++ b/users/barnik.json @@ -1,4 +1,4 @@ { "copyright": "Barnik Ray", "email": "barnikray@live.com" -} \ No newline at end of file +} diff --git a/users/bartaz.json b/users/bartaz.json index 66612f03..f4071dc4 100644 --- a/users/bartaz.json +++ b/users/bartaz.json @@ -1 +1,3 @@ -{"copyright":"Bartek Szopka"} \ No newline at end of file +{ + "copyright": "Bartek Szopka" +} diff --git a/users/bat.json b/users/bat.json index 34cc6c3f..89401f24 100644 --- a/users/bat.json +++ b/users/bat.json @@ -1 +1,3 @@ -{"copyright":"Ben Atkin"} \ No newline at end of file +{ + "copyright": "Ben Atkin" +} diff --git a/users/batu.json b/users/batu.json index 3b2307ca..e4cc2882 100644 --- a/users/batu.json +++ b/users/batu.json @@ -2,4 +2,4 @@ "copyright": "Batuhan Icoz, http://batu.me/1", "url": "http://batu.me/1", "email": "i@batu.me" -} \ No newline at end of file +} diff --git a/users/bauglir.json b/users/bauglir.json index 6eda38fd..7a67a421 100644 --- a/users/bauglir.json +++ b/users/bauglir.json @@ -1 +1,6 @@ -{"copyright":"Joris Kraak, https:\/\/majorfail.com","url":"https:\/\/majorfail.com","email":"joris@majorfail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Joris Kraak, https://majorfail.com", + "url": "https://majorfail.com", + "email": "joris@majorfail.com", + "gravatar": true +} diff --git a/users/bazilio.json b/users/bazilio.json index f12719c4..c72e2817 100644 --- a/users/bazilio.json +++ b/users/bazilio.json @@ -1 +1,7 @@ -{"copyright":"Bazilio","email":"x.bazilio@gmail.com","format":"txt","gravatar":false,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Bazilio", + "email": "x.bazilio@gmail.com", + "format": "txt", + "gravatar": false, + "theme": "plaintext" +} diff --git a/users/bbuecherl.json b/users/bbuecherl.json index 59ba3a3b..1853bb29 100644 --- a/users/bbuecherl.json +++ b/users/bbuecherl.json @@ -1 +1,7 @@ -{"copyright":"Bernhard B\u00fccherl, http:\/\/bbuecherl.de","url":"http:\/\/bbuecherl.de","email":"bernhard.buecherl@gmail.com","theme":"friendly","gravatar":true} \ No newline at end of file +{ + "copyright": "Bernhard Bücherl, http://bbuecherl.de", + "url": "http://bbuecherl.de", + "email": "bernhard.buecherl@gmail.com", + "theme": "friendly", + "gravatar": true +} diff --git a/users/bcse.json b/users/bcse.json index 616b30de..d991f2ee 100644 --- a/users/bcse.json +++ b/users/bcse.json @@ -1 +1,5 @@ -{"copyright":"Grey Lee, http:\/\/bcse.tw","url":"http:\/\/bcse.tw","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Grey Lee, http://bcse.tw", + "url": "http://bcse.tw", + "theme": "double-windsor" +} diff --git a/users/bdukes.json b/users/bdukes.json index 3cbae72e..0fb42517 100644 --- a/users/bdukes.json +++ b/users/bdukes.json @@ -1 +1,4 @@ -{"copyright":"Brian Dukes","email":"dukes.brian@gmail.com"} \ No newline at end of file +{ + "copyright": "Brian Dukes", + "email": "dukes.brian@gmail.com" +} diff --git a/users/bear.json b/users/bear.json index 2a60cc94..bf47317a 100644 --- a/users/bear.json +++ b/users/bear.json @@ -1 +1,6 @@ -{"copyright":"Alexander Harkness","url":"http:\/\/www.bearbin.net","email":"bearbin@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Alexander Harkness", + "url": "http://www.bearbin.net", + "email": "bearbin@gmail.com", + "format": "txt" +} diff --git a/users/becevka.json b/users/becevka.json index 1d28171c..f220bc17 100644 --- a/users/becevka.json +++ b/users/becevka.json @@ -1 +1,7 @@ -{"copyright":"Wolfgang Bas, https:\/\/becevka.com","url":"https:\/\/becevka.com","email":"wolf@becevka.com","gravatar":true,"theme":"dusk"} +{ + "copyright": "Wolfgang Bas, https://becevka.com", + "url": "https://becevka.com", + "email": "wolf@becevka.com", + "gravatar": true, + "theme": "dusk" +} diff --git a/users/bee.json b/users/bee.json index 717cbb1f..ff0afbf5 100644 --- a/users/bee.json +++ b/users/bee.json @@ -1 +1,5 @@ -{"copyright":"Songbee","url":"http:\/\/songbee.net","email":"hi@songbee.net"} +{ + "copyright": "Songbee", + "url": "http://songbee.net", + "email": "hi@songbee.net" +} diff --git a/users/beedaan.json b/users/beedaan.json index 3cfa90b0..d369bf9a 100644 --- a/users/beedaan.json +++ b/users/beedaan.json @@ -1 +1,6 @@ -{"copyright":"Brendan Heussler","url":"http://bheussler.name","email":"bheussler@gmail.com","theme":"flesch"} +{ + "copyright": "Brendan Heussler", + "url": "http://bheussler.name", + "email": "bheussler@gmail.com", + "theme": "flesch" +} diff --git a/users/beingtomgreen.json b/users/beingtomgreen.json index 9472b0c3..64a877a6 100644 --- a/users/beingtomgreen.json +++ b/users/beingtomgreen.json @@ -1 +1,6 @@ -{"copyright":"Tom Green","url":"http:\/\/beingtomgreen.com","email":"tom@beingtomgreen.com","format":"html"} \ No newline at end of file +{ + "copyright": "Tom Green", + "url": "http://beingtomgreen.com", + "email": "tom@beingtomgreen.com", + "format": "html" +} diff --git a/users/beintoo.json b/users/beintoo.json index e886ca0c..591ae64c 100644 --- a/users/beintoo.json +++ b/users/beintoo.json @@ -1 +1,5 @@ -{"copyright":"Beintoo","url":"http:\/\/www.beintoo.com\/","theme":"material-light-green"} \ No newline at end of file +{ + "copyright": "Beintoo", + "url": "http://www.beintoo.com/", + "theme": "material-light-green" +} diff --git a/users/beloi.json b/users/beloi.json index d8e14799..9e1a5be1 100644 --- a/users/beloi.json +++ b/users/beloi.json @@ -1 +1,4 @@ -{"copyright":"Beloi Ignacio","format":"txt"} \ No newline at end of file +{ + "copyright": "Beloi Ignacio", + "format": "txt" +} diff --git a/users/ben.json b/users/ben.json index 34236487..e2a67f0c 100644 --- a/users/ben.json +++ b/users/ben.json @@ -1 +1,3 @@ -{"copyright":"Ben Smithett"} \ No newline at end of file +{ + "copyright": "Ben Smithett" +} diff --git a/users/benatkin.json b/users/benatkin.json index 34cc6c3f..89401f24 100644 --- a/users/benatkin.json +++ b/users/benatkin.json @@ -1 +1,3 @@ -{"copyright":"Ben Atkin"} \ No newline at end of file +{ + "copyright": "Ben Atkin" +} diff --git a/users/benizi.json b/users/benizi.json index 8cd6af13..f32f8b5a 100644 --- a/users/benizi.json +++ b/users/benizi.json @@ -1 +1,4 @@ -{"copyright":"Benjamin R. Haskell","email":"mit-license@benizi.com"} \ No newline at end of file +{ + "copyright": "Benjamin R. Haskell", + "email": "mit-license@benizi.com" +} diff --git a/users/benjie.json b/users/benjie.json index dfada5dc..9515e1d7 100644 --- a/users/benjie.json +++ b/users/benjie.json @@ -1 +1,3 @@ -{"copyright":"Benjie Gillam"} \ No newline at end of file +{ + "copyright": "Benjie Gillam" +} diff --git a/users/benniemosher.json b/users/benniemosher.json index ccb3d0ee..5692e8f4 100644 --- a/users/benniemosher.json +++ b/users/benniemosher.json @@ -1 +1,3 @@ -{"copyright":"Bennie Mosher"} \ No newline at end of file +{ + "copyright": "Bennie Mosher" +} diff --git a/users/bensarmiento.json b/users/bensarmiento.json index 4681a5dd..2275fad9 100644 --- a/users/bensarmiento.json +++ b/users/bensarmiento.json @@ -3,4 +3,4 @@ "url": "http://bensarmiento.com", "email": "me@bensarmiento.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/benspotatoes.json b/users/benspotatoes.json index ddf75877..79a6caee 100644 --- a/users/benspotatoes.json +++ b/users/benspotatoes.json @@ -1 +1,6 @@ -{"copyright":"Benjamin Hsieh","url":"http:\/\/benspotatoes.com","email":"benspotatoes@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Benjamin Hsieh", + "url": "http://benspotatoes.com", + "email": "benspotatoes@gmail.com", + "format": "html" +} diff --git a/users/berbaquero.json b/users/berbaquero.json index 78ba8a35..07f0c704 100644 --- a/users/berbaquero.json +++ b/users/berbaquero.json @@ -1 +1,3 @@ -{"copyright":"Bernardo Baquero Stand"} \ No newline at end of file +{ + "copyright": "Bernardo Baquero Stand" +} diff --git a/users/berngfilho.json b/users/berngfilho.json index 93433a93..71dc55bd 100644 --- a/users/berngfilho.json +++ b/users/berngfilho.json @@ -1 +1,6 @@ -{"copyright":"Bernardo Gurgel Filho","url":"http:\/\/bernardogfilho.github.io","email":"bernardogfilho@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Bernardo Gurgel Filho", + "url": "http://bernardogfilho.github.io", + "email": "bernardogfilho@gmail.com", + "format": "txt" +} diff --git a/users/bescott.json b/users/bescott.json index 1a03452f..914ee0ab 100644 --- a/users/bescott.json +++ b/users/bescott.json @@ -3,4 +3,4 @@ "url": "http://bescott.org", "email": "bescott@andrew.cmu.edu", "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/beshr.json b/users/beshr.json index b8bd08d1..e8dd2c02 100644 --- a/users/beshr.json +++ b/users/beshr.json @@ -1 +1,5 @@ -{"copyright": "Beshr Kayali, http://beshr.com", "url": "http://beshr.com", "email": "me@beshr.com"} +{ + "copyright": "Beshr Kayali, http://beshr.com", + "url": "http://beshr.com", + "email": "me@beshr.com" +} diff --git a/users/besson.json b/users/besson.json index 4f40d656..08f0e10f 100644 --- a/users/besson.json +++ b/users/besson.json @@ -1 +1,7 @@ -{"copyright":"Lilian Besson, http:\/\/perso.crans.org\/besson\/","url":"http:\/\/perso.crans.org\/besson\/","email":"besson at crans dot org","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Lilian Besson, http://perso.crans.org/besson/", + "url": "http://perso.crans.org/besson/", + "email": "besson at crans dot org", + "format": "html", + "gravatar": true +} diff --git a/users/bethanyr.json b/users/bethanyr.json index 5ae8bda9..dec54b69 100644 --- a/users/bethanyr.json +++ b/users/bethanyr.json @@ -1 +1,6 @@ -{"copyright":"Bethany Rentz","url":"http:http:\/\/www.bethanyrentz.com","email":"bethany.rentz@hotmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Bethany Rentz", + "url": "http:http://www.bethanyrentz.com", + "email": "bethany.rentz@hotmail.com", + "format": "txt" +} diff --git a/users/betomuniz.json b/users/betomuniz.json index 95e15b6e..45a70c00 100644 --- a/users/betomuniz.json +++ b/users/betomuniz.json @@ -1 +1,3 @@ -{"copyright":"Beto Muniz"} \ No newline at end of file +{ + "copyright": "Beto Muniz" +} diff --git a/users/beyondweb.json b/users/beyondweb.json index a5ed07e8..a03bb3b7 100644 --- a/users/beyondweb.json +++ b/users/beyondweb.json @@ -1 +1,4 @@ -{"copyright":"BeyondWEB","url":"http:\/\/beyondweb.co.za"} \ No newline at end of file +{ + "copyright": "BeyondWEB", + "url": "http://beyondweb.co.za" +} diff --git a/users/bezoerb.json b/users/bezoerb.json index b5abf1a7..235a236f 100644 --- a/users/bezoerb.json +++ b/users/bezoerb.json @@ -1 +1,4 @@ -{"copyright":"Ben Z\u00f6rb","email":"ben@sommerlaune.com"} \ No newline at end of file +{ + "copyright": "Ben Zörb", + "email": "ben@sommerlaune.com" +} diff --git a/users/bfoxwell.json b/users/bfoxwell.json index 77e57bb6..85109428 100644 --- a/users/bfoxwell.json +++ b/users/bfoxwell.json @@ -1 +1,3 @@ -{"copyright":"Brian Foxwell"} \ No newline at end of file +{ + "copyright": "Brian Foxwell" +} diff --git a/users/bh.json b/users/bh.json index 89dc140e..ece8dbd0 100644 --- a/users/bh.json +++ b/users/bh.json @@ -1 +1,6 @@ -{"copyright":"B\u00e4nziger Hug Ltd.","url":"http:\/\/baenziger-hug.com","email":"oh@baenziger-hug.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Bänziger Hug Ltd.", + "url": "http://baenziger-hug.com", + "email": "oh@baenziger-hug.com", + "format": "txt" +} diff --git a/users/bharath063.json b/users/bharath063.json index e717b82b..c988dada 100644 --- a/users/bharath063.json +++ b/users/bharath063.json @@ -1 +1,3 @@ -{"copyright":"Bharath Balan"} \ No newline at end of file +{ + "copyright": "Bharath Balan" +} diff --git a/users/bigab.json b/users/bigab.json index 61e8cf44..81e6c42e 100644 --- a/users/bigab.json +++ b/users/bigab.json @@ -1 +1,3 @@ -{"copyright":"Adam Barrett"} \ No newline at end of file +{ + "copyright": "Adam Barrett" +} diff --git a/users/bih.json b/users/bih.json index e0b8137c..b4f5fde4 100644 --- a/users/bih.json +++ b/users/bih.json @@ -1 +1,5 @@ -{"copyright":"Bilawal Hameed","url":"http:\/\/bilaw.al","email":"me@bilaw.al"} \ No newline at end of file +{ + "copyright": "Bilawal Hameed", + "url": "http://bilaw.al", + "email": "me@bilaw.al" +} diff --git a/users/bilger.json b/users/bilger.json index 7f6a0668..fa2686ac 100644 --- a/users/bilger.json +++ b/users/bilger.json @@ -1 +1,6 @@ -{"copyright":"Matthias Bilger","url":"http:\/\/bilger.info","email":"matthias@bilger.info","format":"txt"} \ No newline at end of file +{ + "copyright": "Matthias Bilger", + "url": "http://bilger.info", + "email": "matthias@bilger.info", + "format": "txt" +} diff --git a/users/biomassives.json b/users/biomassives.json index dac9407c..d8e0e63d 100644 --- a/users/biomassives.json +++ b/users/biomassives.json @@ -1 +1,3 @@ -{"copyright":"Biomassives Group Ltd."} \ No newline at end of file +{ + "copyright": "Biomassives Group Ltd." +} diff --git a/users/bipbop.json b/users/bipbop.json index 83d8d982..7c35b216 100644 --- a/users/bipbop.json +++ b/users/bipbop.json @@ -1 +1,6 @@ -{"copyright":"BIPBOP SOFTWARE E SERVICOS LTDA","url":"http:\/\/www.bipbop.com.br\/","email":"contato@bipbop.com.br","format":"txt"} \ No newline at end of file +{ + "copyright": "BIPBOP SOFTWARE E SERVICOS LTDA", + "url": "http://www.bipbop.com.br/", + "email": "contato@bipbop.com.br", + "format": "txt" +} diff --git a/users/birdi.json b/users/birdi.json index 8e69ae82..c147b8e9 100644 --- a/users/birdi.json +++ b/users/birdi.json @@ -1 +1,7 @@ -{"copyright":"Birdicode","url":"http:\/\/black-burn.ch","email":"birdicode@gmail.com","format":"html","theme":"xtansia"} +{ + "copyright": "Birdicode", + "url": "http://black-burn.ch", + "email": "birdicode@gmail.com", + "format": "html", + "theme": "xtansia" +} diff --git a/users/bitbonsai.json b/users/bitbonsai.json index d66dc00e..b0b6ca7f 100644 --- a/users/bitbonsai.json +++ b/users/bitbonsai.json @@ -1 +1,8 @@ -{"copyright":"Mauricio Wolff - BitBonsai","url":"http:\/\/bitbonsai.com","email":"m@bitbonsai.com","format":"html","gravatar":true,"theme":"double-windsor"} +{ + "copyright": "Mauricio Wolff - BitBonsai", + "url": "http://bitbonsai.com", + "email": "m@bitbonsai.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/bjeanes.json b/users/bjeanes.json index adbde2d3..994e6ad5 100644 --- a/users/bjeanes.json +++ b/users/bjeanes.json @@ -1 +1,6 @@ -{"copyright":"Bo Jeanes","url":"http:\/\/bjeanes.com","email":"me@bjeanes.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Bo Jeanes", + "url": "http://bjeanes.com", + "email": "me@bjeanes.com", + "format": "txt" +} diff --git a/users/blacklite.json b/users/blacklite.json index 088c007f..37003046 100644 --- a/users/blacklite.json +++ b/users/blacklite.json @@ -1 +1,7 @@ -{"copyright":"David Driscoll","url":"http:\/\/blacklite.ca","email":"david@blacklite.ca","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "David Driscoll", + "url": "http://blacklite.ca", + "email": "david@blacklite.ca", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/blahah.json b/users/blahah.json index 889c419b..ef7704ac 100644 --- a/users/blahah.json +++ b/users/blahah.json @@ -1 +1,3 @@ -{"copyright":"Richard Smith-Unna"} \ No newline at end of file +{ + "copyright": "Richard Smith-Unna" +} diff --git a/users/blake.json b/users/blake.json index 46bad8cf..e4e90246 100644 --- a/users/blake.json +++ b/users/blake.json @@ -1 +1,6 @@ -{"copyright":"Blake Owens","url":"http:\/\/blakeowens.com","email":"blake@blakeowens.com","format":"html"} \ No newline at end of file +{ + "copyright": "Blake Owens", + "url": "http://blakeowens.com", + "email": "blake@blakeowens.com", + "format": "html" +} diff --git a/users/blaulan.json b/users/blaulan.json index 5d7395eb..ce968754 100644 --- a/users/blaulan.json +++ b/users/blaulan.json @@ -1 +1,6 @@ -{"copyright":"Eric Wu","url":"http:\/\/blaulan.com","email":"me@blaulan.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Eric Wu", + "url": "http://blaulan.com", + "email": "me@blaulan.com", + "format": "txt" +} diff --git a/users/blazeworx.json b/users/blazeworx.json index 9cc1db1a..35d68e94 100644 --- a/users/blazeworx.json +++ b/users/blazeworx.json @@ -1 +1,6 @@ -{"copyright":"Alex Carter","url":"http:\/\/blazeworx.com","email":"alex@blazeworx.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Alex Carter", + "url": "http://blazeworx.com", + "email": "alex@blazeworx.com", + "format": "txt" +} diff --git a/users/blim.json b/users/blim.json index 2016b4d9..3e944450 100644 --- a/users/blim.json +++ b/users/blim.json @@ -1 +1,3 @@ -{"copyright":"Koo Chi Hoon, http:\/\/i-blim.com\/"} \ No newline at end of file +{ + "copyright": "Koo Chi Hoon, http://i-blim.com/" +} diff --git a/users/blueimp.json b/users/blueimp.json index 226d6e7f..d687cd62 100644 --- a/users/blueimp.json +++ b/users/blueimp.json @@ -1 +1,4 @@ -{"copyright":"Sebastian Tschan","url":"https:\/\/blueimp.net"} \ No newline at end of file +{ + "copyright": "Sebastian Tschan", + "url": "https://blueimp.net" +} diff --git a/users/blunderboy.json b/users/blunderboy.json index 1193fd4b..84ba04f0 100644 --- a/users/blunderboy.json +++ b/users/blunderboy.json @@ -1 +1,6 @@ -{"copyright":"Sachin Jain","email":"sachinjain024@gmail.com","theme":"cherry","format":"txt"} \ No newline at end of file +{ + "copyright": "Sachin Jain", + "email": "sachinjain024@gmail.com", + "theme": "cherry", + "format": "txt" +} diff --git a/users/bmaeser.json b/users/bmaeser.json index 95743af3..8342dfc1 100644 --- a/users/bmaeser.json +++ b/users/bmaeser.json @@ -1,4 +1,4 @@ { - "copyright": "Bernhard Mäser, http://bmaeser.io", + "copyright": "Bernhard Mäser, http://bmaeser.io", "url": "http://bmaeser.io" } diff --git a/users/bmelton.json b/users/bmelton.json index 68b24a9e..64c8926a 100644 --- a/users/bmelton.json +++ b/users/bmelton.json @@ -1 +1,3 @@ -{"copyright":"Barry Melton"} \ No newline at end of file +{ + "copyright": "Barry Melton" +} diff --git a/users/bmintz.json b/users/bmintz.json index 0547cd02..85806c45 100644 --- a/users/bmintz.json +++ b/users/bmintz.json @@ -1 +1,4 @@ -{"copyright":"Benjamin Mintz","theme":"black-beauty"} +{ + "copyright": "Benjamin Mintz", + "theme": "black-beauty" +} diff --git a/users/boardintelligence.json b/users/boardintelligence.json index 6cbb6ea6..126eefec 100644 --- a/users/boardintelligence.json +++ b/users/boardintelligence.json @@ -1 +1,5 @@ -{"copyright":"Board Intelligence","url":"http:\/\/boardintelligence.co.uk","email":"boardiq@boardintelligence.co.uk"} \ No newline at end of file +{ + "copyright": "Board Intelligence", + "url": "http://boardintelligence.co.uk", + "email": "boardiq@boardintelligence.co.uk" +} diff --git a/users/bobby-tables.json b/users/bobby-tables.json index 05f5ab28..d8340fb5 100644 --- a/users/bobby-tables.json +++ b/users/bobby-tables.json @@ -1 +1,4 @@ -{"copyright":"Bobby Tables","email":"bobby.tables@mailinator.com\">Little Bobby Tables<\/a>test<\/b>"} \ No newline at end of file +{ + "copyright": "test" +} diff --git a/users/via.json b/users/via.json index 8bc96f27..d2611f81 100644 --- a/users/via.json +++ b/users/via.json @@ -1 +1,3 @@ -{"copyright":"Vereniging Informatiewetenschappen Amsterdam"} \ No newline at end of file +{ + "copyright": "Vereniging Informatiewetenschappen Amsterdam" +} diff --git a/users/vicey.json b/users/vicey.json index faa68147..aee8b69f 100644 --- a/users/vicey.json +++ b/users/vicey.json @@ -1,6 +1,6 @@ { - "copyright": "Vicey Wang", - "url": "https://vicey.com", - "email": "vicey@live.com", - "format": "txt" + "copyright": "Vicey Wang", + "url": "https://vicey.com", + "email": "vicey@live.com", + "format": "txt" } diff --git a/users/vicnicius.json b/users/vicnicius.json index 5a17fef5..2741bc11 100644 --- a/users/vicnicius.json +++ b/users/vicnicius.json @@ -1 +1,6 @@ -{"copyright":"Vin\u00edcius Andrade","url":"http:\/\/vicnicius.github.io","email":"vchavesster@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Vinícius Andrade", + "url": "http://vicnicius.github.io", + "email": "vchavesster@gmail.com", + "format": "txt" +} diff --git a/users/victor.json b/users/victor.json index 31ce6a09..0832f84e 100644 --- a/users/victor.json +++ b/users/victor.json @@ -1 +1,6 @@ -{"copyright":"Victor Nogueira","email":"felladrin@gmail.com","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Victor Nogueira", + "email": "felladrin@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/victordavydov.json b/users/victordavydov.json index 42c586df..93511a49 100644 --- a/users/victordavydov.json +++ b/users/victordavydov.json @@ -1 +1,3 @@ -{"copyright":"Victor Davydov"} \ No newline at end of file +{ + "copyright": "Victor Davydov" +} diff --git a/users/victordieggo.json b/users/victordieggo.json index 79bb1c07..50645f27 100644 --- a/users/victordieggo.json +++ b/users/victordieggo.json @@ -1 +1,5 @@ -{"copyright":"Victor Diego","url":"http:\/\/victordiego.com","email":"victordieggo@gmail.com"} +{ + "copyright": "Victor Diego", + "url": "http://victordiego.com", + "email": "victordieggo@gmail.com" +} diff --git a/users/viditor.json b/users/viditor.json index 8ac51e3f..c15e8434 100644 --- a/users/viditor.json +++ b/users/viditor.json @@ -1 +1,6 @@ -{"copyright":"Andrew McPherson","url":"ehgoodenough.com","email":"ehgoodenough@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Andrew McPherson", + "url": "ehgoodenough.com", + "email": "ehgoodenough@gmail.com", + "gravatar": true +} diff --git a/users/vieiralucas.json b/users/vieiralucas.json index d7b31186..ac01edb5 100644 --- a/users/vieiralucas.json +++ b/users/vieiralucas.json @@ -1 +1,5 @@ -{"copyright":"Lucas Vieira","url":"http:\/\/vieiralucas.com","email":"vieiralucas4@gmail.com"} \ No newline at end of file +{ + "copyright": "Lucas Vieira", + "url": "http://vieiralucas.com", + "email": "vieiralucas4@gmail.com" +} diff --git a/users/viktorbergehall.json b/users/viktorbergehall.json index 4e0890ab..969cffe6 100644 --- a/users/viktorbergehall.json +++ b/users/viktorbergehall.json @@ -1 +1,3 @@ -{"copyright":"Viktor Bergehall"} \ No newline at end of file +{ + "copyright": "Viktor Bergehall" +} diff --git a/users/viktort.json b/users/viktort.json index 8ae6fcbe..9fe32d4c 100644 --- a/users/viktort.json +++ b/users/viktort.json @@ -1 +1,3 @@ -{"copyright":"Viktor Trako"} \ No newline at end of file +{ + "copyright": "Viktor Trako" +} diff --git a/users/vineetdhanawat.json b/users/vineetdhanawat.json index 1e6caaad..52820421 100644 --- a/users/vineetdhanawat.json +++ b/users/vineetdhanawat.json @@ -1,4 +1,4 @@ { "copyright": "Vineet Dhanawat", "url": "http://www.vineetdhanawat.com/" -} \ No newline at end of file +} diff --git a/users/vinipalma.json b/users/vinipalma.json index 6e854258..42a7c04a 100644 --- a/users/vinipalma.json +++ b/users/vinipalma.json @@ -1,5 +1,5 @@ -{ - "copyright": "Vinícius Palma", +{ + "copyright": "Vinícius Palma", "url": "http://vinipalma.com", "email": "vini_palma@outlook.com", "format": "txt", diff --git a/users/vinnyguitar.json b/users/vinnyguitar.json index 0cabe72e..c1fe99d2 100644 --- a/users/vinnyguitar.json +++ b/users/vinnyguitar.json @@ -1 +1,5 @@ -{"copyright":"vinnyguitar","email":"vinnyguitar@126.com","format":"txt"} \ No newline at end of file +{ + "copyright": "vinnyguitar", + "email": "vinnyguitar@126.com", + "format": "txt" +} diff --git a/users/vinwz.json b/users/vinwz.json index 53158109..483554c8 100644 --- a/users/vinwz.json +++ b/users/vinwz.json @@ -1 +1,3 @@ -{"copyright":"Vincent Watremez"} \ No newline at end of file +{ + "copyright": "Vincent Watremez" +} diff --git a/users/visav.json b/users/visav.json index 4ba8426b..6c8b7fc3 100644 --- a/users/visav.json +++ b/users/visav.json @@ -1 +1,3 @@ -{"copyright":"Visa Varjus"} \ No newline at end of file +{ + "copyright": "Visa Varjus" +} diff --git a/users/visionmedia.json b/users/visionmedia.json index 183a96a7..5aae7162 100644 --- a/users/visionmedia.json +++ b/users/visionmedia.json @@ -1 +1,3 @@ -{"copyright":"TJ Holowaychuk"} \ No newline at end of file +{ + "copyright": "TJ Holowaychuk" +} diff --git a/users/vitalk.json b/users/vitalk.json index 6171542d..e471aa29 100644 --- a/users/vitalk.json +++ b/users/vitalk.json @@ -1 +1,4 @@ -{"copyright":"Vital Kudzelka","email":"vital.kudzelka@gmail.com"} \ No newline at end of file +{ + "copyright": "Vital Kudzelka", + "email": "vital.kudzelka@gmail.com" +} diff --git a/users/vito.json b/users/vito.json index 2f6397eb..33ce4ded 100644 --- a/users/vito.json +++ b/users/vito.json @@ -1 +1,6 @@ -{"copyright":"Vito Zhang","url":"http:\/\/vit0.com","email":"vvitozhang@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Vito Zhang", + "url": "http://vit0.com", + "email": "vvitozhang@gmail.com", + "format": "txt" +} diff --git a/users/vitor.json b/users/vitor.json index b2f9d4ac..2b7c0e5e 100644 --- a/users/vitor.json +++ b/users/vitor.json @@ -1 +1,8 @@ -{"copyright":"Vitor Carlos","url":"http:\/\/v42.com.br","email":"vitor@v42.com.br","format":"html","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Vitor Carlos", + "url": "http://v42.com.br", + "email": "vitor@v42.com.br", + "format": "html", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/vitorbal.json b/users/vitorbal.json index 18aed00b..02694f4c 100644 --- a/users/vitorbal.json +++ b/users/vitorbal.json @@ -1 +1,5 @@ -{"copyright":"Vitor Balocco","url":"http:\/\/github.com\/vitorbal","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Vitor Balocco", + "url": "http://github.com/vitorbal", + "theme": "double-windsor" +} diff --git a/users/vitorbritto.json b/users/vitorbritto.json index d48acf95..ea8e68c5 100644 --- a/users/vitorbritto.json +++ b/users/vitorbritto.json @@ -1 +1,5 @@ -{"copyright":"Vitor Britto","url":"http:\/\/vitorbritto.com.br","email":"code@vitorbritto.com.br"} +{ + "copyright": "Vitor Britto", + "url": "http://vitorbritto.com.br", + "email": "code@vitorbritto.com.br" +} diff --git a/users/vitornogueira.json b/users/vitornogueira.json index 7d1d2ad7..655f0e66 100644 --- a/users/vitornogueira.json +++ b/users/vitornogueira.json @@ -1 +1,3 @@ -{"copyright":"Vitor Nogueira"} \ No newline at end of file +{ + "copyright": "Vitor Nogueira" +} diff --git a/users/vjpr.json b/users/vjpr.json index 7f8fdabc..b91c52d5 100644 --- a/users/vjpr.json +++ b/users/vjpr.json @@ -1 +1,3 @@ -{"copyright":"Vaughan Rouesnel"} \ No newline at end of file +{ + "copyright": "Vaughan Rouesnel" +} diff --git a/users/vko-online.json b/users/vko-online.json index 6b3c7526..e6a0f605 100644 --- a/users/vko-online.json +++ b/users/vko-online.json @@ -1 +1,3 @@ -{"copyright":"Medet Tleukabiluly"} \ No newline at end of file +{ + "copyright": "Medet Tleukabiluly" +} diff --git a/users/vmanot.json b/users/vmanot.json index 46f7a763..a3c42baf 100644 --- a/users/vmanot.json +++ b/users/vmanot.json @@ -1 +1,3 @@ -{"copyright":"Vatsal Manot"} \ No newline at end of file +{ + "copyright": "Vatsal Manot" +} diff --git a/users/vnk.json b/users/vnk.json index 42330a68..07552d75 100644 --- a/users/vnk.json +++ b/users/vnk.json @@ -1 +1,6 @@ -{"copyright":"gnz\/vnk","url":"http:\/\/lapartequefalta.com","email":"venkman@lapartequefalta.com","format":"txt"} \ No newline at end of file +{ + "copyright": "gnz/vnk", + "url": "http://lapartequefalta.com", + "email": "venkman@lapartequefalta.com", + "format": "txt" +} diff --git a/users/voltdb.json b/users/voltdb.json index b3f6a1d5..eb949f27 100644 --- a/users/voltdb.json +++ b/users/voltdb.json @@ -1,6 +1,6 @@ { - "copyright":"VoltDB, Inc.", - "url":"http:\/\/www.voltdb.com", - "email":"info@voltdb.com", - "format":"txt" + "copyright": "VoltDB, Inc.", + "url": "http://www.voltdb.com", + "email": "info@voltdb.com", + "format": "txt" } diff --git a/users/voodootikigod.json b/users/voodootikigod.json index 81c95a1b..d7bfc257 100644 --- a/users/voodootikigod.json +++ b/users/voodootikigod.json @@ -1 +1,3 @@ -{"copyright":"Chris Williams"} \ No newline at end of file +{ + "copyright": "Chris Williams" +} diff --git a/users/voxpelli.json b/users/voxpelli.json index 13d9ac60..22812146 100644 --- a/users/voxpelli.json +++ b/users/voxpelli.json @@ -1 +1,6 @@ -{"copyright":"Pelle Wessman","url":"http:\/\/kodfabrik.se","email":"pelle@kodfabrik.se","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Pelle Wessman", + "url": "http://kodfabrik.se", + "email": "pelle@kodfabrik.se", + "theme": "double-windsor" +} diff --git a/users/vsisk.json b/users/vsisk.json index ea8c3385..06ed3454 100644 --- a/users/vsisk.json +++ b/users/vsisk.json @@ -1,5 +1,5 @@ { "copyright": "Vincent Sisk, https://github.com/sappharx", "email": "vinnysisk@gmail.com", - "theme" : "solarized" + "theme": "solarized" } diff --git a/users/vsouza.json b/users/vsouza.json index 2d589549..2d77aaa8 100644 --- a/users/vsouza.json +++ b/users/vsouza.json @@ -1 +1,8 @@ -{"copyright":"Vinicius Souza, http:\/\/vsouza.com ","url":"http:\/\/vsouza.com","email":"hi@vsouza.com","format":"html","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Vinicius Souza, http://vsouza.com ", + "url": "http://vsouza.com", + "email": "hi@vsouza.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/vtalbot.json b/users/vtalbot.json index 570b5dd7..2e7e6863 100644 --- a/users/vtalbot.json +++ b/users/vtalbot.json @@ -1 +1,5 @@ -{"copyright":"Vincent Talbot","url":"http:\/\/github.com\/vtalbot","email":"vincent.talbot@gmail.com"} \ No newline at end of file +{ + "copyright": "Vincent Talbot", + "url": "http://github.com/vtalbot", + "email": "vincent.talbot@gmail.com" +} diff --git a/users/vtence.json b/users/vtence.json index 66977507..7d90a3d7 100644 --- a/users/vtence.json +++ b/users/vtence.json @@ -1 +1,3 @@ -{"copyright":"Vincent Tenc\u00e9"} \ No newline at end of file +{ + "copyright": "Vincent Tencé" +} diff --git a/users/vulk.json b/users/vulk.json index b51403b4..eac5f753 100644 --- a/users/vulk.json +++ b/users/vulk.json @@ -1 +1,4 @@ -{"copyright":"Vulk","email":"wolfpack@vulk.co"} \ No newline at end of file +{ + "copyright": "Vulk", + "email": "wolfpack@vulk.co" +} diff --git a/users/vuquochuy.json b/users/vuquochuy.json index 1d3622ae..09cce0a9 100644 --- a/users/vuquochuy.json +++ b/users/vuquochuy.json @@ -1 +1,6 @@ -{"copyright":"Huy Vu","url":"http:\/\/huyvq.com","email":"vuquochuy@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Huy Vu", + "url": "http://huyvq.com", + "email": "vuquochuy@gmail.com", + "format": "txt" +} diff --git a/users/vvakame.json b/users/vvakame.json index 73a5b615..85876e51 100644 --- a/users/vvakame.json +++ b/users/vvakame.json @@ -1 +1,4 @@ -{"copyright":"Masahiro Wakame","url":"https:\/\/github.com\/vvakame"} \ No newline at end of file +{ + "copyright": "Masahiro Wakame", + "url": "https://github.com/vvakame" +} diff --git a/users/vzool.json b/users/vzool.json index 178aebdf..f0cc38d1 100644 --- a/users/vzool.json +++ b/users/vzool.json @@ -1 +1,4 @@ -{"copyright":"Abdelaziz Elrashed","email":"aeemh.sdn@gmail.com"} \ No newline at end of file +{ + "copyright": "Abdelaziz Elrashed", + "email": "aeemh.sdn@gmail.com" +} diff --git a/users/w.json b/users/w.json index f0ad6312..c9a1ebb9 100644 --- a/users/w.json +++ b/users/w.json @@ -1,8 +1,8 @@ { - "copyright": "Zijie(Jay) Wang", - "url": "http://hooo.ooo", - "email": "xiao.hk1997@gmail.com", - "format": "html", - "theme": "material-brown", - "gravatar":true - } + "copyright": "Zijie(Jay) Wang", + "url": "http://hooo.ooo", + "email": "xiao.hk1997@gmail.com", + "format": "html", + "theme": "material-brown", + "gravatar": true +} diff --git a/users/wangbin.json b/users/wangbin.json index d98c0e25..9f4acbc6 100644 --- a/users/wangbin.json +++ b/users/wangbin.json @@ -1 +1,5 @@ -{"copyright":"Wang Bin","email":"wangbin.zibo@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wang Bin", + "email": "wangbin.zibo@gmail.com", + "format": "txt" +} diff --git a/users/wangeleile.json b/users/wangeleile.json index 0ed9b6ce..477e73eb 100644 --- a/users/wangeleile.json +++ b/users/wangeleile.json @@ -3,4 +3,3 @@ "url": "http://wangeleile.de", "email": "wangeleile@googlemail.com" } - diff --git a/users/wanja.json b/users/wanja.json index 8d840493..29270c6a 100644 --- a/users/wanja.json +++ b/users/wanja.json @@ -1 +1,3 @@ -{"copyright":"Wanja Stier"} \ No newline at end of file +{ + "copyright": "Wanja Stier" +} diff --git a/users/warwick.json b/users/warwick.json index 2d309968..2b25362c 100644 --- a/users/warwick.json +++ b/users/warwick.json @@ -1 +1,4 @@ -{"copyright":"University of Warwick","url":"http:\/\/warwick.ac.uk\/"} \ No newline at end of file +{ + "copyright": "University of Warwick", + "url": "http://warwick.ac.uk/" +} diff --git a/users/warwickmasson.json b/users/warwickmasson.json index 79f213d4..9f5e6415 100644 --- a/users/warwickmasson.json +++ b/users/warwickmasson.json @@ -1 +1,3 @@ -{"copyright":"Warwick Masson"} \ No newline at end of file +{ + "copyright": "Warwick Masson" +} diff --git a/users/watchout.json b/users/watchout.json index bd36ae2a..c0fdfb09 100644 --- a/users/watchout.json +++ b/users/watchout.json @@ -1 +1,6 @@ -{"copyright":"Watchout, Co.","url":"http:\/\/watchout.tw\/","email":"info@watchout.tw","format":"txt"} \ No newline at end of file +{ + "copyright": "Watchout, Co.", + "url": "http://watchout.tw/", + "email": "info@watchout.tw", + "format": "txt" +} diff --git a/users/wavell.json b/users/wavell.json index d68255e2..e8412c88 100644 --- a/users/wavell.json +++ b/users/wavell.json @@ -1 +1,4 @@ -{"copyright":"Wavell Watson","url":"https:\/\/github.com\/wavell"} \ No newline at end of file +{ + "copyright": "Wavell Watson", + "url": "https://github.com/wavell" +} diff --git a/users/waynesan.json b/users/waynesan.json index c4eb74dc..26c88c72 100644 --- a/users/waynesan.json +++ b/users/waynesan.json @@ -4,5 +4,5 @@ "email": "waynesan@zerozone.tw", "format": "html", "gravatar": true, - "theme" : "default" + "theme": "default" } diff --git a/users/wbinnssmith.json b/users/wbinnssmith.json index 71006305..28b01325 100644 --- a/users/wbinnssmith.json +++ b/users/wbinnssmith.json @@ -1 +1,4 @@ -{"copyright":"Will Binns-Smith","email":"wbinnssmith@gmail.com"} \ No newline at end of file +{ + "copyright": "Will Binns-Smith", + "email": "wbinnssmith@gmail.com" +} diff --git a/users/wd.json b/users/wd.json index 7d704d4a..1b3fddc4 100644 --- a/users/wd.json +++ b/users/wd.json @@ -1 +1,5 @@ -{"copyright":"Oleg Korsunsky","url":"http:\/\/wd.dizaina.net","email":"wd@dizaina.net"} \ No newline at end of file +{ + "copyright": "Oleg Korsunsky", + "url": "http://wd.dizaina.net", + "email": "wd@dizaina.net" +} diff --git a/users/webbson.json b/users/webbson.json index 37176237..e21b04da 100644 --- a/users/webbson.json +++ b/users/webbson.json @@ -1 +1,7 @@ -{"copyright":"Tom Stevens, http:\/\/webbson.net","url":"http:\/\/webbson.net","email":"tom@stevens.se","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Tom Stevens, http://webbson.net", + "url": "http://webbson.net", + "email": "tom@stevens.se", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/webcomponentsorg.json b/users/webcomponentsorg.json index 5a0863cf..90b2db68 100644 --- a/users/webcomponentsorg.json +++ b/users/webcomponentsorg.json @@ -1 +1,5 @@ -{"copyright":"WebComponents.org","url":"http:\/\/webcomponents.org","email":"webcomponentsdotorg@gmail.com"} +{ + "copyright": "WebComponents.org", + "url": "http://webcomponents.org", + "email": "webcomponentsdotorg@gmail.com" +} diff --git a/users/webdevrich.json b/users/webdevrich.json index ad8da972..4c999dc8 100644 --- a/users/webdevrich.json +++ b/users/webdevrich.json @@ -1,7 +1,7 @@ { - "copyright": "Richard Keyzor, http://webdevri.ch", - "url": "http://webdevri.ch/", - "email": "web_dev_rich@keyzor.net", - "format": "txt", - "gravatar": true + "copyright": "Richard Keyzor, http://webdevri.ch", + "url": "http://webdevri.ch/", + "email": "web_dev_rich@keyzor.net", + "format": "txt", + "gravatar": true } diff --git a/users/weejames.json b/users/weejames.json index a19f5eb5..a9b48e3b 100644 --- a/users/weejames.json +++ b/users/weejames.json @@ -1 +1,6 @@ -{"copyright":"James Constable","url":"http:\/\/jamesconstable.co.uk","email":"me@jamesconstable.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "James Constable", + "url": "http://jamesconstable.co.uk", + "email": "me@jamesconstable.co.uk", + "format": "txt" +} diff --git a/users/weijunji.json b/users/weijunji.json index 3521d84f..51ffd1ac 100644 --- a/users/weijunji.json +++ b/users/weijunji.json @@ -1,7 +1,7 @@ -{ - "copyright": "Junji Wei", - "url": "https://weijunji.me", - "email": "990628wjy@gmail.com", - "gravatar": true, - "theme": "dusk" +{ + "copyright": "Junji Wei", + "url": "https://weijunji.me", + "email": "990628wjy@gmail.com", + "gravatar": true, + "theme": "dusk" } diff --git a/users/wesley.json b/users/wesley.json index 64359ed0..4a62f687 100644 --- a/users/wesley.json +++ b/users/wesley.json @@ -1 +1,6 @@ -{"copyright":"Wesley Sui","url":"http:\/\/suijy.com","email":"wesleysui@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wesley Sui", + "url": "http://suijy.com", + "email": "wesleysui@gmail.com", + "format": "txt" +} diff --git a/users/wesleydesouza.json b/users/wesleydesouza.json index 5331101a..5a68f6e2 100644 --- a/users/wesleydesouza.json +++ b/users/wesleydesouza.json @@ -1 +1,7 @@ -{"copyright":"Wesley de Souza","url":"http:\/\/wesley.so","email":"me@wesley.so","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Wesley de Souza", + "url": "http://wesley.so", + "email": "me@wesley.so", + "format": "html", + "gravatar": true +} diff --git a/users/weslly.json b/users/weslly.json index 801253a8..ee503968 100644 --- a/users/weslly.json +++ b/users/weslly.json @@ -1 +1,5 @@ -{"copyright":"Weslly Honorato, http:\/\/about.me\/weslly","url":"http:\/\/about.me\/weslly","format":"html"} \ No newline at end of file +{ + "copyright": "Weslly Honorato, http://about.me/weslly", + "url": "http://about.me/weslly", + "format": "html" +} diff --git a/users/wglab.json b/users/wglab.json index aa835a0d..811b1293 100644 --- a/users/wglab.json +++ b/users/wglab.json @@ -1 +1,3 @@ -{"copyright":"Wang Genomics Lab"} \ No newline at end of file +{ + "copyright": "Wang Genomics Lab" +} diff --git a/users/whatsim.json b/users/whatsim.json index cb3c08b3..d541e762 100644 --- a/users/whatsim.json +++ b/users/whatsim.json @@ -1 +1,3 @@ -{"copyright":"Will Ruby"} \ No newline at end of file +{ + "copyright": "Will Ruby" +} diff --git a/users/whittle.json b/users/whittle.json index 32076b43..3e85509b 100644 --- a/users/whittle.json +++ b/users/whittle.json @@ -1 +1,3 @@ -{"copyright":"Jason Whittle"} \ No newline at end of file +{ + "copyright": "Jason Whittle" +} diff --git a/users/whizark.json b/users/whizark.json index 5a314965..59836267 100644 --- a/users/whizark.json +++ b/users/whizark.json @@ -1 +1,4 @@ -{"copyright":"Whizark","url":"https:\/\/github.com\/whizark"} \ No newline at end of file +{ + "copyright": "Whizark", + "url": "https://github.com/whizark" +} diff --git a/users/whostolemyhat.json b/users/whostolemyhat.json index dff69fc8..b1d8c5fc 100644 --- a/users/whostolemyhat.json +++ b/users/whostolemyhat.json @@ -1 +1,4 @@ -{"copyright":"James Tease","url":"http:\/\/jamestease.co.uk"} \ No newline at end of file +{ + "copyright": "James Tease", + "url": "http://jamestease.co.uk" +} diff --git a/users/whym.json b/users/whym.json index cb04a9eb..1f9a74cd 100644 --- a/users/whym.json +++ b/users/whym.json @@ -1,7 +1,7 @@ { - "copyright": "Yusuke Matsubara", - "url": "http:\/\/whym.org", - "email": "whym@whym.org", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Yusuke Matsubara", + "url": "http://whym.org", + "email": "whym@whym.org", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/widged.json b/users/widged.json index 9ee698c1..ae5c9689 100644 --- a/users/widged.json +++ b/users/widged.json @@ -1 +1,5 @@ -{"copyright":"Marielle Lange, http:\/\/widged.com","url":"http:\/\/widged.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Marielle Lange, http://widged.com", + "url": "http://widged.com", + "theme": "flesch" +} diff --git a/users/widnyana.json b/users/widnyana.json index 2cce32bf..3a6f686c 100644 --- a/users/widnyana.json +++ b/users/widnyana.json @@ -1 +1,7 @@ -{"copyright":"Widnyana Putra","url":"http:\/\/widnyana.web.id","email":"me@widnyana.web.id","format":"html","theme":"white cherry"} \ No newline at end of file +{ + "copyright": "Widnyana Putra", + "url": "http://widnyana.web.id", + "email": "me@widnyana.web.id", + "format": "html", + "theme": "white cherry" +} diff --git a/users/wiesner.json b/users/wiesner.json index 43009d28..4c74b034 100644 --- a/users/wiesner.json +++ b/users/wiesner.json @@ -1 +1,5 @@ -{"copyright":"Michael Wiesner","url":"https:\/\/mwiesner.com","email":"impressum@mwiesner.com"} \ No newline at end of file +{ + "copyright": "Michael Wiesner", + "url": "https://mwiesner.com", + "email": "impressum@mwiesner.com" +} diff --git a/users/wilddog.json b/users/wilddog.json index 75b4c951..6034704d 100644 --- a/users/wilddog.json +++ b/users/wilddog.json @@ -1 +1,5 @@ -{"copyright":"Wilddog","url":"https:\/\/wilddog.com", "email":"opensource@wilddog.com"} +{ + "copyright": "Wilddog", + "url": "https://wilddog.com", + "email": "opensource@wilddog.com" +} diff --git a/users/will3942.json b/users/will3942.json index 2aa8b5e1..65a98f93 100644 --- a/users/will3942.json +++ b/users/will3942.json @@ -1 +1,6 @@ -{"copyright":"Will Evans","url":"http:\/\/will3942.com","email":"will@will3942.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Will Evans", + "url": "http://will3942.com", + "email": "will@will3942.com", + "format": "txt" +} diff --git a/users/william17.json b/users/william17.json index 8a49ccb6..4335cb48 100644 --- a/users/william17.json +++ b/users/william17.json @@ -1 +1,4 @@ -{"copyright":"William Leung","url":"https:\/\/github.com\/William17"} \ No newline at end of file +{ + "copyright": "William Leung", + "url": "https://github.com/William17" +} diff --git a/users/willin.json b/users/willin.json index 70214bb5e..2c8ee1c0 100644 --- a/users/willin.json +++ b/users/willin.json @@ -1 +1,8 @@ -{"copyright":"Willin Wang","url":"http://willin.wang","email":"willin@willin.org","format":"html","gravatar":true,"theme":"material"} \ No newline at end of file +{ + "copyright": "Willin Wang", + "url": "http://willin.wang", + "email": "willin@willin.org", + "format": "html", + "gravatar": true, + "theme": "material" +} diff --git a/users/willpower.json b/users/willpower.json index 14efb9c4..150bc556 100644 --- a/users/willpower.json +++ b/users/willpower.json @@ -1,7 +1,7 @@ { - "copyright":"Felipe Nunes", - "url": "http://willpower.art.br", - "email":"felipe@willpower.art.br", - "theme":"willpower", - "gravatar":true -} \ No newline at end of file + "copyright": "Felipe Nunes", + "url": "http://willpower.art.br", + "email": "felipe@willpower.art.br", + "theme": "willpower", + "gravatar": true +} diff --git a/users/wind4869.json b/users/wind4869.json index 57931ab1..8f69300e 100644 --- a/users/wind4869.json +++ b/users/wind4869.json @@ -1 +1,6 @@ -{"copyright":"Youqiang Hao","url":"http:\/\/wind4869.me","email":"windv587@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Youqiang Hao", + "url": "http://wind4869.me", + "email": "windv587@gmail.com", + "format": "txt" +} diff --git a/users/witchard.json b/users/witchard.json index 26c89a32..aad0b57f 100644 --- a/users/witchard.json +++ b/users/witchard.json @@ -1 +1,4 @@ -{"copyright":"witchard, http://witchard.github.io/", "url": "http://witchard.github.io/"} +{ + "copyright": "witchard, http://witchard.github.io/", + "url": "http://witchard.github.io/" +} diff --git a/users/wjr3.json b/users/wjr3.json index 48078208..69731530 100644 --- a/users/wjr3.json +++ b/users/wjr3.json @@ -1,7 +1,7 @@ { - "copyright": "William J. Rainaud, https://wrainaud.com", - "url": "https://wrainaud.com", - "email": "wrainaud@outlook.com", - "format": "html", - "theme": "mitserrat" -} \ No newline at end of file + "copyright": "William J. Rainaud, https://wrainaud.com", + "url": "https://wrainaud.com", + "email": "wrainaud@outlook.com", + "format": "html", + "theme": "mitserrat" +} diff --git a/users/wmwragg.json b/users/wmwragg.json index b74a12d8..6aae2b0e 100644 --- a/users/wmwragg.json +++ b/users/wmwragg.json @@ -1 +1,3 @@ -{"copyright":"William Wragg"} \ No newline at end of file +{ + "copyright": "William Wragg" +} diff --git a/users/wolfiezero.json b/users/wolfiezero.json index 07008cdf..8ca01e1b 100644 --- a/users/wolfiezero.json +++ b/users/wolfiezero.json @@ -1 +1,6 @@ -{"copyright":"Neil Sweeney","url":"http:\/\/wolfiezero.com\/","email":"neil@wolfiezero.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Neil Sweeney", + "url": "http://wolfiezero.com/", + "email": "neil@wolfiezero.com", + "gravatar": true +} diff --git a/users/wolflee.json b/users/wolflee.json index 72b282e0..2e9aa354 100644 --- a/users/wolflee.json +++ b/users/wolflee.json @@ -1 +1,3 @@ -{"copyright":"WolfLee"} \ No newline at end of file +{ + "copyright": "WolfLee" +} diff --git a/users/wong2.json b/users/wong2.json index 0a054fb1..125362e5 100644 --- a/users/wong2.json +++ b/users/wong2.json @@ -1 +1,4 @@ -{"copyright":"Wang Dapeng","url":"http:\/\/wong2.cn"} \ No newline at end of file +{ + "copyright": "Wang Dapeng", + "url": "http://wong2.cn" +} diff --git a/users/wordpresspokhara.json b/users/wordpresspokhara.json index fed20202..b49406e2 100644 --- a/users/wordpresspokhara.json +++ b/users/wordpresspokhara.json @@ -1 +1,5 @@ -{"copyright":"WordPress Pokhara","url":"https:\/\/www.facebook.com\/groups\/wordpress.pokhara","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "WordPress Pokhara", + "url": "https://www.facebook.com/groups/wordpress.pokhara", + "theme": "double-windsor" +} diff --git a/users/wouterjanson.json b/users/wouterjanson.json index 7a7606f8..34976497 100644 --- a/users/wouterjanson.json +++ b/users/wouterjanson.json @@ -1,8 +1,8 @@ { - "copyright": "Wouter Janson", - "url": "https://wouterjanson.nl", - "email": "wouterjanson@icloud.com", - "format": "html", - "gravatar": true, - "theme": "mitserrat" + "copyright": "Wouter Janson", + "url": "https://wouterjanson.nl", + "email": "wouterjanson@icloud.com", + "format": "html", + "gravatar": true, + "theme": "mitserrat" } diff --git a/users/wp-blank-canvas-framework.json b/users/wp-blank-canvas-framework.json index 31894082..04a27d99 100644 --- a/users/wp-blank-canvas-framework.json +++ b/users/wp-blank-canvas-framework.json @@ -1 +1,6 @@ -{"copyright":"$1","theme":"$2","email":"$3","format":"$4"} \ No newline at end of file +{ + "copyright": "$1", + "theme": "$2", + "email": "$3", + "format": "$4" +} diff --git a/users/wp-freelancer-client-panel.json b/users/wp-freelancer-client-panel.json index 51550468..b8d90e27 100644 --- a/users/wp-freelancer-client-panel.json +++ b/users/wp-freelancer-client-panel.json @@ -1 +1,6 @@ -{"copyright":"Wordpress Freelancer Client Panel","theme":"flesch","email":"support@icodeclarity.com","format":"html"} \ No newline at end of file +{ + "copyright": "Wordpress Freelancer Client Panel", + "theme": "flesch", + "email": "support@icodeclarity.com", + "format": "html" +} diff --git a/users/wp-uptimerobot-dashboard-widget.json b/users/wp-uptimerobot-dashboard-widget.json index 72ee2f47..f0dfd271 100644 --- a/users/wp-uptimerobot-dashboard-widget.json +++ b/users/wp-uptimerobot-dashboard-widget.json @@ -1 +1,6 @@ -{"copyright":"WP Uptime-Robot Dashboard Widget","theme":"orange","email":"support@icodeclarity.com","format":"html"} \ No newline at end of file +{ + "copyright": "WP Uptime-Robot Dashboard Widget", + "theme": "orange", + "email": "support@icodeclarity.com", + "format": "html" +} diff --git a/users/wph.json b/users/wph.json index d4a42428..bb2bdeff 100644 --- a/users/wph.json +++ b/users/wph.json @@ -1 +1,8 @@ -{"copyright":"Warren Harrison","url":"http:\/\/hungry-media.com","email":"warren@hungry-media.com","format":"html","gravatar":true,"theme":"black beauty"} \ No newline at end of file +{ + "copyright": "Warren Harrison", + "url": "http://hungry-media.com", + "email": "warren@hungry-media.com", + "format": "html", + "gravatar": true, + "theme": "black beauty" +} diff --git a/users/wpk.json b/users/wpk.json index a2a60927..4592bebc 100644 --- a/users/wpk.json +++ b/users/wpk.json @@ -1 +1,4 @@ -{"copyright":"Paul Koppen, http:\/\/paulkoppen.com","url":"http:\/\/paulkoppen.com"} \ No newline at end of file +{ + "copyright": "Paul Koppen, http://paulkoppen.com", + "url": "http://paulkoppen.com" +} diff --git a/users/wpsitecare.json b/users/wpsitecare.json index 88dcbf14..0185962b 100644 --- a/users/wpsitecare.json +++ b/users/wpsitecare.json @@ -1 +1,6 @@ -{"copyright":"WP Site Care","url":"http:\/\/www.wpsitecare.com","email":"hello@wpsitecare.com","gravatar":true} \ No newline at end of file +{ + "copyright": "WP Site Care", + "url": "http://www.wpsitecare.com", + "email": "hello@wpsitecare.com", + "gravatar": true +} diff --git a/users/wraithan.json b/users/wraithan.json index 1e48a619..f452f497 100644 --- a/users/wraithan.json +++ b/users/wraithan.json @@ -1 +1,7 @@ -{"copyright":"Chris McDonald","url":"http:\/\/wraithan.net","email":"xwraithanx@gmail.com","theme":"flesch","gravatar":true} \ No newline at end of file +{ + "copyright": "Chris McDonald", + "url": "http://wraithan.net", + "email": "xwraithanx@gmail.com", + "theme": "flesch", + "gravatar": true +} diff --git a/users/wrl.json b/users/wrl.json index be8eadef..c265ac30 100644 --- a/users/wrl.json +++ b/users/wrl.json @@ -1 +1,5 @@ -{"copyright":"William Light","email":"wrl@illest.net","format":"txt"} \ No newline at end of file +{ + "copyright": "William Light", + "email": "wrl@illest.net", + "format": "txt" +} diff --git a/users/wsmoak.json b/users/wsmoak.json index ee28b5db..331fa19f 100644 --- a/users/wsmoak.json +++ b/users/wsmoak.json @@ -1 +1,6 @@ -{"copyright":"Wendy Smoak","url":"http:\/\/wsmoak.net","email":"wsmoak@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wendy Smoak", + "url": "http://wsmoak.net", + "email": "wsmoak@gmail.com", + "format": "txt" +} diff --git a/users/wtigert.json b/users/wtigert.json index 99a999ba..12a856c7 100644 --- a/users/wtigert.json +++ b/users/wtigert.json @@ -1 +1,3 @@ -{"copyright":"Wyatt Tigert"} \ No newline at end of file +{ + "copyright": "Wyatt Tigert" +} diff --git a/users/wttw.json b/users/wttw.json index e90988e5..dce3be54 100644 --- a/users/wttw.json +++ b/users/wttw.json @@ -1 +1,6 @@ -{"copyright":"Steve Atkins","url":"http:\/\/labs.wordtothewise.com\/","email":"steve@wordtothewise.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Steve Atkins", + "url": "http://labs.wordtothewise.com/", + "email": "steve@wordtothewise.com", + "theme": "double-windsor" +} diff --git a/users/wty.json b/users/wty.json index ef6c4373..3f2b4f3c 100644 --- a/users/wty.json +++ b/users/wty.json @@ -1 +1,3 @@ -{"copyright":"Tianyu Wang"} \ No newline at end of file +{ + "copyright": "Tianyu Wang" +} diff --git a/users/wty21cn.json b/users/wty21cn.json index ef6c4373..3f2b4f3c 100644 --- a/users/wty21cn.json +++ b/users/wty21cn.json @@ -1 +1,3 @@ -{"copyright":"Tianyu Wang"} \ No newline at end of file +{ + "copyright": "Tianyu Wang" +} diff --git a/users/wuan.json b/users/wuan.json index 738731b7..0093f7be 100644 --- a/users/wuan.json +++ b/users/wuan.json @@ -1 +1,3 @@ -{"copyright":"Andreas W\u00fcrl"} \ No newline at end of file +{ + "copyright": "Andreas Würl" +} diff --git a/users/wuthefwasthat.json b/users/wuthefwasthat.json index 65f675ba..864f8902 100644 --- a/users/wuthefwasthat.json +++ b/users/wuthefwasthat.json @@ -1 +1,3 @@ -{"copyright":"Jeff Wu"} \ No newline at end of file +{ + "copyright": "Jeff Wu" +} diff --git a/users/ww24.json b/users/ww24.json index 40991d29..289f38b8 100644 --- a/users/ww24.json +++ b/users/ww24.json @@ -1 +1,4 @@ -{"copyright":"Takenori Nakagawa","url":"https:\/\/github.com\/ww24"} \ No newline at end of file +{ + "copyright": "Takenori Nakagawa", + "url": "https://github.com/ww24" +} diff --git a/users/wwalker.json b/users/wwalker.json index 588a3950..e48eeac6 100644 --- a/users/wwalker.json +++ b/users/wwalker.json @@ -1 +1,4 @@ -{"copyright":"Wayne Walker","email":"wwalker@solid-constructs.com"} \ No newline at end of file +{ + "copyright": "Wayne Walker", + "email": "wwalker@solid-constructs.com" +} diff --git a/users/www.json b/users/www.json new file mode 100644 index 00000000..c73870d8 --- /dev/null +++ b/users/www.json @@ -0,0 +1,5 @@ +{ + "//1": "Security holding user", + "//2": "This user is being locked because www is automatically stripped.", + "locked": true +} diff --git a/users/wy.json b/users/wy.json index 7974981a..a879f7c3 100644 --- a/users/wy.json +++ b/users/wy.json @@ -1 +1,5 @@ -{"copyright":"William Youmans","url":"http:\/\/www.williamyoumans.com","email":"hello@williamyoumans.com"} \ No newline at end of file +{ + "copyright": "William Youmans", + "url": "http://www.williamyoumans.com", + "email": "hello@williamyoumans.com" +} diff --git a/users/wychoe.json b/users/wychoe.json index 8b687521..bc22ba23 100644 --- a/users/wychoe.json +++ b/users/wychoe.json @@ -1 +1,3 @@ -{"copyright":"Choe Wooyeong"} \ No newline at end of file +{ + "copyright": "Choe Wooyeong" +} diff --git a/users/wytrivail.json b/users/wytrivail.json index d52ec1c6..58c79063 100644 --- a/users/wytrivail.json +++ b/users/wytrivail.json @@ -1 +1,3 @@ -{"copyright":"wytrivail"} \ No newline at end of file +{ + "copyright": "wytrivail" +} diff --git a/users/xcuze.json b/users/xcuze.json index d58556a2..44b44c55 100644 --- a/users/xcuze.json +++ b/users/xcuze.json @@ -1 +1,6 @@ -{"copyright":"Florian Kr\u00fcger","url":"http:\/\/xcuze.me","email":"florian.krueger@projectserver.org","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Florian Krüger", + "url": "http://xcuze.me", + "email": "florian.krueger@projectserver.org", + "theme": "afterdark" +} diff --git a/users/xerula.json b/users/xerula.json index 70e27b7b..d7144a60 100644 --- a/users/xerula.json +++ b/users/xerula.json @@ -1 +1,6 @@ -{"copyright":"Joseph Kai Russell","url":"http:\/\/xerula.com","email":"xerula@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Joseph Kai Russell", + "url": "http://xerula.com", + "email": "xerula@gmail.com", + "format": "html" +} diff --git a/users/xffljjqbqvsywxqakpvdbwyqqyt.json b/users/xffljjqbqvsywxqakpvdbwyqqyt.json index 1b629e63..96cc1e31 100644 --- a/users/xffljjqbqvsywxqakpvdbwyqqyt.json +++ b/users/xffljjqbqvsywxqakpvdbwyqqyt.json @@ -1 +1,3 @@ -{"copyright":"xffljjqbqvsywxqakpvdbwyqqyt"} \ No newline at end of file +{ + "copyright": "xffljjqbqvsywxqakpvdbwyqqyt" +} diff --git a/users/xhh.json b/users/xhh.json index 092c7a48..db9889bd 100644 --- a/users/xhh.json +++ b/users/xhh.json @@ -1 +1,6 @@ -{"copyright":"Xu Hui Hui","url":"http:\/\/xhh.me","email":"xhh@xhh.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Xu Hui Hui", + "url": "http://xhh.me", + "email": "xhh@xhh.me", + "format": "txt" +} diff --git a/users/xiaods.json b/users/xiaods.json index fea3b077..713220c4 100644 --- a/users/xiaods.json +++ b/users/xiaods.json @@ -1 +1,6 @@ -{"copyright":"Deshi Xiao","url":"http:\/\/coder.858go.com\/","email":"xiaods@gmail.com","format":"html"} +{ + "copyright": "Deshi Xiao", + "url": "http://coder.858go.com/", + "email": "xiaods@gmail.com", + "format": "html" +} diff --git a/users/xight.json b/users/xight.json index f8daa9d2..52a0cf1d 100644 --- a/users/xight.json +++ b/users/xight.json @@ -1,5 +1,5 @@ { - "copyright":"Yoshiki Sato", - "url":"http://xight.org", - "gravatar":true + "copyright": "Yoshiki Sato", + "url": "http://xight.org", + "gravatar": true } diff --git a/users/ximi.json b/users/ximi.json index 396bdad0..85e3a9f1 100644 --- a/users/ximi.json +++ b/users/ximi.json @@ -1 +1,6 @@ -{"copyright":"Max (ximi)","url":"http:\/\/ximi.io","email":"max@ximi.io","format":"txt"} \ No newline at end of file +{ + "copyright": "Max (ximi)", + "url": "http://ximi.io", + "email": "max@ximi.io", + "format": "txt" +} diff --git a/users/xinuc.json b/users/xinuc.json index ff496a36..106ee9f3 100644 --- a/users/xinuc.json +++ b/users/xinuc.json @@ -1 +1,3 @@ -{"copyright":"Nugroho Herucahyono"} \ No newline at end of file +{ + "copyright": "Nugroho Herucahyono" +} diff --git a/users/xkerman.json b/users/xkerman.json index a4b9fe86..a453eedd 100644 --- a/users/xkerman.json +++ b/users/xkerman.json @@ -1 +1,4 @@ -{"copyright":"xKerman","url":"https:\/\/github.com\/xKerman"} \ No newline at end of file +{ + "copyright": "xKerman", + "url": "https://github.com/xKerman" +} diff --git a/users/xlab.json b/users/xlab.json index ecefce5d..c86b7308 100644 --- a/users/xlab.json +++ b/users/xlab.json @@ -1 +1,6 @@ -{"copyright":"Maxim Kupriianov","url":"https:\/\/xlab.is","email":"max@kc.vc","format":"txt"} \ No newline at end of file +{ + "copyright": "Maxim Kupriianov", + "url": "https://xlab.is", + "email": "max@kc.vc", + "format": "txt" +} diff --git a/users/xoebus.json b/users/xoebus.json index 96a5c3c2..f49f6e03 100644 --- a/users/xoebus.json +++ b/users/xoebus.json @@ -1 +1,6 @@ -{"copyright":"Chris Brown","url":"http:\/\/xoeb.us","email":"chris@xoeb.us","format":"txt"} \ No newline at end of file +{ + "copyright": "Chris Brown", + "url": "http://xoeb.us", + "email": "chris@xoeb.us", + "format": "txt" +} diff --git a/users/xsc.json b/users/xsc.json index 156b0be8..f9879510 100644 --- a/users/xsc.json +++ b/users/xsc.json @@ -1 +1,6 @@ -{"copyright":"Yannick Scherer","url":"https:\/\/xsc.github.io","email":"yannick.scherer@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Yannick Scherer", + "url": "https://xsc.github.io", + "email": "yannick.scherer@gmail.com", + "gravatar": true +} diff --git a/users/xtansia.json b/users/xtansia.json index 79e8c597..44bf32ac 100644 --- a/users/xtansia.json +++ b/users/xtansia.json @@ -1 +1,7 @@ -{"copyright":"Thomas Farr, http:\/\/xtansia.github.com","url":"http:\/\/xtansia.github.com","email":"farr.thomas@gmail.com","format":"html","theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Thomas Farr, http://xtansia.github.com", + "url": "http://xtansia.github.com", + "email": "farr.thomas@gmail.com", + "format": "html", + "theme": "xtansia" +} diff --git a/users/xuhong.json b/users/xuhong.json index 8abc7789..899df726 100644 --- a/users/xuhong.json +++ b/users/xuhong.json @@ -1 +1,5 @@ -{"copyright": "xuhong chen", "url": "http:\/\/xuhong.github.com", "email": "cxh710200711@gmail.com"} +{ + "copyright": "xuhong chen", + "url": "http://xuhong.github.com", + "email": "cxh710200711@gmail.com" +} diff --git a/users/xyc.json b/users/xyc.json index ed26f4c6..031eb0e2 100644 --- a/users/xyc.json +++ b/users/xyc.json @@ -1 +1,3 @@ -{"copyright":"Xiaoyi Chen"} \ No newline at end of file +{ + "copyright": "Xiaoyi Chen" +} diff --git a/users/y3sh.json b/users/y3sh.json index 159a10b0..a45b978c 100644 --- a/users/y3sh.json +++ b/users/y3sh.json @@ -1 +1,6 @@ -{"copyright":"Josh Hibschman","url":"http:\/\/y3sh.com","email":"joshhibschman@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Josh Hibschman", + "url": "http://y3sh.com", + "email": "joshhibschman@gmail.com", + "format": "txt" +} diff --git a/users/ya-ota.json b/users/ya-ota.json index a2583a21..119aa1aa 100644 --- a/users/ya-ota.json +++ b/users/ya-ota.json @@ -1 +1,6 @@ -{"copyright":"Yasuhiro Ota","url":"http:\/\/ccm-lulu.com","email":"ya-ota@ccm-lulu.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Yasuhiro Ota", + "url": "http://ccm-lulu.com", + "email": "ya-ota@ccm-lulu.com", + "format": "txt" +} diff --git a/users/yaler.json b/users/yaler.json index 2cd6c46f..b0b53b19 100644 --- a/users/yaler.json +++ b/users/yaler.json @@ -1 +1,3 @@ -{"copyright":"Yaler GmbH"} \ No newline at end of file +{ + "copyright": "Yaler GmbH" +} diff --git a/users/yantene.json b/users/yantene.json index 33455165..332e1038 100644 --- a/users/yantene.json +++ b/users/yantene.json @@ -1 +1,4 @@ -{"copyright":"yantene","url":"http:\/\/yantene.net"} \ No newline at end of file +{ + "copyright": "yantene", + "url": "http://yantene.net" +} diff --git a/users/yanyiwu.json b/users/yanyiwu.json index 6a55dcc5..8f7edb81 100644 --- a/users/yanyiwu.json +++ b/users/yanyiwu.json @@ -1 +1,6 @@ -{"copyright":"Yanyi Wu","url":"http:\/\/yanyiwu.com","email":"i@yanyiwu.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Yanyi Wu", + "url": "http://yanyiwu.com", + "email": "i@yanyiwu.com", + "format": "txt" +} diff --git a/users/yarmomackenbach.json b/users/yarmomackenbach.json index e89090e2..eb62ec98 100644 --- a/users/yarmomackenbach.json +++ b/users/yarmomackenbach.json @@ -1 +1,6 @@ -{"copyright":"Yarmo Mackenbach","url":"http:\/\/medea.one","email":"yarmo@medea.one","format":"html"} \ No newline at end of file +{ + "copyright": "Yarmo Mackenbach", + "url": "http://medea.one", + "email": "yarmo@medea.one", + "format": "html" +} diff --git a/users/yaro.json b/users/yaro.json index 5fd749fb..a7349242 100644 --- a/users/yaro.json +++ b/users/yaro.json @@ -1 +1,7 @@ -{"copyright":"Jaroslav Janukevic","url":"http:\/\/moca.li","email":"yaro@moca.li","format":"html","theme":"hipster-gray"} \ No newline at end of file +{ + "copyright": "Jaroslav Janukevic", + "url": "http://moca.li", + "email": "yaro@moca.li", + "format": "html", + "theme": "hipster-gray" +} diff --git a/users/yashar.json b/users/yashar.json index ae93ae7d..902e0081 100644 --- a/users/yashar.json +++ b/users/yashar.json @@ -1 +1,6 @@ -{"copyright":"Yashar Imanlou","url":"http:\/\/yash.im","email":"me@yash.im","format":"html"} \ No newline at end of file +{ + "copyright": "Yashar Imanlou", + "url": "http://yash.im", + "email": "me@yash.im", + "format": "html" +} diff --git a/users/yasyf.json b/users/yasyf.json index 88bb8fec..8b451797 100644 --- a/users/yasyf.json +++ b/users/yasyf.json @@ -1 +1,6 @@ -{"copyright":"Yasyf Mohamedali, http:\/\/www.yasyf.com","url":"http:\/\/www.yasyf.com","gravatar":true,"theme":"double-windsor"} +{ + "copyright": "Yasyf Mohamedali, http://www.yasyf.com", + "url": "http://www.yasyf.com", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/yeltsin.json b/users/yeltsin.json index 140dcc93..93c9b116 100644 --- a/users/yeltsin.json +++ b/users/yeltsin.json @@ -1 +1,3 @@ -{"copyright":"Yeltsin Lima"} \ No newline at end of file +{ + "copyright": "Yeltsin Lima" +} diff --git a/users/yhnavein.json b/users/yhnavein.json index 9908ef1f..9ab59181 100644 --- a/users/yhnavein.json +++ b/users/yhnavein.json @@ -1 +1,3 @@ -{"copyright":"Piotrek D\u0105browski"} \ No newline at end of file +{ + "copyright": "Piotrek Dąbrowski" +} diff --git a/users/yimengtianya.json b/users/yimengtianya.json index 9aa2b955..000e8267 100644 --- a/users/yimengtianya.json +++ b/users/yimengtianya.json @@ -1 +1,3 @@ -{"copyright":"yimengtianya"} \ No newline at end of file +{ + "copyright": "yimengtianya" +} diff --git a/users/yimengtianya1.json b/users/yimengtianya1.json index 7bea4e00..4b1a577f 100644 --- a/users/yimengtianya1.json +++ b/users/yimengtianya1.json @@ -1 +1,6 @@ -{"copyright":"yimengtianya","url":"http:\/\/remysharp.com","email":"support@wilddog.com","format":"txt"} \ No newline at end of file +{ + "copyright": "yimengtianya", + "url": "http://remysharp.com", + "email": "support@wilddog.com", + "format": "txt" +} diff --git a/users/yimengtianya444.json b/users/yimengtianya444.json index 7bea4e00..4b1a577f 100644 --- a/users/yimengtianya444.json +++ b/users/yimengtianya444.json @@ -1 +1,6 @@ -{"copyright":"yimengtianya","url":"http:\/\/remysharp.com","email":"support@wilddog.com","format":"txt"} \ No newline at end of file +{ + "copyright": "yimengtianya", + "url": "http://remysharp.com", + "email": "support@wilddog.com", + "format": "txt" +} diff --git a/users/yiramang.json b/users/yiramang.json index 3aafa12b..0eee6843 100644 --- a/users/yiramang.json +++ b/users/yiramang.json @@ -1 +1,3 @@ -{"copyright":"Yiramang"} \ No newline at end of file +{ + "copyright": "Yiramang" +} diff --git a/users/ylrxeidx.json b/users/ylrxeidx.json index d54902f6..6393f79f 100644 --- a/users/ylrxeidx.json +++ b/users/ylrxeidx.json @@ -1,5 +1,5 @@ { - "copyright": "Aldo Iljazi", - "email": "ylrxeidx@openmailbox.org", - "theme": "flesch" + "copyright": "Aldo Iljazi", + "email": "ylrxeidx@openmailbox.org", + "theme": "flesch" } diff --git a/users/yoelp.json b/users/yoelp.json index 2a959702..5caaadd6 100644 --- a/users/yoelp.json +++ b/users/yoelp.json @@ -1 +1,3 @@ -{"copyright":"Yoel Porgesz"} \ No newline at end of file +{ + "copyright": "Yoel Porgesz" +} diff --git a/users/yoggy.json b/users/yoggy.json index b8b5819f..7dc27eed 100644 --- a/users/yoggy.json +++ b/users/yoggy.json @@ -1 +1,4 @@ -{"copyright":"yoggy","url":"https:\/\/github.com\/yoggy"} \ No newline at end of file +{ + "copyright": "yoggy", + "url": "https://github.com/yoggy" +} diff --git a/users/yoloconfessions.json b/users/yoloconfessions.json index 643ba280..9d7fe99f 100644 --- a/users/yoloconfessions.json +++ b/users/yoloconfessions.json @@ -1 +1,3 @@ -{"copyright":"John Jensen and Jonah Kirangi"} \ No newline at end of file +{ + "copyright": "John Jensen and Jonah Kirangi" +} diff --git a/users/yoshuki.json b/users/yoshuki.json index b66dd7f6..300234fd 100644 --- a/users/yoshuki.json +++ b/users/yoshuki.json @@ -1 +1,4 @@ -{"copyright":"MIKAMI Yoshiyuki","url":"http:\/\/saikyoline.jp\/"} \ No newline at end of file +{ + "copyright": "MIKAMI Yoshiyuki", + "url": "http://saikyoline.jp/" +} diff --git a/users/yosida95.json b/users/yosida95.json index 01f14015..bd7f0e87 100644 --- a/users/yosida95.json +++ b/users/yosida95.json @@ -1 +1,7 @@ -{ "copyright": "Kohei YOSHIDA, https://yosida95.com/", "url": "https://yosida95.com", "email": "license@yosida95.com", "theme": "friendly", "gravatar": true } \ No newline at end of file +{ + "copyright": "Kohei YOSHIDA, https://yosida95.com/", + "url": "https://yosida95.com", + "email": "license@yosida95.com", + "theme": "friendly", + "gravatar": true +} diff --git a/users/yosugi.json b/users/yosugi.json index aeac0086..bf3f24d6 100644 --- a/users/yosugi.json +++ b/users/yosugi.json @@ -1 +1,3 @@ -{"copyright":"yosugi"} \ No newline at end of file +{ + "copyright": "yosugi" +} diff --git a/users/yotpo.json b/users/yotpo.json index c12e623c..9fa32148 100644 --- a/users/yotpo.json +++ b/users/yotpo.json @@ -1 +1,6 @@ -{"copyright":"Yotpo","url":"https:\/\/www.yotpo.com","email":"vlad@yotpo.com","format":"md"} \ No newline at end of file +{ + "copyright": "Yotpo", + "url": "https://www.yotpo.com", + "email": "vlad@yotpo.com", + "format": "md" +} diff --git a/users/youhide.json b/users/youhide.json index 09c9b872..d037cdb6 100644 --- a/users/youhide.json +++ b/users/youhide.json @@ -1 +1,3 @@ -{"copyright":"YouHide"} \ No newline at end of file +{ + "copyright": "YouHide" +} diff --git a/users/yousuf.json b/users/yousuf.json index 1c705387..8666997e 100644 --- a/users/yousuf.json +++ b/users/yousuf.json @@ -1 +1,6 @@ -{"copyright":"Yousuf Fauzan","url":"http:\/\/fauzism.com","email":"yousuffauzan@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "format": "txt" +} diff --git a/users/yousuf2.json b/users/yousuf2.json index 44863f76..3701059b 100644 --- a/users/yousuf2.json +++ b/users/yousuf2.json @@ -1 +1,7 @@ -{"copyright":"Yousuf Fauzan","url":"http:\/\/fauzism.com","email":"yousuffauzan@gmail.com","format":"txt","theme":"default"} \ No newline at end of file +{ + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "format": "txt", + "theme": "default" +} diff --git a/users/yousuf3.json b/users/yousuf3.json index 61beec95..74210182 100644 --- a/users/yousuf3.json +++ b/users/yousuf3.json @@ -1 +1,6 @@ -{"copyright":"Yousuf Fauzan","url":"http:\/\/fauzism.com","email":"yousuffauzan@gmail.com","theme":"default"} \ No newline at end of file +{ + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "theme": "default" +} diff --git a/users/yrosen.json b/users/yrosen.json index 460dcdea..b06d4dfa 100644 --- a/users/yrosen.json +++ b/users/yrosen.json @@ -1 +1,4 @@ -{"copyright":"Yudi Rosen, http:\/\/yudirosen.com","url":"http:\/\/yudirosen.com"} \ No newline at end of file +{ + "copyright": "Yudi Rosen, http://yudirosen.com", + "url": "http://yudirosen.com" +} diff --git a/users/ysarbabi.json b/users/ysarbabi.json index 00708de1..e1c228e5 100644 --- a/users/ysarbabi.json +++ b/users/ysarbabi.json @@ -1 +1,7 @@ -{"copyright":"Yahya SayadArbabi","url":"http://ysarbabi.ir","email":"yahya.arbabi@gmail.com","format":"html","gravatar": true} +{ + "copyright": "Yahya SayadArbabi", + "url": "http://ysarbabi.ir", + "email": "yahya.arbabi@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/yshrsmz.json b/users/yshrsmz.json index 30b54524..6fd79c03 100644 --- a/users/yshrsmz.json +++ b/users/yshrsmz.json @@ -1 +1,5 @@ -{"copyright":"Yasuhiro Shimizu","email":"yshrsmz.lab@gmail.com","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Yasuhiro Shimizu", + "email": "yshrsmz.lab@gmail.com", + "theme": "eula-modern" +} diff --git a/users/ysong.json b/users/ysong.json index f0fed139..942ec3b2 100644 --- a/users/ysong.json +++ b/users/ysong.json @@ -1 +1,6 @@ -{"copyright":"Song Yang","url":"http:\/\/github.com\/ysong","email":"ysong@139.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Song Yang", + "url": "http://github.com/ysong", + "email": "ysong@139.com", + "format": "txt" +} diff --git a/users/ytaler.json b/users/ytaler.json index 1156e0b0..8f4fd3f4 100644 --- a/users/ytaler.json +++ b/users/ytaler.json @@ -1 +1,7 @@ -{"copyright":"Yamil Taler","url":"http:\/\/ytaler.github.io\/","email":"yamil.taler@gmail.com","gravatar":true,"theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Yamil Taler", + "url": "http://ytaler.github.io/", + "email": "yamil.taler@gmail.com", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/yu-cheng-chuang.json b/users/yu-cheng-chuang.json index 430b4de3..286a0ba3 100644 --- a/users/yu-cheng-chuang.json +++ b/users/yu-cheng-chuang.json @@ -1 +1,5 @@ -{"copyright":"Yu-Cheng Chuang","url":"http:\/\/yorkxin.org","theme":"hipster-gray"} \ No newline at end of file +{ + "copyright": "Yu-Cheng Chuang", + "url": "http://yorkxin.org", + "theme": "hipster-gray" +} diff --git a/users/yuchi.json b/users/yuchi.json index 85195ceb..45f4d3e7 100644 --- a/users/yuchi.json +++ b/users/yuchi.json @@ -1 +1,3 @@ -{"copyright":"Pier Paolo Ramon"} \ No newline at end of file +{ + "copyright": "Pier Paolo Ramon" +} diff --git a/users/yudppp.json b/users/yudppp.json index 8bcd6efa..461f9717 100644 --- a/users/yudppp.json +++ b/users/yudppp.json @@ -1 +1,3 @@ -{"copyright":"yudppp"} \ No newline at end of file +{ + "copyright": "yudppp" +} diff --git a/users/yuhki50.json b/users/yuhki50.json index eefa38ec..72a77e1c 100644 --- a/users/yuhki50.json +++ b/users/yuhki50.json @@ -1 +1,4 @@ -{"copyright":"Yuuki Taguchi","url":"https:\/\/github.com\/yuhki50"} \ No newline at end of file +{ + "copyright": "Yuuki Taguchi", + "url": "https://github.com/yuhki50" +} diff --git a/users/yungsang.json b/users/yungsang.json index b69d0a25..6d6d376e 100644 --- a/users/yungsang.json +++ b/users/yungsang.json @@ -1 +1,7 @@ -{"copyright":"YungSang","url":"http:\/\/yungsang.com","email":"info@yungsang.com","theme":"flesch","gravatar":"ture"} \ No newline at end of file +{ + "copyright": "YungSang", + "url": "http://yungsang.com", + "email": "info@yungsang.com", + "theme": "flesch", + "gravatar": "ture" +} diff --git a/users/yuniorusop.json b/users/yuniorusop.json index 712b1bad..8ce2c4b9 100644 --- a/users/yuniorusop.json +++ b/users/yuniorusop.json @@ -1,7 +1,7 @@ { - "copyright": "Yunior Rahmawan Usop", - "url": "http://www.yuniorusop.com", - "email": "yonkyunior@gmail.com", - "theme": "black-beauty", - "gravatar": true + "copyright": "Yunior Rahmawan Usop", + "url": "http://www.yuniorusop.com", + "email": "yonkyunior@gmail.com", + "theme": "black-beauty", + "gravatar": true } diff --git a/users/yuriel.json b/users/yuriel.json index d068336b..390adfa1 100644 --- a/users/yuriel.json +++ b/users/yuriel.json @@ -1,5 +1,5 @@ { "copyright": "Yuriel, http://www.zyy1217.com", "url": "http://www.zyy1217.com", - "theme":"double-windsor" + "theme": "double-windsor" } diff --git a/users/yuriy.json b/users/yuriy.json index 7b80d2df..a7c1180a 100644 --- a/users/yuriy.json +++ b/users/yuriy.json @@ -1 +1,3 @@ -{"copyright":"Yuriy Arabskyy"} \ No newline at end of file +{ + "copyright": "Yuriy Arabskyy" +} diff --git a/users/yurrriq.json b/users/yurrriq.json index f7c5443f..858ed52f 100644 --- a/users/yurrriq.json +++ b/users/yurrriq.json @@ -1 +1,6 @@ -{"copyright":"Eric Bailey","url":"http:\/\/ericb.me","email":"eric@ericb.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Eric Bailey", + "url": "http://ericb.me", + "email": "eric@ericb.me", + "format": "txt" +} diff --git a/users/yusuke.json b/users/yusuke.json index c748e5c8..c8a87394 100644 --- a/users/yusuke.json +++ b/users/yusuke.json @@ -1 +1,4 @@ -{"copyright":"Yusuke Matsubara","url":"http:\/\/whym.org"} \ No newline at end of file +{ + "copyright": "Yusuke Matsubara", + "url": "http://whym.org" +} diff --git a/users/yzlow.json b/users/yzlow.json index ded5ba8d..69586721 100644 --- a/users/yzlow.json +++ b/users/yzlow.json @@ -1 +1,3 @@ -{"copyright":"Low Yong Zhen"} \ No newline at end of file +{ + "copyright": "Low Yong Zhen" +} diff --git a/users/z.json b/users/z.json index 4a346a59..035fb372 100644 --- a/users/z.json +++ b/users/z.json @@ -1 +1,5 @@ -{"copyright":"\u6587\u5f3a \u5b8b","email":"z.tar.gz@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "文强 宋", + "email": "z.tar.gz@gmail.com", + "theme": "double-windsor" +} diff --git a/users/zachary.json b/users/zachary.json index 66beb3f1..2e465b35 100644 --- a/users/zachary.json +++ b/users/zachary.json @@ -1 +1,5 @@ -{"copyright":"Zachary Espiritu, ","url":"http:\/\/zacharyespiritu.com","email":"me@zacharyespiritu.com"} \ No newline at end of file +{ + "copyright": "Zachary Espiritu, ", + "url": "http://zacharyespiritu.com", + "email": "me@zacharyespiritu.com" +} diff --git a/users/zander.json b/users/zander.json index ea9e705c..c3bf7842 100644 --- a/users/zander.json +++ b/users/zander.json @@ -1 +1,4 @@ -{"copyright":"Zander Martineau","url":"http:\/\/martineau.tv"} \ No newline at end of file +{ + "copyright": "Zander Martineau", + "url": "http://martineau.tv" +} diff --git a/users/zaploink.json b/users/zaploink.json index 3a51a911..1010d718 100644 --- a/users/zaploink.json +++ b/users/zaploink.json @@ -1 +1,6 @@ -{"copyright":"Kaspar von Gunten","url":"http:\/\/code.zaploink.org","email":"zaploink@code.zaploink.org","theme":"willpower"} +{ + "copyright": "Kaspar von Gunten", + "url": "http://code.zaploink.org", + "email": "zaploink@code.zaploink.org", + "theme": "willpower" +} diff --git a/users/zaurus.json b/users/zaurus.json index a4b7ff59..962cf263 100644 --- a/users/zaurus.json +++ b/users/zaurus.json @@ -1 +1,3 @@ -{"copyright":"Edge.Blogger"} \ No newline at end of file +{ + "copyright": "Edge.Blogger" +} diff --git a/users/zaz600.json b/users/zaz600.json index 67bff025..4b6ee814 100644 --- a/users/zaz600.json +++ b/users/zaz600.json @@ -1 +1,5 @@ -{"copyright":"Dmitriy Denisov","email":"zaz600@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Dmitriy Denisov", + "email": "zaz600@gmail.com", + "gravatar": true +} diff --git a/users/zdwolfe.json b/users/zdwolfe.json index e3074491..5eb039bb 100644 --- a/users/zdwolfe.json +++ b/users/zdwolfe.json @@ -1 +1,7 @@ -{"copyright":"Zachary Wolfe","url":"http:\/\/zdwolfe.net","email":"wolfe.zach@gmail.com","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Zachary Wolfe", + "url": "http://zdwolfe.net", + "email": "wolfe.zach@gmail.com", + "format": "txt", + "gravatar": true +} diff --git a/users/zellio.json b/users/zellio.json index ee63b90f..3a58deed 100644 --- a/users/zellio.json +++ b/users/zellio.json @@ -1 +1,5 @@ -{"copyright":"Zachary Elliott","email":"zach@nyu.edu","format":"txt"} \ No newline at end of file +{ + "copyright": "Zachary Elliott", + "email": "zach@nyu.edu", + "format": "txt" +} diff --git a/users/zen.json b/users/zen.json index 0c61d83b..d13030e7 100644 --- a/users/zen.json +++ b/users/zen.json @@ -1 +1,6 @@ -{"copyright":"Zen Savona","url":"http:\/\/zensavona.com","email":"z@zensavona.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Zen Savona", + "url": "http://zensavona.com", + "email": "z@zensavona.com", + "format": "txt" +} diff --git a/users/zenjoy.json b/users/zenjoy.json index 49adfc82..8af469ad 100644 --- a/users/zenjoy.json +++ b/users/zenjoy.json @@ -1 +1,6 @@ -{"copyright":"Zenjoy","url":"http:\/\/www.zenjoy.be","email":"hello@zenjoy.be","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Zenjoy", + "url": "http://www.zenjoy.be", + "email": "hello@zenjoy.be", + "theme": "flesch" +} diff --git a/users/zenorocha.json b/users/zenorocha.json index 987c23a6..7583620a 100644 --- a/users/zenorocha.json +++ b/users/zenorocha.json @@ -1 +1,5 @@ -{"copyright":"Zeno Rocha","url":"http:\/\/zenorocha.com","email":"hi@zenorocha.com"} +{ + "copyright": "Zeno Rocha", + "url": "http://zenorocha.com", + "email": "hi@zenorocha.com" +} diff --git a/users/zenry.json b/users/zenry.json index 00cdd772..e87c3307 100644 --- a/users/zenry.json +++ b/users/zenry.json @@ -1 +1,7 @@ -{"copyright":"Henry Louwhoff","url":"http:\/\/zenry.github.io","email":"henry@postb.us","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Henry Louwhoff", + "url": "http://zenry.github.io", + "email": "henry@postb.us", + "format": "html", + "gravatar": true +} diff --git a/users/zhengyi.json b/users/zhengyi.json index 92f22016..3e3af061 100644 --- a/users/zhengyi.json +++ b/users/zhengyi.json @@ -1,6 +1,6 @@ { - "copyright": "Zhengyi Yang, http://zhengyi.one", - "url": "http://zhengyi.one", - "email": "zhengyi.one@outlook.com", - "gravatar": true -} \ No newline at end of file + "copyright": "Zhengyi Yang, http://zhengyi.one", + "url": "http://zhengyi.one", + "email": "zhengyi.one@outlook.com", + "gravatar": true +} diff --git a/users/zhiyuan.json b/users/zhiyuan.json index b0fdb487..7722aa6e 100644 --- a/users/zhiyuan.json +++ b/users/zhiyuan.json @@ -1 +1,3 @@ -{"copyright":"Zhiyuan Shi"} \ No newline at end of file +{ + "copyright": "Zhiyuan Shi" +} diff --git a/users/zhiyuanshi.json b/users/zhiyuanshi.json index b0fdb487..7722aa6e 100644 --- a/users/zhiyuanshi.json +++ b/users/zhiyuanshi.json @@ -1 +1,3 @@ -{"copyright":"Zhiyuan Shi"} \ No newline at end of file +{ + "copyright": "Zhiyuan Shi" +} diff --git a/users/ziloi.json b/users/ziloi.json index b1bd45d7..f815d446 100644 --- a/users/ziloi.json +++ b/users/ziloi.json @@ -1 +1,6 @@ -{"copyright":"Ziloi","url":"http:\/\/ziloi.com","email":"info@ziloi.com","theme":"flesch"} +{ + "copyright": "Ziloi", + "url": "http://ziloi.com", + "email": "info@ziloi.com", + "theme": "flesch" +} diff --git a/users/zimozito.json b/users/zimozito.json index b9309dec..5e44d81f 100644 --- a/users/zimozito.json +++ b/users/zimozito.json @@ -1 +1,4 @@ -{"copyright":"ZimoZito","url":"http:\/\/zimozito.com"} \ No newline at end of file +{ + "copyright": "ZimoZito", + "url": "http://zimozito.com" +} diff --git a/users/zimp.json b/users/zimp.json index b7c08bf6..76287855 100644 --- a/users/zimp.json +++ b/users/zimp.json @@ -1 +1,5 @@ -{"copyright":"Zimp Recompensas","url":"http:\/\/zimp.me","email":"suporte@zimp.me"} \ No newline at end of file +{ + "copyright": "Zimp Recompensas", + "url": "http://zimp.me", + "email": "suporte@zimp.me" +} diff --git a/users/zinc.json b/users/zinc.json index 740e3e52..68ff8819 100644 --- a/users/zinc.json +++ b/users/zinc.json @@ -1 +1,5 @@ -{"copyright":"Mihir Singh","url":"http:\/\/citruspi.github.com\/Zinc","email":"me@mihirsingh.com"} \ No newline at end of file +{ + "copyright": "Mihir Singh", + "url": "http://citruspi.github.com/Zinc", + "email": "me@mihirsingh.com" +} diff --git a/users/znck.json b/users/znck.json index fda14efc..7b0d1f8f 100644 --- a/users/znck.json +++ b/users/znck.json @@ -1 +1,3 @@ -{"copyright":"Rahul Kadyan"} \ No newline at end of file +{ + "copyright": "Rahul Kadyan" +} diff --git a/users/zonble.json b/users/zonble.json index 834f8922..4d9dade7 100644 --- a/users/zonble.json +++ b/users/zonble.json @@ -1 +1,3 @@ -{"copyright":"Weizhong Yang"} \ No newline at end of file +{ + "copyright": "Weizhong Yang" +} diff --git a/users/zzeris.json b/users/zzeris.json index fe715ad2..88d28e7e 100644 --- a/users/zzeris.json +++ b/users/zzeris.json @@ -1 +1,4 @@ -{"copyright":"Jos\u00e9 Luiz","email":"zzeris@gmail.com"} \ No newline at end of file +{ + "copyright": "José Luiz", + "email": "zzeris@gmail.com" +} diff --git a/users/zzimbler.json b/users/zzimbler.json index 86c5638f..fc25330c 100644 --- a/users/zzimbler.json +++ b/users/zzimbler.json @@ -1 +1,3 @@ -{"copyright":"Zachary Zimbler"} \ No newline at end of file +{ + "copyright": "Zachary Zimbler" +} diff --git a/users/zzzzbov.json b/users/zzzzbov.json index 4b01125e..82ac277d 100644 --- a/users/zzzzbov.json +++ b/users/zzzzbov.json @@ -1,5 +1,5 @@ { - "copyright": "zzzzBov", - "email": "zzzzbov@gmail.com", - "url": "http://zzzzbov.com" -} \ No newline at end of file + "copyright": "zzzzBov", + "email": "zzzzbov@gmail.com", + "url": "http://zzzzbov.com" +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 00000000..df84dee1 Binary files /dev/null and b/yarn.lock differ