-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag.css
More file actions
118 lines (91 loc) · 2.18 KB
/
tag.css
File metadata and controls
118 lines (91 loc) · 2.18 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
*,
*::before,
*::after
{
z-index: 0;
box-sizing: inherit;
}
::backdrop { background: hsl(var(--sf-c-backdrop) / 20%) }
html {
font-family: var(--sf-ff, sans-serif);
font-size: var(--sf-fz, 1rem);
font-weight: var(--sf-fw, 400);
font-synthesis: style;
font-optical-sizing: auto;
font-stretch: normal;
text-size-adjust: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: var(--sf-lh, 0.8);
color: hsl(var(--sf-c-txt));
background: hsl(var(--sf-c-bg));
min-width: 320px;
height: 100%;
box-sizing: border-box;
}
body {
min-height: 100%;
margin: 0 auto;
}
figure { margin: 0 }
hr {
width: 100%;
margin: 1em 0;
}
pre {
overflow: auto;
padding: 1.25em 1.5em;
background: hsl(var(--sf-c-shape-bg));
}
ol,
ul
{
margin: 0 0 0 2em;
padding: 0;
}
dt { font-weight: 700 }
dd { margin-left: 2em }
blockquote { margin: 0 2em }
details[open] > summary:first-of-type {
list-style-type: disclosure-open;
}
summary {
cursor: pointer;
display: list-item;
counter-increment: list-item 0;
list-style: inside disclosure-closed;
}
video {
width: 100%;
height: 100%;
}
img {
max-width: 100%;
max-height: 100%;
text-anchor: middle;
object-fit: contain;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
user-select: none;
}
iframe,
img
{ border: 0 }
/* /// */
html.var {
font-family: 'Inter', ui-sans-serif, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-size: 16px;
font-weight: 400;
line-height: 0.8;
color: hsl(0, 0%, 10%);
background: hsl(0, 0%, 100%);
}
html.var pre { background: hsl(0, 0%, 90%) }
html.var ::backdrop { background: hsla(0, 0%, 10%, 0.2) }
/* HTML5 */
dialog[open] { z-index: 1000 }
article, aside, details, dialog[open], figure, footer, header, hgroup, main, nav, section { display: block }
meter, progress { display: inline-block }
audio, bdi, canvas, data, embed, mark, output, picture, svg, time, video, wbr { display: inline }
[hidden], datalist, dialog, source, template, track { display: none !important }