-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
76 lines (61 loc) · 888 Bytes
/
index.css
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
body {
margin: 0;
}
.page-container {
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
}
.page-content {
flex: 1;
display: flex;
}
.query, .score {
flex: 1;
width: 50%;
display: flex;
flex-direction: column;
padding: 10px;
}
.tab-content {
flex: 1;
display: flex;
flex-direction: column;
}
.tab-content > .tab-pane.active {
display: flex;
}
.tab-pane {
flex-direction: column;
flex: 1;
}
.input {
flex: 1;
}
.output {
flex: 1;
display: flex;
flex-direction: column;
}
.output svg {
flex: 1;
}
#output .note.or use {
fill: transparent;
}
/* @font-face {
font-family:"Leipzig";
src: url("/web/Leipzig-5.2.ttf");
} */
.controls {
padding: 10px;
}
.input {
font-size: 14px;
white-space: nowrap;
font-family: "Courier New", Courier, monospace;
}
.query .search-controls {
margin-bottom: 10px;
}