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
96
97
98
99
100
101
102
|
/*
* This is a stripped down version of the style.css found over at
* https://stackedit.io
*/
body {
margin: 0;
}
html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body, html {
color: rgba(0, 0, 0, 0.75);
font-size: 16px;
font-family: Lato, Helvetica Neue, Helvetica, sans-serif;
font-variant-ligatures: common-ligatures;
line-height: 1.67;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
h1:after {
content: "";
display: block;
position: relative;
top: 0.33em;
border-bottom: 1px solid hsla(0, 0%, 50%, 0.33);
}
h1, h3 {
margin: 1.8em 0;
line-height: 1.33;
}
p {
margin: 1.2em 0;
}
a {
background-color: transparent;
color: #0c93e4;
text-decoration: underline;
text-decoration-skip: ink;
-webkit-text-decoration-skip: objects;
}
a:focus, a:hover {
text-decoration: none;
}
code {
background-color: rgba(0, 0, 0, 0.05);
border-radius: 3px;
padding: 2px 4px;
font-family: Roboto Mono, Lucida Sans Typewriter, Lucida Console,
monaco, Courrier, monospace;
font-size: 0.85em;
font-family: monospace, monospace;
font-size: 1em;
}
code * {
font-size: inherit;
}
button {
overflow: visible;
text-transform: none;
}
input {
overflow: visible;
}
textarea {
overflow: auto;
}
button, input, textarea {
font-family: sans-serif;
font-size: 100%;
line-height: 1.15;
margin: 0;
}
.stackedit__html {
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
max-width: 70%;
}
|