-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (79 loc) · 1.34 KB
/
style.css
File metadata and controls
96 lines (79 loc) · 1.34 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
* {
box-sizing: border-box;
}
.tutorial--container{
margin: 10px 0px 60px;
}
.grid--page{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 40px 0;
gap: 40px;
}
.grid--container{
display: grid;
grid-template: auto auto / repeat(40, 0fr);
}
.node--container{
border: thin solid black;
height: 25px;
width: 25px;
}
.grid--buttons{
display: flex;
gap: 40px;
}
.grid--button{
width: 120px;
height: 40px;
background: #4D5B9E;
border-radius: 10px;
border:none;
font-family: 'Inter';
font-weight: 600;
font-size: 14px;
color: #F5F7FB;
}
.legend--start, .legend--target, .legend--path, .legend--visited, .legend--wall, .legend--weight{
height: 25px;
width: 25px;
}
.legend--start{
background: green;
}
.legend--target{
background: red;
}
.legend--path{
background: yellow
}
.legend--visited{
background: blue
}
.legend--wall{
background: black
}
.legend--weight{
background: purple
}
.nav--legend{
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
}
.legend--element{
display: flex;
align-items: center;
gap: 10px;
}
.nav--textcontainer{
display: flex;
justify-content: center;
margin: 20px 0;
}
.nav--algotext{
margin: 0px;
}