-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (63 loc) · 1.09 KB
/
styles.css
File metadata and controls
70 lines (63 loc) · 1.09 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
@import url('https://fonts.googleapis.com/css2?family=Sora&display=swap');
body
{
display:flex;
flex-direction: column;
text-align: center;
margin: auto;
background-color: #edd2cb;
font-family: 'Sora', sans-serif;
}
.array-container
{
position: absolute;
top:40px;
left: 3.5rem;
right: 3.5rem;
margin: auto;
height:550px;
display: flex;
flex-wrap: nowrap;
justify-content: center;
align-items: flex-end;
}
.array-bar
{
width: 5.5px;
position: relative;
display: inline-block;
margin: 0 1px;
}
.sorting-buttons
{
position: relative;
top: 90vh;
background-color: #543c52;
}
.myRange
{
cursor: pointer;
}
button
{
cursor: pointer;
margin: 1rem;
background-color: #f1e8e6;
color: #361d32;
font-weight: bolder;
font-size: 16px;
border: none;
border-radius: 0.3rem;
padding: 6px 14px;
font-family: 'Sora', sans-serif;
}
button:disabled
{
background-color: #361d32;
color: #f1e8e6;
}
button:hover
{
background-color: #b3b3b3;
transform: translate(0px,-5px);
}