-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (38 loc) · 710 Bytes
/
styles.css
File metadata and controls
45 lines (38 loc) · 710 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 20px;
}
#graph-container {
width: 800px;
height: 600px;
border: 1px solid #8eb4de;
margin-bottom: 5px;
}
.controls, #edgeData, #dijkstraTables {
margin-top: 5px;
margin-bottom: 5px;
font-size: .8em;
}
.node-id-text {
/* pointer-events: none; */
cursor: default;
}
#dijkstraTables {
display: flex;
}
.tables-table {
/* width: 100px; */
border-collapse: collapse;
text-wrap: nowrap;
margin-right: 10px;
}
.tables-table th, .tables-table td {
border: 1px solid black;
width: 50%;
text-align: center;
padding-left: 2px;
padding-right: 2px;
}
.tables-table-header {
background-color: lightgray;
}