Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/explorer/src/index.css
1692 views
1
* {
2
margin: 0;
3
padding: 0;
4
}
5
6
.hbox {
7
display: flex;
8
flex-direction: row;
9
}
10
11
html,
12
body {
13
width: 100%;
14
height: 100%;
15
}
16
17
.highlight {
18
white-space: pre;
19
font-family: monospace;
20
}
21
.hovered {
22
}
23
.light-text {
24
color: #eeeeee;
25
}
26
.dark-text {
27
color: #101010;
28
}
29
30
#wat {
31
flex: 1;
32
height: 100%;
33
overflow: scroll;
34
}
35
36
#clif {
37
flex: 1;
38
height: 100%;
39
overflow: scroll;
40
}
41
42
#asm {
43
flex: 1;
44
height: 100%;
45
overflow: scroll;
46
}
47
48