|
1 | | -/* TACHYONS v4.2.1 | http://github.com/tachyons-css/tachyons */ |
| 1 | +/* TACHYONS v4.3.0 | http://github.com/tachyons-css/tachyons */ |
2 | 2 | /* |
3 | 3 | * |
4 | 4 | * ________ ______ |
@@ -303,7 +303,11 @@ img { max-width: 100%; } |
303 | 303 | to that of the current text color. These classes are for the cases |
304 | 304 | where you desire for the text and border colors to be different. |
305 | 305 |
|
306 | | - b = border |
| 306 | + Base: |
| 307 | + b = border |
| 308 | +
|
| 309 | + Modifiers: |
| 310 | + --color-name = each color variable name is also a border color name |
307 | 311 |
|
308 | 312 | */ |
309 | 313 | .b--black { border-color: #000; } |
@@ -671,6 +675,7 @@ code, .code { font-family: Consolas, monaco, monospace; } |
671 | 675 | .helvetica { font-family: 'helvetica neue', helvetica, sans-serif; } |
672 | 676 | .avenir { font-family: 'avenir next', avenir, sans-serif; } |
673 | 677 | /* Serif Typefaces */ |
| 678 | +.athelas { font-family: athelas, georgia, serif; } |
674 | 679 | .georgia { font-family: georgia, serif; } |
675 | 680 | .times { font-family: times, serif; } |
676 | 681 | .bodoni { font-family: "Bodoni MT", serif; } |
@@ -1422,8 +1427,16 @@ code, .code { font-family: Consolas, monaco, monospace; } |
1422 | 1427 | * */ |
1423 | 1428 | .aspect-ratio { height: 0; position: relative; } |
1424 | 1429 | .aspect-ratio--16x9 { padding-bottom: 56.25%; } |
| 1430 | +.aspect-ratio--9x16 { padding-bottom: 177.77%; } |
1425 | 1431 | .aspect-ratio--4x3 { padding-bottom: 75%; } |
| 1432 | +.aspect-ratio--3x4 { padding-bottom: 133.33%; } |
| 1433 | +.aspect-ratio--6x4 { padding-bottom: 66.6%; } |
| 1434 | +.aspect-ratio--4x6 { padding-bottom: 150%; } |
1426 | 1435 | .aspect-ratio--8x5 { padding-bottom: 62.5%; } |
| 1436 | +.aspect-ratio--5x8 { padding-bottom: 160%; } |
| 1437 | +.aspect-ratio--7x5 { padding-bottom: 71.42%; } |
| 1438 | +.aspect-ratio--5x7 { padding-bottom: 140%; } |
| 1439 | +.aspect-ratio--1x1 { padding-bottom: 100%; } |
1427 | 1440 | .aspect-ratio--object { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; z-index: 100; } |
1428 | 1441 | .overflow-container { overflow-y: scroll; } |
1429 | 1442 | .center { margin-right: auto; margin-left: auto; } |
@@ -1508,10 +1521,10 @@ code, .code { font-family: Consolas, monaco, monospace; } |
1508 | 1521 | .underline-hover:hover, .underline-hover:focus { text-decoration: underline; } |
1509 | 1522 | /* Can combine this with overflow-hidden to make background images grow on hover |
1510 | 1523 | * even if you are using background-size: cover */ |
1511 | | -.grow { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); -webkit-transition: 0.25s -webkit-transform ease-out; transition: 0.25s -webkit-transform ease-out; transition: 0.25s transform ease-out; transition: 0.25s transform ease-out, 0.25s -webkit-transform ease-out; } |
| 1524 | +.grow { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); -webkit-transition: -webkit-transform 0.25s ease-out; transition: -webkit-transform 0.25s ease-out; transition: transform 0.25s ease-out; transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out; } |
1512 | 1525 | .grow:hover, .grow:focus { -webkit-transform: scale( 1.05 ); transform: scale( 1.05 ); } |
1513 | 1526 | .grow:active { -webkit-transform: scale( .90 ); transform: scale( .90 ); } |
1514 | | -.grow-large { -moz-osx-font-smoothing: grayscale; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateZ( 0 ); transform: translateZ( 0 ); -webkit-transition: 0.25s -webkit-transform ease-in-out; transition: 0.25s -webkit-transform ease-in-out; transition: 0.25s transform ease-in-out; transition: 0.25s transform ease-in-out, 0.25s -webkit-transform ease-in-out; } |
| 1527 | +.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 0.25s ease-in-out; transition: -webkit-transform 0.25s ease-in-out; transition: transform 0.25s ease-in-out; transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out; } |
1515 | 1528 | .grow-large:hover, .grow-large:focus { -webkit-transform: scale( 1.2 ); transform: scale( 1.2 ); } |
1516 | 1529 | .grow-large:active { -webkit-transform: scale( .95 ); transform: scale( .95 ); } |
1517 | 1530 | /* Add pointer on hover */ |
|
0 commit comments