-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
68 lines (56 loc) · 846 Bytes
/
style.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
html {
height: 100%;
background: ghostwhite;
}
body {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
main {
display: flex;
flex: 1;
}
main .input {
background-color: lavender;
border: 1px solid #36454f;
border-right: none;
display: flex;
flex-direction: column;
}
main .input a {
padding: 0.5em 1em 0 1em;
}
main .input hr {
width: 100%;
}
main .input header {
display: flex;
padding: 0 1em 0.25em 1em;
}
main .input header > span {
flex: 1;
}
main .input header label input {
user-select: none;
}
main .input textarea {
resize: none;
width: 360px;
height: 400px;
font-family: monospace;
padding: 0.5em;
white-space: pre;
background-color: aliceblue;
flex: 1;
}
main .input textarea:focus {
outline: none;
}
main .rdf-cytoscape {
flex: 1;
}
main .rdf-cytoscape .error {
margin: 1em;
}