style.css
2.07 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
.upload {
float: left;
width: 400px;
padding: 1em;
border-radius: .5em;
border: 1px solid #ddd;
background: #f7f7f7;
}
.upload ul {
padding-left: 5px;
}
.upload > div > button {
float: right;
}
.upload > ul {
max-height: 15em;
width: calc(100% - 10px);
overflow-y: auto;
overflow-x: hidden;
background: #ffffff;
border-radius: .35em;
border: 2px solid #bbb;
cursor: default;
}
.upload > ul > li {
display: flex;
border: 1px solid black;
width: fit-content;
}
.upload > ul > li > ul > li {
display: block;
}
.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;
}