-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
65 lines (57 loc) · 1.16 KB
/
index.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
* {
font-family: "Sonsie One", system-ui;
font-weight: 400;
font-style: normal;
color: #fff;
}
nav {
height: 150px;
width: 100%;
background-color: blueviolet;
border-radius: 50px;
display: flex;
justify-content: space-evenly;
align-items: center;
font-size: 15px;
}
.button {
height: 50px;
width: 120px;
padding: 2px;
border-radius: 20px;
border: none;
margin: 2px;
cursor: pointer;
background-color: white;
color: #000;
}
.button:hover {
height: 60px;
width: 130px;
transition: height 0.5s, width 0.5s;
}
body {
height: 100%;
width: 99%;
margin: 10px;
}
.container {
display: flex;
justify-content: center;
flex-wrap: nowrap;
margin: 25px 100px;
height: 100%;
/* background-color: #000; */
}
.bar {
background: linear-gradient(216deg, #5DACD4, #A7DBF3, #83B0DE, #4C75BA);
width: 20px;
color: white;
margin: 2px;
}
.traverse {
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 121, 54, 1) 35%, rgba(0, 212, 255, 1) 100%);
}
.sorted {
background: linear-gradient(216deg, #0E2A4D, #39648D, #83B0DE, #4C75BA);
}