-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (49 loc) · 888 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (49 loc) · 888 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
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro&display=swap');
body {
font-family: 'Source Serif Pro', serif;
}
a {
color: #ff7777;
text-underline-offset: 1px;
}
.container {
max-width: 800px;
margin: auto;
}
.paper {
background-color: #fafafa;
margin: 20px auto;
padding: 10px 20px;
border-radius: 10px;
border: 1px solid #ececec;
line-height: 30px;
word-wrap: break-word;
}
.paper > * {
text-decoration: underline;
text-decoration-color: #ffcdcd;
text-decoration-thickness: 2px;
text-underline-offset: 8px;
}
.title {
font-style: italic;
margin-bottom: 0;
}
.subtitle {
color: #6e6e6e;
margin-top: 0;
}
.center {
text-align: center;
}
.text-input {
width: 100%;
border: 1px solid #ececec;
border-radius: 10px;
padding: 10px;
}
.author-credits {
color: #6e6e6e;
font-size: 13px;
text-align: end;
}