generated from webmural/air
-
Notifications
You must be signed in to change notification settings - Fork 0
/
element.css
67 lines (55 loc) · 866 Bytes
/
element.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
html {
font-family: sans-serif;
font-size: max(3ex, 3vmin + 3vmax);
}
body {
padding: 1em;
display: flex;
flex-flow: column;
margin: auto;
overflow-wrap: anywhere;
}
article {
line-height: 1.6;
}
ul {
list-style: circle;
}
h1 {
margin: 0;
display: table;
}
h2 {
font-size: inherit;
display: table;
}
p {
display: table;
}
a {
display: inline-block;
padding: 1ex;
padding-inline-start: 3rem;
padding-inline-end: 1em;
margin-inline-start: -2rem;
margin-inline-end: -2rem;
margin-block: 2ex;
}
p:not(:first-of-type) {
margin-block-start: 0;
}
p:not(:last-of-type) {
margin-block-end: 0;
}
:any-link {
overflow-wrap: anywhere;
text-decoration-style: dotted;
text-decoration-thickness: .2em;
}
:any-link:hover {
text-decoration-style: double;
}
:focus {
outline-width: thick;
outline-style: dotted;
}