Skip to content

Commit c0e7a42

Browse files
author
mrmrs
committed
New css
1 parent fe82917 commit c0e7a42

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

css/tachyons.css

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* TACHYONS v4.4.0 | https://github.com/tachyons-css/tachyons */
1+
/*! TACHYONS v4.5.0 | http://tachyons.io */
22
/*
33
*
44
* ________ ______
@@ -969,15 +969,19 @@ code, .code { font-family: Consolas, monaco, monospace; }
969969
.w-10 { width: 10%; }
970970
.w-20 { width: 20%; }
971971
.w-25 { width: 25%; }
972+
.w-30 { width: 30%; }
972973
.w-33 { width: 33%; }
973974
.w-34 { width: 34%; }
974975
.w-40 { width: 40%; }
975976
.w-50 { width: 50%; }
976977
.w-60 { width: 60%; }
978+
.w-70 { width: 70%; }
977979
.w-75 { width: 75%; }
978980
.w-80 { width: 80%; }
981+
.w-90 { width: 90%; }
979982
.w-100 { width: 100%; }
980983
.w-third { width: calc( 100% / 3 ); }
984+
.w-two-thirds { width: calc( 100% / 1.5 ); }
981985
.w-auto { width: auto; }
982986
/*
983987
@@ -1706,7 +1710,7 @@ code, .code { font-family: Consolas, monaco, monospace; }
17061710
/* Can combine this with overflow-hidden to make background images grow on hover
17071711
* even if you are using background-size: cover */
17081712
.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; }
1709-
.grow:hover, .grow:focus { -webkit-transform: scale ( 1.05 ); transform: scale ( 1.05 ); }
1713+
.grow:hover, .grow:focus { -webkit-transform: scale( 15 ); transform: scale( 15 ); }
17101714
.grow:active { -webkit-transform: scale( .90 ); transform: scale( .90 ); }
17111715
.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; }
17121716
.grow-large:hover, .grow-large:focus { -webkit-transform: scale( 1.2 ); transform: scale( 1.2 ); }
@@ -1721,6 +1725,9 @@ code, .code { font-family: Consolas, monaco, monospace; }
17211725
*/
17221726
.shadow-hover::after { box-shadow: 0 0px 8px 2px rgba( 0, 0, 0, .2 ); opacity: 0; -webkit-transition: opacity .25s ease-in-out; transition: opacity .25s ease-in-out; }
17231727
.shadow-hover:hover::after, .shadow-hover:focus::after { opacity: 1; }
1728+
/* Combine with classes in skins and skins-pseudo for
1729+
* thousands of different transition possibilities. */
1730+
.bg-animate:hover, .bg-animate:focus { -webkit-transition: background-color .15s ease-in-out; transition: background-color .15s ease-in-out; }
17241731
/*
17251732
17261733
Z-INDEX
@@ -2026,15 +2033,19 @@ code, .code { font-family: Consolas, monaco, monospace; }
20262033
.w-10-ns { width: 10%; }
20272034
.w-20-ns { width: 20%; }
20282035
.w-25-ns { width: 25%; }
2036+
.w-30-ns { width: 30%; }
20292037
.w-33-ns { width: 33%; }
20302038
.w-34-ns { width: 34%; }
20312039
.w-40-ns { width: 40%; }
20322040
.w-50-ns { width: 50%; }
20332041
.w-60-ns { width: 60%; }
2042+
.w-70-ns { width: 70%; }
20342043
.w-75-ns { width: 75%; }
20352044
.w-80-ns { width: 80%; }
2045+
.w-90-ns { width: 90%; }
20362046
.w-100-ns { width: 100%; }
20372047
.w-third-ns { width: calc( 100% / 3 ); }
2048+
.w-two-third-ns { width: calc( 100% / 1.5 ); }
20382049
.w-auto-ns { width: auto; }
20392050
.overflow-visible-ns { overflow: visible; }
20402051
.overflow-hidden-ns { overflow: hidden; }
@@ -2380,15 +2391,19 @@ code, .code { font-family: Consolas, monaco, monospace; }
23802391
.w-10-m { width: 10%; }
23812392
.w-20-m { width: 20%; }
23822393
.w-25-m { width: 25%; }
2394+
.w-30-m { width: 30%; }
23832395
.w-33-m { width: 33%; }
23842396
.w-34-m { width: 34%; }
23852397
.w-40-m { width: 40%; }
23862398
.w-50-m { width: 50%; }
23872399
.w-60-m { width: 60%; }
2400+
.w-70-m { width: 70%; }
23882401
.w-75-m { width: 75%; }
23892402
.w-80-m { width: 80%; }
2403+
.w-90-m { width: 90%; }
23902404
.w-100-m { width: 100%; }
23912405
.w-third-m { width: calc( 100% / 3 ); }
2406+
.w-two-thirds-m { width: calc( 100% / 1.5 ); }
23922407
.w-auto-m { width: auto; }
23932408
.overflow-visible-m { overflow: visible; }
23942409
.overflow-hidden-m { overflow: hidden; }
@@ -2728,15 +2743,19 @@ code, .code { font-family: Consolas, monaco, monospace; }
27282743
.w-10-l { width: 10%; }
27292744
.w-20-l { width: 20%; }
27302745
.w-25-l { width: 25%; }
2746+
.w-30-l { width: 30%; }
27312747
.w-33-l { width: 33%; }
27322748
.w-34-l { width: 34%; }
27332749
.w-40-l { width: 40%; }
27342750
.w-50-l { width: 50%; }
27352751
.w-60-l { width: 60%; }
2752+
.w-70-l { width: 70%; }
27362753
.w-75-l { width: 75%; }
27372754
.w-80-l { width: 80%; }
2755+
.w-90-l { width: 90%; }
27382756
.w-100-l { width: 100%; }
27392757
.w-third-l { width: calc( 100% / 3 ); }
2758+
.w-two-thirds-l { width: calc( 100% / 1.5 ); }
27402759
.w-auto-l { width: auto; }
27412760
.overflow-visible-l { overflow: visible; }
27422761
.overflow-hidden-l { overflow: hidden; }

css/tachyons.min.css

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)