style.css
1.55 KB
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
.markdown {
float: left;
padding: 1em;
border-radius: .5em;
border: 1px solid #ddd;
background: #f7f7f7;
}
.markdown p {
text-align: justify;
text-indent: .5em;
margin-block: .5em;
}
.markdown > div:first-child {
position: fixed;
width: inherit;
z-index: 10;
}
.markdown > div:first-child > div {
position: relative;
left: .5em;
width: inherit;
}
.markdown > div:first-child > pre {
white-space: pre-wrap;
height: 15em;
width: calc(100% - 10px);
overflow-y: auto;
overflow-x: hidden;
background: #ffffff;
border-radius: .35em;
border: 2px solid #bbb;
margin: 2px 0px;
opacity: .95;
}
.markdown > div:first-child > div > div {
display: inline;
}
.markdown > div:first-child > div ul {
height: 15em;
list-style-type: none;
margin: 2px 0px;
overflow-y: auto;
padding-left: 0px;
position: absolute;
scroll-behavior: auto;
top: 1.8em;
}
.markdown blockquote {
border-left: 5px solid #ccc;
margin: .5em 10px;
padding: .5em 10px;
}
.markdown blockquote p {
text-align: left;
text-indent: 0;
margin-block: 0;
}
.markdown .footnote-definition > * {
display: inline;
}
@keyframes spinner {
0% {
transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
100% {
transform: translate3d(-50%, -50%, 0) rotate(360deg);
}
}
.spin::before {
animation: 1.5s linear infinite spinner;
animation-play-state: inherit;
border: solid 5px #cfd0d1;
border-bottom-color: #1c87c9;
border-radius: 50%;
content: "";
height: 1.5em;
width: 1.5em;
position: absolute;
top: 10%;
left: 1.5em;
transform: translate3d(-50%, -50%, 0);
will-change: transform;
}