blob: 9ee1303900d3a9f47cf78245066eb2cb74c0ee51 (
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
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
|
body.page-content {
height: 100%;
width: auto;
margin-top: 20px;
background-size: cover;
background-position: center;
}
img {
float: right;
}
ol {
display: flex;
flex-direction: column;
}
#question,
#output,
#outevt {
white-space: pre-wrap;
}
div.row {
display: flex;
flex-direction: row;
}
div.col1 {
flex-basis: 0;
flex-grow: 1;
width: 100%;
}
div.col2 {
flex-basis: 0;
flex-grow: 1;
width: 30ch;
}
button {
margin-right: 10px;
padding: 6px 8px;
font-size: large;
}
pre {
outline: 1px solid #ccc;
padding: 5px;
margin: 5px;
background-color: white;
opacity: 0.85;
min-height: 5pc;
max-height: 5pc;
overflow: auto;
}
.string {
color: green;
}
.number {
color: darkorange;
}
.boolean {
color: blue;
}
.null {
color: magenta;
}
.key {
color: red;
}
dialog {
padding: 0;
border: 0;
border-radius: 0.6rem;
box-shadow: 0 0 1em black;
}
dialog::backdrop {
/* make the backdrop a semi-transparent black */
background-color: rgba(0, 0, 0, 0.4);
}
h3.dialogheader {
background-color: lightgreen;
padding: 1ch;
}
footer {
display: flex;
align-items: center;
justify-content: center;
}
|