-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (62 loc) · 1.58 KB
/
style.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
:root{
--font-size:12px;
--line-height:16px;
--gap:2px;
--height:calc(var(--line-height) + var(--gap) * 2);
--height:auto;
--width-number:2em;
--background:#FEFEFE;
--link:purple;
--text:black;
--selection:lightyellow
}
@font-face {
font-family: Junicode;
src: url("Junicode-CondLight.otf") format("opentype");
}
@font-face {
font-family: Junicode;
src: url("Junicode-CondLightItalic.otf") format("opentype");
font-style:italic;
}
* {
font-family: Junicode, serif;
font-variant-numeric: lining-nums;
}
textarea {width:100%;padding:0;margin:0;
border:1px dotted black;
height:var(--height)
}
.PIN date, .PIN .tags, .PIN .id {display:none}
tr a{color:var(--text); text-decoration:none}
tr a::after{
margin-left:5px; content:attr(href); color:var(--link);
text-decoration:underline}
li:hover a::after{display:block}
tbody tr:hover {background:var(--selection)}
td {line-height:var(--line-height);
height:var(--height);
border-bottom: 1px solid black;
padding: var(--gap) 5px;
word-break:break-word;
}
table {
border-collapse:collapse;
border: 1px dotted black;
}
hr{ border:none;
border-bottom: 1px solid black;
}
button::after {
content:" "attr(count);
position:absolute;
transform:translate(1px, -5px)
}
button{background:transparent;border:none}
p{margin:0;display:inline}
.desc {opacity:.5}
td:last-of-type {text-align:center;min-width:8ch}
td:first-of-type {text-align:center;width:4ch}
td:nth-of-type(3) {text-align:center}
.hidden{display:none}
tr,table {min-width:100%}