-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (70 loc) · 1.14 KB
/
styles.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
77
78
79
80
81
* {
margin: 0 0;
padding: 0 0;
box-sizing: border-box;
font-family: 'Roboto Mono', monospace;
}
html, body {
position: relative;
width: 100%;
height: 100%;
}
.container {
display: flex;
width: 100%;
height: 100%;
overflow: auto;
}
.logo {
font-size: 20px;
font-weight: bold;
}
.title {
margin-top: 16px;
font-size: 16px;
}
.input-container {
display: flex;
flex-direction: column;
flex: 0 0 300px;
padding: 16px;
margin-right: 50px;
}
.query {
flex: 1;
width: 100%;
height: 100%;
margin-top: 20px;
border: none;
border: 1px solid #ccc;
border-radius: 3px;
}
.update-btn {
margin-top: 10px;
padding: 10px 16px;
background: none;
border: 1px solid #2196F3;
color: #2196F3;
border-radius: 3px;
cursor: pointer;
font-weight: bold;
}
.graph {
flex: 1
}
.node rect {
cursor: pointer;
fill: #fff;
fill-opacity: 0.5;
stroke: #3182bd;
stroke-width: 1.5px;
}
.node text {
font: 10px sans-serif;
pointer-events: none;
}
.link {
fill: none;
stroke: #9ecae1;
stroke-width: 1.5px;
}