blob: 9344291d12831fbd704f8319d2abbc99b96e16d9 (
plain)
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
|
#try {
background-color: #f6f6f6;
border-radius: 0;
border: 1px solid #ccc;
margin-top: 15px;
padding: 10px 15px 5px 10px;
position: relative;
}
#try h2 {
margin-top: 0;
}
#try textarea {
border: 1px solid #999;
padding: 2px;
width: 100%;
min-height: 150px;
}
#hlcode pre {
background-color: transparent;
border-radius: 0;
}
#loading {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: auto auto;
background-color: #cccccccc;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
|