-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (81 loc) · 1.3 KB
/
style.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
list-style: none;
}
body {
height: 100vh;
width: 100vw;
overflow-x: hidden;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
nav {
display: flex;
align-items: center;
justify-content: center;
background-color: #34495e;
width: 100%;
padding: 0.4rem 0.5rem;
font-size: 0.7rem;
font-weight: 600;
}
nav * {
color: #ffffff;
}
h3 {
font-size: 1rem;
letter-spacing: 1px;
margin-right: 1rem;
font-weight: bolder;
}
.actions {
display: flex;
align-items: center;
justify-content: space-between;
}
select {
background-color: #34495e;
font-weight: bold;
}
.btns-container {
display: flex;
align-items: center;
margin-left: 1rem;
gap: 1rem;
}
button {
cursor: pointer;
background-color: inherit;
padding: 0.3rem 0.5rem;
border-radius: 0.4rem;
}
#run-algorithm {
background-color: #48c9b0;
border-color: #48c9b0;
margin-left: 0.5rem;
transition: background-color 0.2s ease-in;
}
#run-algorithm:hover {
background-color: lightgreen;
}
.grid-container {
width: 90%;
height: 100vh;
overflow-x: hidden;
margin: 0.2rem auto;
}
img {
display: none;
margin: 25% auto;
}
canvas {
display: block;
background-color: white;
}