-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (68 loc) · 1.21 KB
/
styles.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
html, body {
margin: 5px;
padding-bottom: 2em;
background: #7cc6fe;
font-family: sans-serif;
}
.intro {
text-align: center;
margin-left: 10vw;
margin-right: 10vw;
padding-top: 5vh;
}
.intro h1 {
font-size: 2.75em;
color: azure;
}
.intro h3 {
color: azure;
}
.slider-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.slider {
text-align: center;
padding-right: 2em;
padding-left: 2em;
}
.slider h3 {
color: azure;
}
.algo-selection-container {
padding: 10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.algo-selection-container label {
font-size: large;
color: azure;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
display: inline-block;
font-size: 16px;
margin: 1em;
transition: all 200ms ease;
}
.button:hover {
transform: scale(1.15);
background: #e2bd45;
border-color: rgb(252, 0, 0);
border-width: 0.1rem;
}
.sorting-button-container {
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.canvas-container {
text-align: center;
}