Broken project to implement a cross-protocol browser in textual
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
|
#toolbar {
layout: grid;
grid-size: 5 1;
grid-columns: 4 4 4 4 1fr;
grid-gutter: 1;
height: 3;
dock: top;
}
#toolbar.mobile {
grid-size: 2 1;
grid-columns: 4 1fr;
grid-gutter: 0;
}
#toolbar.mobile Button {
display: none;
}
#toolbar.mobile Button.mobile {
display: block;
}
.header {
content-align: center middle;
}
.h1.header {
border:double white;
text-style: bold;
}
.h2.header {
border-bottom: solid white;
text-style: bold;
}
.h3.header {
}
Preformatted {
height: auto;
border: round white;
}
Preformatted > Static {
width: auto;
}
HighlightedCode {
overflow: auto;
max-height: 100%;
}
HighlightedCode > * {
width: auto;
height: auto;
}
|