Skip to content

Commit f95523e

Browse files
author
mrmrs
committed
Update new source css
1 parent d00c090 commit f95523e

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

src/css/_hovers.css

+11-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
-moz-osx-font-smoothing: grayscale;
8585
backface-visibility: hidden;
8686
transform: translateZ(0);
87-
transition: transform 0.25s ease-in-out;
87+
transition: transform .25s ease-in-out;
8888
}
8989

9090
.grow-large:hover,
@@ -110,13 +110,21 @@
110110
*/
111111

112112
.shadow-hover::after {
113-
box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 );
113+
box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, .2 );
114114
opacity: 0;
115-
transition: opacity 0.25s ease-in-out;
115+
transition: opacity .25s ease-in-out;
116116
}
117117

118118
.shadow-hover:hover::after,
119119
.shadow-hover:focus::after {
120120
opacity: 1;
121121
}
122122

123+
/* Combine with classes in skins and skins-pseudo for
124+
* thousands of different transition possibilities. */
125+
126+
.bg-animate:hover,
127+
.bg-animate:focus {
128+
transition: background-color .15s ease-in-out;
129+
}
130+

src/css/_widths.css

+16
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,20 @@
4747
.w-10 { width: 10%; }
4848
.w-20 { width: 20%; }
4949
.w-25 { width: 25%; }
50+
.w-30 { width: 30%; }
5051
.w-33 { width: 33%; }
5152
.w-34 { width: 34%; }
5253
.w-40 { width: 40%; }
5354
.w-50 { width: 50%; }
5455
.w-60 { width: 60%; }
56+
.w-70 { width: 70%; }
5557
.w-75 { width: 75%; }
5658
.w-80 { width: 80%; }
59+
.w-90 { width: 90%; }
5760
.w-100 { width: 100%; }
5861

5962
.w-third { width: calc(100% / 3); }
63+
.w-two-thirds { width: calc(100% / 1.5); }
6064
.w-auto { width: auto; }
6165

6266
@media (--breakpoint-not-small) {
@@ -68,15 +72,19 @@
6872
.w-10-ns { width: 10%; }
6973
.w-20-ns { width: 20%; }
7074
.w-25-ns { width: 25%; }
75+
.w-30-ns { width: 30%; }
7176
.w-33-ns { width: 33%; }
7277
.w-34-ns { width: 34%; }
7378
.w-40-ns { width: 40%; }
7479
.w-50-ns { width: 50%; }
7580
.w-60-ns { width: 60%; }
81+
.w-70-ns { width: 70%; }
7682
.w-75-ns { width: 75%; }
7783
.w-80-ns { width: 80%; }
84+
.w-90-ns { width: 90%; }
7885
.w-100-ns { width: 100%; }
7986
.w-third-ns { width: calc(100% / 3); }
87+
.w-two-third-ns { width: calc(100% / 1.5); }
8088
.w-auto-ns { width: auto; }
8189
}
8290

@@ -89,15 +97,19 @@
8997
.w-10-m { width: 10%; }
9098
.w-20-m { width: 20%; }
9199
.w-25-m { width: 25%; }
100+
.w-30-m { width: 30%; }
92101
.w-33-m { width: 33%; }
93102
.w-34-m { width: 34%; }
94103
.w-40-m { width: 40%; }
95104
.w-50-m { width: 50%; }
96105
.w-60-m { width: 60%; }
106+
.w-70-m { width: 70%; }
97107
.w-75-m { width: 75%; }
98108
.w-80-m { width: 80%; }
109+
.w-90-m { width: 90%; }
99110
.w-100-m { width: 100%; }
100111
.w-third-m { width: calc(100% / 3); }
112+
.w-two-thirds-m { width: calc(100% / 1.5); }
101113
.w-auto-m { width: auto; }
102114
}
103115

@@ -110,14 +122,18 @@
110122
.w-10-l { width: 10%; }
111123
.w-20-l { width: 20%; }
112124
.w-25-l { width: 25%; }
125+
.w-30-l { width: 30%; }
113126
.w-33-l { width: 33%; }
114127
.w-34-l { width: 34%; }
115128
.w-40-l { width: 40%; }
116129
.w-50-l { width: 50%; }
117130
.w-60-l { width: 60%; }
131+
.w-70-l { width: 70%; }
118132
.w-75-l { width: 75%; }
119133
.w-80-l { width: 80%; }
134+
.w-90-l { width: 90%; }
120135
.w-100-l { width: 100%; }
121136
.w-third-l { width: calc(100% / 3); }
137+
.w-two-thirds-l { width: calc(100% / 1.5); }
122138
.w-auto-l { width: auto; }
123139
}

src/css/tachyons.css

+1-1
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
*

0 commit comments

Comments
 (0)