-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.css
More file actions
66 lines (57 loc) · 996 Bytes
/
Copy patheditor.css
File metadata and controls
66 lines (57 loc) · 996 Bytes
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
/*
Theme Name: Visual Coffee
Description: Used to style the TinyMCE editor.
*/
html {
line-height: 1.6;
font-size: 16px;
--title: #2f201d;
--text: #2f201d;
--accent: #bc945c;
}
body {
font-size: 1rem;
font-family: 'Fraunces', Georgia, serif;
font-variation-settings: 'wght' 300;
font-weight: 400;
}
a,
a:hover,
a:focus,
a.more,
a.more:hover {
transition: 0.4s all ease-in;
text-decoration: none;
color: var(--accent);
cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
color: var(--title);
line-height: 1.4;
font-variation-settings: 'wght' 700;
font-weight: bold;
}
strong, b {
color: var(--title);
font-variation-settings: 'wght' 700;
font-weight: bold;
}
blockquote {
border: 0;
padding-left: 4rem;
position: relative;
}
blockquote:before {
content: '\275d';
speak: none;
font-weight: normal;
position: absolute;
left: 0.5rem;
top: -0.5rem;
font-size: 3rem;
color: var(--text);
}
table, th, td {
border: 1px solid hsl(0, 0%, 60%);
border-collapse: collapse;
}