mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-27 15:07:42 +00:00
Automatically prefix and polyfill CSS
This commit is contained in:
parent
53aa6eb6d4
commit
50427e2ded
41 changed files with 105 additions and 326 deletions
|
|
@ -1,7 +1,5 @@
|
||||||
# Contributing
|
# 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:
|
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)
|
||||||
|
|
|
||||||
2
Procfile
2
Procfile
|
|
@ -1 +1 @@
|
||||||
web: yarn start
|
web: yarn serve
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,7 @@ Note that if no version is supplied, the latest copy of the LICENSE.html will be
|
||||||
|
|
||||||
### Themes
|
### 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:
|
To use a theme, add the `theme` property to your `user.json` file, for example:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,8 @@
|
||||||
"url": "git@github.com:remy/mit-license.git"
|
"url": "git@github.com:remy/mit-license.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "tsc server.ts && node server.js",
|
"start": "ts-node-dev --respawn --transpileOnly --no-notify server.ts",
|
||||||
"dev": "ts-node-dev --respawn --transpileOnly --no-notify server.ts",
|
"serve": "tsc server.ts && node server.js",
|
||||||
"test": "node test.js",
|
"test": "node test.js",
|
||||||
"lint": "eslint server.ts util.ts test.js --color --fix"
|
"lint": "eslint server.ts util.ts test.js --color --fix"
|
||||||
},
|
},
|
||||||
|
|
@ -26,6 +26,8 @@
|
||||||
"humanize-list": "^1.0.1",
|
"humanize-list": "^1.0.1",
|
||||||
"md5": "^2.2.1",
|
"md5": "^2.2.1",
|
||||||
"node-html-parser": "^1.1.15",
|
"node-html-parser": "^1.1.15",
|
||||||
|
"postcss-middleware": "^1.1.4",
|
||||||
|
"postcss-preset-env": "^6.6.0",
|
||||||
"tmp": "^0.1.0",
|
"tmp": "^0.1.0",
|
||||||
"typescript": "^3.4.5"
|
"typescript": "^3.4.5"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
41
server.ts
41
server.ts
|
|
@ -1,14 +1,15 @@
|
||||||
import express = require('express');
|
import express = require('express')
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
import * as fs from 'fs'
|
import * as fs from 'fs'
|
||||||
const PORT = process.env.PORT || 80
|
const PORT = process.env.PORT || 80
|
||||||
import compression = require('compression');
|
import compression = require('compression')
|
||||||
import md5 = require('md5');
|
import md5 = require('md5');
|
||||||
import humanizeList from 'humanize-list'
|
import humanizeList from 'humanize-list'
|
||||||
import minify = require('express-minify')
|
import minify = require('express-minify')
|
||||||
const ejs = require('ejs')
|
import ejs = require('ejs')
|
||||||
import {yearNow, stripTags, trimArray} from './util'
|
import { yearNow, stripTags, trimArray } from './util'
|
||||||
const HTML = require('node-html-parser')
|
import HTML = require('node-html-parser')
|
||||||
|
import postcssMiddleware = require('postcss-middleware')
|
||||||
|
|
||||||
// Prepare application
|
// Prepare application
|
||||||
const app = express()
|
const app = express()
|
||||||
|
|
@ -19,8 +20,12 @@ app.use(minify({
|
||||||
app.set('view engine', 'ejs')
|
app.set('view engine', 'ejs')
|
||||||
|
|
||||||
// Setup static files
|
// Setup static files
|
||||||
app.use('/themes', express.static('themes'))
|
|
||||||
app.use('/users', express.static('users'))
|
app.use('/users', express.static('users'))
|
||||||
|
app.use('/themes', postcssMiddleware({
|
||||||
|
plugins: [require('postcss-preset-env')({ browsers: '>= 0%', stage: 0 })],
|
||||||
|
src: req => path.join(__dirname, 'themes', req.path)
|
||||||
|
}))
|
||||||
|
app.use('/themes', express.static('themes'))
|
||||||
app.use('/favicon.ico', express.static(__dirname + '/favicon.ico'))
|
app.use('/favicon.ico', express.static(__dirname + '/favicon.ico'))
|
||||||
|
|
||||||
// Allow CORS
|
// Allow CORS
|
||||||
|
|
@ -100,18 +105,20 @@ app.get('*', (req, res) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (format === 'html') res.render(path.join(__dirname, 'licenses', license), args)
|
if (format === 'html') res.render(path.join(__dirname, 'licenses', license), args)
|
||||||
else {ejs.renderFile(path.join(__dirname, 'licenses', `${license}.ejs`), args, (_err: any, str: string) =>
|
else {
|
||||||
res
|
ejs.renderFile(path.join(__dirname, 'licenses', `${license}.ejs`), args, (_err: any, str: string) =>
|
||||||
.set('Content-Type', 'text/plain; charset=UTF-8')
|
res
|
||||||
.send(
|
.set('Content-Type', 'text/plain; charset=UTF-8')
|
||||||
trimArray(
|
.send(
|
||||||
stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString())
|
trimArray(
|
||||||
.split('\n')
|
stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString())
|
||||||
.map((val: string) => val.trim())
|
.split('\n')
|
||||||
|
.map((val: string) => val.trim())
|
||||||
|
)
|
||||||
|
.join('\n')
|
||||||
)
|
)
|
||||||
.join('\n')
|
)
|
||||||
)
|
}
|
||||||
)}
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -114,9 +114,5 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
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);
|
filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -114,9 +114,5 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
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%);
|
filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -114,9 +114,5 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
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);
|
filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -114,9 +114,5 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
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);
|
filter: contrast(700%) grayscale(100%) saturate(100);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -114,9 +114,5 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
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);
|
filter: contrast(700%) grayscale(100%) saturate(100);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -49,9 +49,6 @@ footer {
|
||||||
footer p {
|
footer p {
|
||||||
zoom: 1;
|
zoom: 1;
|
||||||
background-color: #FFFFFF;
|
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;
|
box-shadow: 1px 1px 3px #989898;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
max-width: 318px;
|
max-width: 318px;
|
||||||
|
|
@ -59,21 +56,11 @@ footer p {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: -106px;
|
right: -106px;
|
||||||
top: 0;
|
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);
|
transform: rotate(34.5deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
footer p:before {
|
footer p:before {
|
||||||
background-color: #999999;
|
background-color: #999999;
|
||||||
-moz-box-shadow: 1px 1px 2px #000000;
|
|
||||||
-webkit-box-shadow: 1px 1px 2px #000000;
|
|
||||||
box-shadow: 1px 1px 2px #000000;
|
box-shadow: 1px 1px 2px #000000;
|
||||||
content: "";
|
content: "";
|
||||||
display: block;
|
display: block;
|
||||||
|
|
@ -83,14 +70,6 @@ footer p:before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: -13px;
|
top: -13px;
|
||||||
width: 7px;
|
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);
|
transform: rotate(34.5deg);
|
||||||
zoom: 1;
|
zoom: 1;
|
||||||
}
|
}
|
||||||
|
|
@ -104,14 +83,6 @@ footer p:after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 7px;
|
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);
|
transform: rotate(34.5deg);
|
||||||
zoom: 1;
|
zoom: 1;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,6 @@ article {
|
||||||
border-right: 3px solid #FF6666;
|
border-right: 3px solid #FF6666;
|
||||||
padding: 45px 28px 28px;
|
padding: 45px 28px 28px;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-border-radius: 0px 0 10px 10px;
|
|
||||||
-moz-border-radius: 0px 0 10px 10px;
|
|
||||||
border-radius: 0px 0 10px 10px;
|
border-radius: 0px 0 10px 10px;
|
||||||
margin-top: 28px;
|
margin-top: 28px;
|
||||||
border-left: 1px solid #F7F7F7;
|
border-left: 1px solid #F7F7F7;
|
||||||
|
|
@ -37,8 +35,6 @@ h1 {
|
||||||
top: -22px;
|
top: -22px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
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;
|
box-shadow: 2px 7px 0px -3px #CCCCCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -61,8 +57,6 @@ h1:before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 52px;
|
top: 52px;
|
||||||
width: 11px;
|
width: 11px;
|
||||||
-webkit-border-radius: 0 0 0 32px;
|
|
||||||
-moz-border-radius: 0 0 0 32px;
|
|
||||||
border-radius: 0 0 0 32px;
|
border-radius: 0 0 0 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,6 @@ article {
|
||||||
border-right: 3px solid #FF6666;
|
border-right: 3px solid #FF6666;
|
||||||
padding: 74px 28px 28px;
|
padding: 74px 28px 28px;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-border-radius: 0px 0 10px 10px;
|
|
||||||
-moz-border-radius: 0px 0 10px 10px;
|
|
||||||
border-radius: 0px 0 10px 10px;
|
border-radius: 0px 0 10px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -36,8 +34,6 @@ h1 {
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
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;
|
box-shadow: 2px 7px 0px -3px #CCCCCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -60,8 +56,6 @@ h1:before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 52px;
|
top: 52px;
|
||||||
width: 11px;
|
width: 11px;
|
||||||
-webkit-border-radius: 0 0 0 32px;
|
|
||||||
-moz-border-radius: 0 0 0 32px;
|
|
||||||
border-radius: 0 0 0 32px;
|
border-radius: 0 0 0 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,9 +30,7 @@ a:link, a:visited, a:hover {
|
||||||
position: relative;
|
position: relative;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #de5833;
|
color: #de5833;
|
||||||
-webkit-transition: color 0.3s ease-in-out;
|
|
||||||
transition: color 0.3s ease-in-out;
|
transition: color 0.3s ease-in-out;
|
||||||
-webkit-transform: scaleX(0);
|
|
||||||
transform: scaleX(0);
|
transform: scaleX(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -49,15 +47,12 @@ a:before {
|
||||||
left: 0;
|
left: 0;
|
||||||
background-color: #de5833;
|
background-color: #de5833;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
-webkit-transform: scaleX(0);
|
|
||||||
transform: scaleX(0);
|
transform: scaleX(0);
|
||||||
-webkit-transition: all 0.3s ease-in-out;
|
|
||||||
transition: all 0.3s ease-in-out;
|
transition: all 0.3s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover:before {
|
a:hover:before {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
-webkit-transform: scaleX(1);
|
|
||||||
transform: scaleX(1);
|
transform: scaleX(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
html {
|
html {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
-ms-text-size-adjust: 100%;
|
text-size-adjust: 100%;
|
||||||
-webkit-text-size-adjust: 100%
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
@ -88,7 +87,6 @@ figure {
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
-moz-box-sizing: content-box;
|
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
height: 0
|
height: 0
|
||||||
}
|
}
|
||||||
|
|
@ -117,7 +115,7 @@ button, select {
|
||||||
}
|
}
|
||||||
|
|
||||||
button, html input[type="button"], input[type="reset"], input[type="submit"] {
|
button, html input[type="button"], input[type="reset"], input[type="submit"] {
|
||||||
-webkit-appearance: button;
|
appearance: button;
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -144,14 +142,12 @@ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-o
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="search"] {
|
input[type="search"] {
|
||||||
-webkit-appearance: textfield;
|
appearance: textfield;
|
||||||
-moz-box-sizing: content-box;
|
|
||||||
-webkit-box-sizing: content-box;
|
|
||||||
box-sizing: content-box
|
box-sizing: content-box
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
|
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
|
||||||
-webkit-appearance: none
|
appearance: none
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
|
|
@ -184,10 +180,10 @@ td, th {
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
*, *:before, *:after {
|
*, *:before, *:after {
|
||||||
background: transparent !important;
|
background: transparent;
|
||||||
color: #000 !important;
|
color: #000;
|
||||||
box-shadow: none !important;
|
box-shadow: none;
|
||||||
text-shadow: none !important
|
text-shadow: none
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:visited {
|
a, a:visited {
|
||||||
|
|
@ -220,7 +216,7 @@ td, th {
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 100% !important
|
max-width: 100%
|
||||||
}
|
}
|
||||||
|
|
||||||
p, h2, h3 {
|
p, h2, h3 {
|
||||||
|
|
@ -233,7 +229,7 @@ td, th {
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
background: #fff !important
|
background: #fff
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
|
|
@ -241,7 +237,7 @@ td, th {
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn>.caret, .dropup>.btn>.caret {
|
.btn>.caret, .dropup>.btn>.caret {
|
||||||
border-top-color: #000 !important
|
border-top-color: #000
|
||||||
}
|
}
|
||||||
|
|
||||||
.label {
|
.label {
|
||||||
|
|
@ -249,15 +245,15 @@ td, th {
|
||||||
}
|
}
|
||||||
|
|
||||||
.table {
|
.table {
|
||||||
border-collapse: collapse !important
|
border-collapse: collapse
|
||||||
}
|
}
|
||||||
|
|
||||||
.table td, .table th {
|
.table td, .table th {
|
||||||
background-color: #fff !important
|
background-color: #fff
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-bordered th, .table-bordered td {
|
.table-bordered th, .table-bordered td {
|
||||||
border: 1px solid #ddd !important
|
border: 1px solid #ddd
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1328,14 +1324,10 @@ td, th {
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
box-sizing: border-box
|
box-sizing: border-box
|
||||||
}
|
}
|
||||||
|
|
||||||
*:before, *:after {
|
*:before, *:after {
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
box-sizing: border-box
|
box-sizing: border-box
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1398,8 +1390,6 @@ img {
|
||||||
background-color: #222;
|
background-color: #222;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
-webkit-transition: all .2s ease-in-out;
|
|
||||||
-o-transition: all .2s ease-in-out;
|
|
||||||
transition: all .2s ease-in-out;
|
transition: all .2s ease-in-out;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
@ -2883,8 +2873,6 @@ label {
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="search"] {
|
input[type="search"] {
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
box-sizing: border-box
|
box-sizing: border-box
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2933,17 +2921,13 @@ output {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
border: 1px solid #444;
|
border: 1px solid #444;
|
||||||
border-radius: 0;
|
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);
|
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
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control:focus {
|
.form-control:focus {
|
||||||
border-color: #0f0;
|
border-color: #0f0;
|
||||||
outline: 0;
|
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)
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2974,7 +2958,7 @@ textarea.form-control {
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="search"] {
|
input[type="search"] {
|
||||||
-webkit-appearance: none
|
appearance: none
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||||
|
|
@ -3182,13 +3166,11 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr
|
||||||
|
|
||||||
.has-success .form-control {
|
.has-success .form-control {
|
||||||
border-color: #0d0;
|
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)
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-success .form-control:focus {
|
.has-success .form-control:focus {
|
||||||
border-color: #0a0;
|
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
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3208,13 +3190,11 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr
|
||||||
|
|
||||||
.has-warning .form-control {
|
.has-warning .form-control {
|
||||||
border-color: #f4ff00;
|
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)
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-warning .form-control:focus {
|
.has-warning .form-control:focus {
|
||||||
border-color: #c3cc00;
|
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
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3234,13 +3214,11 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr
|
||||||
|
|
||||||
.has-error .form-control {
|
.has-error .form-control {
|
||||||
border-color: #d00;
|
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)
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-error .form-control:focus {
|
.has-error .form-control:focus {
|
||||||
border-color: #a00;
|
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
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3379,9 +3357,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1.428571429;
|
line-height: 1.428571429;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none
|
user-select: none
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3399,7 +3374,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr
|
||||||
.btn:active, .btn.active {
|
.btn:active, .btn.active {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-image: none;
|
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)
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3408,7 +3382,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
opacity: .65;
|
opacity: .65;
|
||||||
filter: alpha(opacity=65);
|
filter: alpha(opacity=65);
|
||||||
-webkit-box-shadow: none;
|
|
||||||
box-shadow: none
|
box-shadow: none
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3576,7 +3549,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr
|
||||||
|
|
||||||
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
|
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
-webkit-box-shadow: none;
|
|
||||||
box-shadow: none
|
box-shadow: none
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3631,8 +3603,6 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
|
||||||
|
|
||||||
.fade {
|
.fade {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
-webkit-transition: opacity .15s linear;
|
|
||||||
-o-transition: opacity .15s linear;
|
|
||||||
transition: opacity .15s linear
|
transition: opacity .15s linear
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3660,11 +3630,8 @@ tbody.collapse.in {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 0;
|
height: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
-webkit-transition-property: height, visibility;
|
|
||||||
transition-property: height, visibility;
|
transition-property: height, visibility;
|
||||||
-webkit-transition-duration: .35s;
|
|
||||||
transition-duration: .35s;
|
transition-duration: .35s;
|
||||||
-webkit-transition-timing-function: ease;
|
|
||||||
transition-timing-function: ease
|
transition-timing-function: ease
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3704,7 +3671,6 @@ tbody.collapse.in {
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||||
border-radius: 0;
|
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);
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||||
background-clip: padding-box
|
background-clip: padding-box
|
||||||
}
|
}
|
||||||
|
|
@ -3903,12 +3869,10 @@ tbody.collapse.in {
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group.open .dropdown-toggle {
|
.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)
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group.open .dropdown-toggle.btn-link {
|
.btn-group.open .dropdown-toggle.btn-link {
|
||||||
-webkit-box-shadow: none;
|
|
||||||
box-shadow: none
|
box-shadow: none
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -4398,10 +4362,10 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-collapse.collapse {
|
.navbar-collapse.collapse {
|
||||||
display: block !important;
|
display: block;
|
||||||
height: auto !important;
|
height: auto;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
overflow: visible !important
|
overflow: visible
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-collapse.in {
|
.navbar-collapse.in {
|
||||||
|
|
@ -4583,7 +4547,6 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
border-top: 1px solid transparent;
|
border-top: 1px solid transparent;
|
||||||
border-bottom: 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);
|
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-top: 8px;
|
||||||
margin-bottom: 8px
|
margin-bottom: 8px
|
||||||
|
|
@ -4663,7 +4626,6 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
-webkit-box-shadow: none;
|
|
||||||
box-shadow: none
|
box-shadow: none
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -4712,11 +4674,11 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo
|
||||||
|
|
||||||
@media (min-width:768px) {
|
@media (min-width:768px) {
|
||||||
.navbar-left {
|
.navbar-left {
|
||||||
float: left !important
|
float: left
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-right {
|
.navbar-right {
|
||||||
float: right !important;
|
float: right;
|
||||||
margin-right: -15px
|
margin-right: -15px
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5256,8 +5218,6 @@ a.badge:hover, a.badge:focus {
|
||||||
background-color: #222;
|
background-color: #222;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
-webkit-transition: border .2s ease-in-out;
|
|
||||||
-o-transition: border .2s ease-in-out;
|
|
||||||
transition: border .2s ease-in-out
|
transition: border .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5366,16 +5326,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
|
||||||
color: #a00
|
color: #a00
|
||||||
}
|
}
|
||||||
|
|
||||||
@-webkit-keyframes progress-bar-stripes {
|
|
||||||
from {
|
|
||||||
background-position: 40px 0
|
|
||||||
}
|
|
||||||
|
|
||||||
to {
|
|
||||||
background-position: 0 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes progress-bar-stripes {
|
@keyframes progress-bar-stripes {
|
||||||
from {
|
from {
|
||||||
background-position: 40px 0
|
background-position: 40px 0
|
||||||
|
|
@ -5392,7 +5342,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
background-color: #3c3c3c;
|
background-color: #3c3c3c;
|
||||||
border-radius: 0;
|
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)
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5405,23 +5354,16 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: #0f0;
|
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);
|
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
|
transition: width .6s ease
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar, .progress-bar-striped {
|
.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-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
|
background-size: 40px 40px
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress.active .progress-bar, .progress-bar.active {
|
.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
|
animation: progress-bar-stripes 2s linear infinite
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5430,8 +5372,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-success {
|
.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)
|
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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5440,8 +5380,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-info {
|
.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)
|
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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5450,8 +5388,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-warning {
|
.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)
|
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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5460,8 +5396,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-danger {
|
.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)
|
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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5696,7 +5630,6 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g
|
||||||
background-color: #222;
|
background-color: #222;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: 0;
|
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)
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -6041,7 +5974,6 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g
|
||||||
background-color: #080808;
|
background-color: #080808;
|
||||||
border: 1px solid #000;
|
border: 1px solid #000;
|
||||||
border-radius: 0;
|
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)
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -6084,7 +6016,7 @@ button.close {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 0;
|
border: 0;
|
||||||
-webkit-appearance: none
|
appearance: none
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-open {
|
.modal-open {
|
||||||
|
|
@ -6105,20 +6037,11 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal.fade .modal-dialog {
|
.modal.fade .modal-dialog {
|
||||||
-webkit-transform: translate(0, -25%);
|
|
||||||
-ms-transform: translate(0, -25%);
|
|
||||||
-o-transform: translate(0, -25%);
|
|
||||||
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
|
transition: transform 0.3s ease-out
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal.in .modal-dialog {
|
.modal.in .modal-dialog {
|
||||||
-webkit-transform: translate(0, 0);
|
|
||||||
-ms-transform: translate(0, 0);
|
|
||||||
-o-transform: translate(0, 0);
|
|
||||||
transform: translate(0, 0)
|
transform: translate(0, 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -6139,7 +6062,6 @@ button.close {
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: 0;
|
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);
|
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||||||
background-clip: padding-box;
|
background-clip: padding-box;
|
||||||
outline: 0
|
outline: 0
|
||||||
|
|
@ -6219,7 +6141,6 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content {
|
.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)
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -6371,7 +6292,6 @@ button.close {
|
||||||
border: 1px solid #333;
|
border: 1px solid #333;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||||
border-radius: 0;
|
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);
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||||
white-space: normal
|
white-space: normal
|
||||||
}
|
}
|
||||||
|
|
@ -6504,8 +6424,6 @@ button.close {
|
||||||
.carousel-inner>.item {
|
.carousel-inner>.item {
|
||||||
display: none;
|
display: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-transition: .6s ease-in-out left;
|
|
||||||
-o-transition: .6s ease-in-out left;
|
|
||||||
transition: .6s ease-in-out left
|
transition: .6s ease-in-out left
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -6515,32 +6433,22 @@ button.close {
|
||||||
|
|
||||||
@media all and (transform-3d), (-webkit-transform-3d) {
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
||||||
.carousel-inner>.item {
|
.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;
|
transition: transform 0.6s ease-in-out;
|
||||||
-webkit-backface-visibility: hidden;
|
|
||||||
-moz-backface-visibility: hidden;
|
|
||||||
backface-visibility: hidden;
|
backface-visibility: hidden;
|
||||||
-webkit-perspective: 1000;
|
|
||||||
-moz-perspective: 1000;
|
|
||||||
perspective: 1000
|
perspective: 1000
|
||||||
}
|
}
|
||||||
|
|
||||||
.carousel-inner>.item.next, .carousel-inner>.item.active.right {
|
.carousel-inner>.item.next, .carousel-inner>.item.active.right {
|
||||||
-webkit-transform: translate3d(100%, 0, 0);
|
|
||||||
transform: translate3d(100%, 0, 0);
|
transform: translate3d(100%, 0, 0);
|
||||||
left: 0
|
left: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
.carousel-inner>.item.prev, .carousel-inner>.item.active.left {
|
.carousel-inner>.item.prev, .carousel-inner>.item.active.left {
|
||||||
-webkit-transform: translate3d(-100%, 0, 0);
|
|
||||||
transform: translate3d(-100%, 0, 0);
|
transform: translate3d(-100%, 0, 0);
|
||||||
left: 0
|
left: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
.carousel-inner>.item.next.left, .carousel-inner>.item.prev.right, .carousel-inner>.item.active {
|
.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);
|
transform: translate3d(0, 0, 0);
|
||||||
left: 0
|
left: 0
|
||||||
}
|
}
|
||||||
|
|
@ -6595,8 +6503,6 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
.carousel-control.left {
|
.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-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
|
||||||
|
|
@ -6605,8 +6511,6 @@ button.close {
|
||||||
.carousel-control.right {
|
.carousel-control.right {
|
||||||
left: auto;
|
left: auto;
|
||||||
right: 0;
|
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-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
|
||||||
|
|
@ -6745,19 +6649,19 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
.pull-right {
|
.pull-right {
|
||||||
float: right !important
|
float: right
|
||||||
}
|
}
|
||||||
|
|
||||||
.pull-left {
|
.pull-left {
|
||||||
float: left !important
|
float: left
|
||||||
}
|
}
|
||||||
|
|
||||||
.hide {
|
.hide {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
.show {
|
.show {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
|
|
||||||
.invisible {
|
.invisible {
|
||||||
|
|
@ -6773,28 +6677,24 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
.affix {
|
.affix {
|
||||||
position: fixed
|
position: fixed
|
||||||
}
|
}
|
||||||
|
|
||||||
@-ms-viewport {
|
|
||||||
width: device-width
|
|
||||||
}
|
|
||||||
|
|
||||||
.visible-xs, .visible-sm, .visible-md, .visible-lg {
|
.visible-xs, .visible-sm, .visible-md, .visible-lg {
|
||||||
display: none !important
|
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 {
|
.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
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:767px) {
|
@media (max-width:767px) {
|
||||||
.visible-xs {
|
.visible-xs {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
|
|
||||||
table.visible-xs {
|
table.visible-xs {
|
||||||
|
|
@ -6802,35 +6702,35 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.visible-xs {
|
tr.visible-xs {
|
||||||
display: table-row !important
|
display: table-row
|
||||||
}
|
}
|
||||||
|
|
||||||
th.visible-xs, td.visible-xs {
|
th.visible-xs, td.visible-xs {
|
||||||
display: table-cell !important
|
display: table-cell
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:767px) {
|
@media (max-width:767px) {
|
||||||
.visible-xs-block {
|
.visible-xs-block {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:767px) {
|
@media (max-width:767px) {
|
||||||
.visible-xs-inline {
|
.visible-xs-inline {
|
||||||
display: inline !important
|
display: inline
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:767px) {
|
@media (max-width:767px) {
|
||||||
.visible-xs-inline-block {
|
.visible-xs-inline-block {
|
||||||
display: inline-block !important
|
display: inline-block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:768px) and (max-width:991px) {
|
@media (min-width:768px) and (max-width:991px) {
|
||||||
.visible-sm {
|
.visible-sm {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
|
|
||||||
table.visible-sm {
|
table.visible-sm {
|
||||||
|
|
@ -6838,35 +6738,35 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.visible-sm {
|
tr.visible-sm {
|
||||||
display: table-row !important
|
display: table-row
|
||||||
}
|
}
|
||||||
|
|
||||||
th.visible-sm, td.visible-sm {
|
th.visible-sm, td.visible-sm {
|
||||||
display: table-cell !important
|
display: table-cell
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:768px) and (max-width:991px) {
|
@media (min-width:768px) and (max-width:991px) {
|
||||||
.visible-sm-block {
|
.visible-sm-block {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:768px) and (max-width:991px) {
|
@media (min-width:768px) and (max-width:991px) {
|
||||||
.visible-sm-inline {
|
.visible-sm-inline {
|
||||||
display: inline !important
|
display: inline
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:768px) and (max-width:991px) {
|
@media (min-width:768px) and (max-width:991px) {
|
||||||
.visible-sm-inline-block {
|
.visible-sm-inline-block {
|
||||||
display: inline-block !important
|
display: inline-block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:992px) and (max-width:1199px) {
|
@media (min-width:992px) and (max-width:1199px) {
|
||||||
.visible-md {
|
.visible-md {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
|
|
||||||
table.visible-md {
|
table.visible-md {
|
||||||
|
|
@ -6874,35 +6774,35 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.visible-md {
|
tr.visible-md {
|
||||||
display: table-row !important
|
display: table-row
|
||||||
}
|
}
|
||||||
|
|
||||||
th.visible-md, td.visible-md {
|
th.visible-md, td.visible-md {
|
||||||
display: table-cell !important
|
display: table-cell
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:992px) and (max-width:1199px) {
|
@media (min-width:992px) and (max-width:1199px) {
|
||||||
.visible-md-block {
|
.visible-md-block {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:992px) and (max-width:1199px) {
|
@media (min-width:992px) and (max-width:1199px) {
|
||||||
.visible-md-inline {
|
.visible-md-inline {
|
||||||
display: inline !important
|
display: inline
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:992px) and (max-width:1199px) {
|
@media (min-width:992px) and (max-width:1199px) {
|
||||||
.visible-md-inline-block {
|
.visible-md-inline-block {
|
||||||
display: inline-block !important
|
display: inline-block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:1200px) {
|
@media (min-width:1200px) {
|
||||||
.visible-lg {
|
.visible-lg {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
|
|
||||||
table.visible-lg {
|
table.visible-lg {
|
||||||
|
|
@ -6910,63 +6810,63 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.visible-lg {
|
tr.visible-lg {
|
||||||
display: table-row !important
|
display: table-row
|
||||||
}
|
}
|
||||||
|
|
||||||
th.visible-lg, td.visible-lg {
|
th.visible-lg, td.visible-lg {
|
||||||
display: table-cell !important
|
display: table-cell
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:1200px) {
|
@media (min-width:1200px) {
|
||||||
.visible-lg-block {
|
.visible-lg-block {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:1200px) {
|
@media (min-width:1200px) {
|
||||||
.visible-lg-inline {
|
.visible-lg-inline {
|
||||||
display: inline !important
|
display: inline
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:1200px) {
|
@media (min-width:1200px) {
|
||||||
.visible-lg-inline-block {
|
.visible-lg-inline-block {
|
||||||
display: inline-block !important
|
display: inline-block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:767px) {
|
@media (max-width:767px) {
|
||||||
.hidden-xs {
|
.hidden-xs {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:768px) and (max-width:991px) {
|
@media (min-width:768px) and (max-width:991px) {
|
||||||
.hidden-sm {
|
.hidden-sm {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:992px) and (max-width:1199px) {
|
@media (min-width:992px) and (max-width:1199px) {
|
||||||
.hidden-md {
|
.hidden-md {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:1200px) {
|
@media (min-width:1200px) {
|
||||||
.hidden-lg {
|
.hidden-lg {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.visible-print {
|
.visible-print {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
.visible-print {
|
.visible-print {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
|
|
||||||
table.visible-print {
|
table.visible-print {
|
||||||
|
|
@ -6974,46 +6874,46 @@ button.close {
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.visible-print {
|
tr.visible-print {
|
||||||
display: table-row !important
|
display: table-row
|
||||||
}
|
}
|
||||||
|
|
||||||
th.visible-print, td.visible-print {
|
th.visible-print, td.visible-print {
|
||||||
display: table-cell !important
|
display: table-cell
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.visible-print-block {
|
.visible-print-block {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
.visible-print-block {
|
.visible-print-block {
|
||||||
display: block !important
|
display: block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.visible-print-inline {
|
.visible-print-inline {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
.visible-print-inline {
|
.visible-print-inline {
|
||||||
display: inline !important
|
display: inline
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.visible-print-inline-block {
|
.visible-print-inline-block {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
.visible-print-inline-block {
|
.visible-print-inline-block {
|
||||||
display: inline-block !important
|
display: inline-block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
.hidden-print {
|
.hidden-print {
|
||||||
display: none !important
|
display: none
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,6 @@
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 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;
|
transition: all 0.2s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -17,7 +13,6 @@ body {
|
||||||
line-height: 170%;
|
line-height: 170%;
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
font-smoothing: antialiased;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 20pt;
|
padding: 20pt;
|
||||||
}
|
}
|
||||||
|
|
@ -201,7 +196,6 @@ footer a:hover, footer a:focus, footer a:active {
|
||||||
|
|
||||||
footer p {
|
footer p {
|
||||||
background-position: 0 1px;
|
background-position: 0 1px;
|
||||||
-webkit-background-size: 9px;
|
|
||||||
background-size: 11px;
|
background-size: 11px;
|
||||||
margin-left: -10pt;
|
margin-left: -10pt;
|
||||||
padding-left: 10pt;
|
padding-left: 10pt;
|
||||||
|
|
@ -214,7 +208,7 @@ footer a:hover, footer a:focus, footer a:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
color: black !important;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
a[href^="http"]:after {
|
a[href^="http"]:after {
|
||||||
|
|
@ -273,7 +267,6 @@ footer a:hover, footer a:focus, footer a:active {
|
||||||
|
|
||||||
footer p {
|
footer p {
|
||||||
background-position: 0 1px;
|
background-position: 0 1px;
|
||||||
-webkit-background-size: 11px;
|
|
||||||
background-size: 11px;
|
background-size: 11px;
|
||||||
margin-left: -12pt;
|
margin-left: -12pt;
|
||||||
padding-left: 12pt;
|
padding-left: 12pt;
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,7 @@ button, hr, input {
|
||||||
html {
|
html {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
line-height: 1.15;
|
line-height: 1.15;
|
||||||
-ms-text-size-adjust: 100%;
|
text-size-adjust: 100%;
|
||||||
-webkit-text-size-adjust: 100%
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
@ -124,7 +123,7 @@ button, select {
|
||||||
}
|
}
|
||||||
|
|
||||||
[type=submit], [type=reset], button, html [type=button] {
|
[type=submit], [type=reset], button, html [type=button] {
|
||||||
-webkit-appearance: button
|
appearance: button
|
||||||
}
|
}
|
||||||
|
|
||||||
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
|
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
|
||||||
|
|
@ -165,12 +164,12 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
[type=search] {
|
[type=search] {
|
||||||
-webkit-appearance: textfield;
|
appearance: textfield;
|
||||||
outline-offset: -2px
|
outline-offset: -2px
|
||||||
}
|
}
|
||||||
|
|
||||||
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
|
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
|
||||||
-webkit-appearance: none
|
appearance: none
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-input-placeholder {
|
::-webkit-input-placeholder {
|
||||||
|
|
@ -179,7 +178,7 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-file-upload-button {
|
::-webkit-file-upload-button {
|
||||||
-webkit-appearance: button;
|
appearance: button;
|
||||||
font: inherit
|
font: inherit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -314,8 +313,6 @@ article>p:last-child {
|
||||||
border-left: 15px solid #3392cd;
|
border-left: 15px solid #3392cd;
|
||||||
border-right: 2px solid #3392cd;
|
border-right: 2px solid #3392cd;
|
||||||
/*Box Shadow - (Optional)*/
|
/*Box Shadow - (Optional)*/
|
||||||
-moz-box-shadow: 2px 2px 15px #ccc;
|
|
||||||
-webkit-box-shadow: 2px 2px 15px #ccc;
|
|
||||||
box-shadow: 2px 2px 15px #ccc;
|
box-shadow: 2px 2px 15px #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ article {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
|
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;
|
transition: box-shadow .2s ease-in-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|
@ -100,7 +99,6 @@ footer a:hover {
|
||||||
float: right;
|
float: right;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
|
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
|
transition: box-shadow .2s ease-in-out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -68,6 +68,4 @@ p:first-of-type, footer {
|
||||||
width: 80px;
|
width: 80px;
|
||||||
margin-top: 72px;
|
margin-top: 72px;
|
||||||
border-radius: 40px;
|
border-radius: 40px;
|
||||||
-webkit-border-radius: 40px;
|
|
||||||
-moz-border-radius: 40px;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -43,10 +43,6 @@ a {
|
||||||
color: #0a0a0b;
|
color: #0a0a0b;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-bottom: 3px solid rgba(10, 10, 11, 1);
|
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
|
transition: .15s ease
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,7 @@ article {
|
||||||
width: 85%;
|
width: 85%;
|
||||||
margin: 80px auto;
|
margin: 80px auto;
|
||||||
border-radius: 10px;
|
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);
|
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 {
|
article h1 {
|
||||||
|
|
@ -34,9 +32,7 @@ article h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 19px;
|
padding: 19px;
|
||||||
border-radius: 10px;
|
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);
|
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 {
|
article p {
|
||||||
|
|
@ -52,8 +48,6 @@ footer {
|
||||||
border-top: 1px solid #7A7A00;
|
border-top: 1px solid #7A7A00;
|
||||||
background: #333300;
|
background: #333300;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer p, footer a {
|
footer p, footer a {
|
||||||
|
|
|
||||||
|
|
@ -19,10 +19,8 @@ article {
|
||||||
border-right: 1.5px solid #9ab8ed;
|
border-right: 1.5px solid #9ab8ed;
|
||||||
padding: 17px;
|
padding: 17px;
|
||||||
border-radius: 1%;
|
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;
|
box-shadow: 3px 0px 20px -2px #7ba5e4;
|
||||||
background: -webkit-radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%);
|
background: radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
article, footer {
|
article, footer {
|
||||||
|
|
|
||||||
BIN
yarn.lock
BIN
yarn.lock
Binary file not shown.
Loading…
Reference in a new issue