-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (84 loc) · 1.39 KB
/
style.css
File metadata and controls
98 lines (84 loc) · 1.39 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
*{
font-family: 'Courier New', Courier, monospace;
}
.container {
display: flex;
justify-content: center;
}
.topic{
text-align: center;
}
.world {
border: 2px solid #2e2f3e;
width: 50vw;
height: 80vh;
position: relative;
background-color: #d0d1df;
}
@media screen and (max-width: 992px) {
.world {
border: 2px solid #2f59d8;
width: 100vw;
height: 60vh;
}
}
.vertex {
background-color: #0a0abc;
color: #fff;
border-radius: 50%;
width: 20px;
height: 20px;
position: absolute;
text-align: center;
cursor: cell;
}
.cost{
width: 25px;
height: 25px;
text-align: center;
font-size: 20px;
fill: black;
text-anchor: middle;
cursor: text;
}
.colorEdge{
background-color: red;
}
.colorEdgeBegin{
background-color: green;
}
.info {
position: absolute;
top: 20vh;
left: 80vw;
}
.edgeList {
position: absolute;
top: 56vh;
left: 80vw;
background-color: #d4d5dd;
padding: 10px;
}
.edgeList:empty{
display: none;
}
#selectSe{
margin-bottom: 20px;
}
#btnDij{
margin: 10px;
background-color: #2f59d8;
color: #fff;
cursor: pointer;
font-weight: bold;
}
@media screen and (max-width: 992px) {
.info {
position: static;
padding: 50px;
}
.edgeList {
position: static;
padding-left: 50px;
}
}