-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrouped.css
67 lines (62 loc) · 1.19 KB
/
grouped.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* Remove margin from all elements that have it applied by default.
*/
blockquote,
figure,
form,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
ul,
ol {
margin: 0;
}
/**
* Apply OpenType features to elements that use a monospaced font:
* - Remove kerning.
* - Remove common ligatures.
* - Remove standard ligatures
* - Apply lining numerals.
* - Apply tabular numerals.
* - Apply slashed zero.
*
* NOTE: See the "OpenType features" section in the README.md.
*/
code,
kbd,
pre,
samp {
font-feature-settings: 'kern' 0, 'liga' 0, 'clig' 0, 'onum' 0, 'pnum' 0,
'tnum', 'lnum', 'zero';
font-kerning: none;
font-variant-ligatures: contextual;
font-variant-numeric: lining-nums tabular-nums slashed-zero;
}
/**
* Avoid 300ms click delay on touch devices that support the `touch-action` CSS
* property.
*
* @credit
* - http://caniuse.com/#feat=css-touch-action
* - http://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
* - https://adactio.com/journal/10019
* - https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away
*/
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex]:not([tabindex='-1']) {
touch-action: manipulation;
}