chore: recompiled css
This commit is contained in:
parent
37be12b43b
commit
4d0247f360
2 changed files with 35 additions and 26 deletions
|
@ -1,4 +1,4 @@
|
|||
/*! TACHYONS v4.7.2 | http://tachyons.io */
|
||||
/*! TACHYONS v4.7.3 | http://tachyons.io */
|
||||
/*
|
||||
*
|
||||
* ________ ______
|
||||
|
@ -22,7 +22,7 @@
|
|||
*
|
||||
*/
|
||||
/* External Library Includes */
|
||||
/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */
|
||||
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
|
||||
/* Document
|
||||
========================================================================== */
|
||||
/**
|
||||
|
@ -33,6 +33,10 @@
|
|||
html { line-height: 1.15; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
/**
|
||||
* Remove the margin in all browsers (opinionated).
|
||||
*/
|
||||
body { margin: 0; }
|
||||
/**
|
||||
* Add the correct display in IE 9-.
|
||||
*/
|
||||
|
@ -128,9 +132,10 @@ svg:not(:root) { overflow: hidden; }
|
|||
/* Forms
|
||||
========================================================================== */
|
||||
/**
|
||||
* Remove the margin in Firefox and Safari.
|
||||
* 1. Change the font styles in all browsers (opinionated).
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
button, input, optgroup, select, textarea { margin: 0; }
|
||||
button, input, optgroup, select, textarea { font-family: sans-serif; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ }
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
|
@ -158,6 +163,10 @@ button::-moz-focus-inner, [type="button"]::-moz-focus-inner,
|
|||
*/
|
||||
button:-moz-focusring, [type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
fieldset { padding: .35em .75em .625em; }
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
|
@ -908,11 +917,11 @@ code, .code { font-family: Consolas, monaco, monospace; }
|
|||
Docs: http://tachyons.io/docs/elements/links/
|
||||
|
||||
*/
|
||||
.link { text-decoration: none; -webkit-transition: color .15s ease-in; transition: color .15s ease-in; }
|
||||
.link:link, .link:visited { -webkit-transition: color .15s ease-in; transition: color .15s ease-in; }
|
||||
.link:hover { -webkit-transition: color .15s ease-in; transition: color .15s ease-in; }
|
||||
.link:active { -webkit-transition: color .15s ease-in; transition: color .15s ease-in; }
|
||||
.link:focus { -webkit-transition: color .15s ease-in; transition: color .15s ease-in; outline: 1px dotted currentColor; }
|
||||
.link { text-decoration: none; transition: color .15s ease-in; }
|
||||
.link:link, .link:visited { transition: color .15s ease-in; }
|
||||
.link:hover { transition: color .15s ease-in; }
|
||||
.link:active { transition: color .15s ease-in; }
|
||||
.link:focus { transition: color .15s ease-in; outline: 1px dotted currentColor; }
|
||||
/*
|
||||
|
||||
LISTS
|
||||
|
@ -1867,16 +1876,16 @@ code, .code { font-family: Consolas, monaco, monospace; }
|
|||
Dim element on hover by adding the dim class.
|
||||
|
||||
*/
|
||||
.dim { opacity: 1; -webkit-transition: opacity .15s ease-in; transition: opacity .15s ease-in; }
|
||||
.dim:hover, .dim:focus { opacity: .5; -webkit-transition: opacity .15s ease-in; transition: opacity .15s ease-in; }
|
||||
.dim:active { opacity: .8; -webkit-transition: opacity .15s ease-out; transition: opacity .15s ease-out; }
|
||||
.dim { opacity: 1; transition: opacity .15s ease-in; }
|
||||
.dim:hover, .dim:focus { opacity: .5; transition: opacity .15s ease-in; }
|
||||
.dim:active { opacity: .8; transition: opacity .15s ease-out; }
|
||||
/*
|
||||
|
||||
Animate opacity to 100% on hover by adding the glow class.
|
||||
|
||||
*/
|
||||
.glow { -webkit-transition: opacity .15s ease-in; transition: opacity .15s ease-in; }
|
||||
.glow:hover, .glow:focus { opacity: 1; -webkit-transition: opacity .15s ease-in; transition: opacity .15s ease-in; }
|
||||
.glow { transition: opacity .15s ease-in; }
|
||||
.glow:hover, .glow:focus { opacity: 1; transition: opacity .15s ease-in; }
|
||||
/*
|
||||
|
||||
Hide child & reveal on hover:
|
||||
|
@ -1891,15 +1900,15 @@ code, .code { font-family: Consolas, monaco, monospace; }
|
|||
<div class="child"> Hidden until hover or focus </div>
|
||||
</div>
|
||||
*/
|
||||
.hide-child .child { opacity: 0; -webkit-transition: opacity .15s ease-in; transition: opacity .15s ease-in; }
|
||||
.hide-child:hover .child, .hide-child:focus .child, .hide-child:active .child { opacity: 1; -webkit-transition: opacity .15s ease-in; transition: opacity .15s ease-in; }
|
||||
.hide-child .child { opacity: 0; transition: opacity .15s ease-in; }
|
||||
.hide-child:hover .child, .hide-child:focus .child, .hide-child:active .child { opacity: 1; transition: opacity .15s ease-in; }
|
||||
.underline-hover:hover, .underline-hover:focus { text-decoration: underline; }
|
||||
/* Can combine this with overflow-hidden to make background images grow on hover
|
||||
* even if you are using background-size: cover */
|
||||
.grow { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); -webkit-transition: -webkit-transform .25s ease-out; transition: -webkit-transform .25s ease-out; transition: transform .25s ease-out; transition: transform .25s ease-out, -webkit-transform .25s ease-out; }
|
||||
.grow { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); transition: -webkit-transform .25s ease-out; transition: transform .25s ease-out; transition: transform .25s ease-out, -webkit-transform .25s ease-out; }
|
||||
.grow:hover, .grow:focus { -webkit-transform: scale( 1.05 ); transform: scale( 1.05 ); }
|
||||
.grow:active { -webkit-transform: scale( .90 ); transform: scale( .90 ); }
|
||||
.grow-large { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); -webkit-transition: -webkit-transform .25s ease-in-out; transition: -webkit-transform .25s ease-in-out; transition: transform .25s ease-in-out; transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out; }
|
||||
.grow-large { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); transition: -webkit-transform .25s ease-in-out; transition: transform .25s ease-in-out; transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out; }
|
||||
.grow-large:hover, .grow-large:focus { -webkit-transform: scale( 1.2 ); transform: scale( 1.2 ); }
|
||||
.grow-large:active { -webkit-transform: scale( .95 ); transform: scale( .95 ); }
|
||||
/* Add pointer on hover */
|
||||
|
@ -1910,12 +1919,12 @@ code, .code { font-family: Consolas, monaco, monospace; }
|
|||
Performant box-shadow animation pattern from
|
||||
http://tobiasahlin.com/blog/how-to-animate-box-shadow/
|
||||
*/
|
||||
.shadow-hover { cursor: pointer; position: relative; -webkit-transition: all .5s cubic-bezier( .165, .84, .44, 1 ); transition: all .5s cubic-bezier( .165, .84, .44, 1 ); }
|
||||
.shadow-hover::after { content: ''; box-shadow: 0 0 16px 2px rgba( 0, 0, 0, .2 ); opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; -webkit-transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); }
|
||||
.shadow-hover { cursor: pointer; position: relative; transition: all .5s cubic-bezier( .165, .84, .44, 1 ); }
|
||||
.shadow-hover::after { content: ''; box-shadow: 0 0 16px 2px rgba( 0, 0, 0, .2 ); opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); }
|
||||
.shadow-hover:hover::after, .shadow-hover:focus::after { opacity: 1; }
|
||||
/* Combine with classes in skins and skins-pseudo for
|
||||
* many different transition possibilities. */
|
||||
.bg-animate, .bg-animate:hover, .bg-animate:focus { -webkit-transition: background-color .15s ease-in-out; transition: background-color .15s ease-in-out; }
|
||||
.bg-animate, .bg-animate:hover, .bg-animate:focus { transition: background-color .15s ease-in-out; }
|
||||
/*
|
||||
|
||||
Z-INDEX
|
||||
|
@ -1978,9 +1987,9 @@ code, .code { font-family: Consolas, monaco, monospace; }
|
|||
.nested-copy-indent p+p { text-indent: 1em; margin-top: 0; margin-bottom: 0; }
|
||||
.nested-copy-seperator p+p { margin-top: 1.5em; }
|
||||
.nested-img img { width: 100%; max-width: 100%; display: block; }
|
||||
.nested-links a { color: #357edd; -webkit-transition: color .15s ease-in; transition: color .15s ease-in; }
|
||||
.nested-links a:hover { color: #96ccff; -webkit-transition: color .15s ease-in; transition: color .15s ease-in; }
|
||||
.nested-links a:focus { color: #96ccff; -webkit-transition: color .15s ease-in; transition: color .15s ease-in; }
|
||||
.nested-links a { color: #357edd; transition: color .15s ease-in; }
|
||||
.nested-links a:hover { color: #96ccff; transition: color .15s ease-in; }
|
||||
.nested-links a:focus { color: #96ccff; transition: color .15s ease-in; }
|
||||
/*
|
||||
|
||||
STYLES
|
||||
|
|
4
css/tachyons.min.css
vendored
4
css/tachyons.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue