-
Notifications
You must be signed in to change notification settings - Fork 0
/
surface.css
125 lines (103 loc) · 1.4 KB
/
surface.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
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
119
120
121
122
123
124
125
html {
font-family: monospace, sans-serif;
font-size: calc(1em + 1vmax);
line-height: 1.333;
}
body {
margin: 2rem;
overflow-wrap: anywhere;
}
article {
display: block;
}
fieldset {
display: contents;
}
fieldset::after {
display: block;
content: "";
margin: 1ex;
}
details,
header,
footer {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
max-width: 22em;
}
h2,
nav,
address,
figcaption {
display: block;
font: inherit;
font-size: 2rem;
}
figure {
display: block;
margin: 0;
margin-block-start: 1em;
margin-block-end: 1em;
}
dfn {
font: inherit;
font-size: 3em;
}
i,
var,
samp,
code {
font: inherit;
}
kbd {
font: inherit;
padding-inline-start: 1mm;
padding-inline-end: 1mm;
white-space: pre-wrap;
}
input,
button {
max-width: 100%;
font-size: .66rem;
}
textarea {
border-style: dotted;
font-size: .66rem;
max-width: 100%;
width: 33em;
}
[data-oral] {
font-size: 0;
}
a {
display: inline-block;
text-decoration-style: dotted;
}
img {
max-width: 100%;
height: auto;
}
:enabled,
:disabled {
padding: 1ex;
}
[href] {
padding: 1mm;
}
[hidden] {
display: none;
}
@media (prefers-color-scheme: light) {
[value=light] { display: inline }
}
@media (prefers-color-scheme: dark) {
[value=dark] { display: inline }
}
:focus {
outline-style: dotted;
outline-width: thick;
}
[data-drop] {
vertical-align: middle;
}