-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (99 loc) · 1.58 KB
/
styles.css
File metadata and controls
116 lines (99 loc) · 1.58 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
font: 14px helvetica neue, helvetica, arial, sans-serif;
}
#container {
display: flex;
}
#draw-area {
width: 72%;
position: absolute;
right: 20px;
top: 20px;
bottom: 20px;
border-style: solid;
}
#instruction {
right: 4%;
top: 4%;
position: absolute;
}
.list {
display: flex;
}
.hr {
border: solid;
}
#buttons {
display: flex;
flex-direction: column;
width: 25%;
height: 94vh;
margin-top: 10px;
background: aliceblue;
margin-bottom: 10px;
}
button {
margin: 10px;
background: yellow;
border-color: red;
color: orangered;
width: 70%;
height: 30px;
border-radius: 20px;
margin-left: auto;
margin-right: auto;
outline: none;
}
#input {
display: flex;
align-items: baseline;
justify-content: center;
}
#start-node-p {
font-size: 20px;
}
.input {
width: 100px;
height: 15px;
margin: 10px;
margin-top: 0px;
border-style: solid;
border-color: black;
border-radius: 20px;
text-indent: 10px;
outline: none;
}
.graph-searches {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
}
.search {
width: 60px;
}
#add-node, #add-edge {
width: 100px;
}
.not-active {
display: none;
}
#links {
display: flex;
}
.pdf {
width: 50%;
bottom: 20px;
text-align: center;
margin-top: 20%;
font-size: 18px;
text-decoration: none;
}
.readme {
width: 50%;
bottom: 20px;
text-align: center;
margin-top: 20%;
font-size: 18px;
text-decoration: none;
}