-
Notifications
You must be signed in to change notification settings - Fork 0
/
diff.css
95 lines (78 loc) · 1.54 KB
/
diff.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
/* @import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');
*/
html, body {
f/ont: normal 14px/1.4 sans-serif;
background: #f1f1f1;
}
h4 {
f/ont-family: 'Comic Neue', cursive;
f/ont-weight: 700;
f/ont-size: 26px;
}
p {
margin: 0 0 1rem;
f/ont-family: 'Comic Neue', cursive;
f/ont-weight: 400;
f/ont-size: 20px;
}
p.bold {
f/ont-weight: 700;
}
.blockquote {
background: rgb(188 188 188 / 30%);
border-left: 3px solid black;
padding: 0 15px;
}
table {
border-collapse: collapse;
width: 100%;
}
/*
.card {
background: #fff;
border: 1px solid #ccc;
border-radius: 3px;
margin: 1rem;
padding: 1rem;
}
.card .card {
margin: 0;
f/lex: 1 0 0;
border: thin solid lightgrey;
background: wheat;
}
*/
.row {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: nowrap;
align-items: stretch;
width: 100%;
}
.col {
display: flex;
flex: 1 /* 0 0 */;
flex-direction: column;
flex-basis: auto;
margin-right: 8px;
padding: 0.5em;
border: thin solid lightgrey;
border-radius: 5px;
}
.current-document ins {
background: lightgreen;
text-decoration: none;
}
.current-document del {
background: pink;
}
.system-generated del {
visibility: hidden;
}
.system-generated ins {
text-decoration: none;
}
.system-generated ins ~ del {
display: none;
}