-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (59 loc) · 1007 Bytes
/
style.css
File metadata and controls
67 lines (59 loc) · 1007 Bytes
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
:root {
--width:40px;
}
body {
background-color: #212529;
font-family: 'Montserrat', sans-serif;
text-align: center;
zoom: 75%;
}
/* Navigation Bar */
.container-fluid {
padding: 1% 2% 0 2%;
text-align: left;
}
.appName {
font-size: 2rem;
font-weight: bolder;
}
.navItemsList {
margin-left: auto;
font-size: 1.5rem;
font-weight: bold;
}
.newArray {
margin-right: 1rem;
}
.navDropdown {
font-size: 1.5rem;
font-weight: bold;
}
/* Bars */
.barsCon {
margin-top: 5%;
height: 70vh;
}
.bar {
width: var(--width);
background-color: whitesmoke;
margin-right: 2px;
margin-left: 5px;
display: inline-block;
border-radius: 50px;
box-shadow: 3px 5px #888888;
transition: ease-out 0.3s;
}
/* Sort Btn */
.btn-lg {
font-size: 1.75rem;
border-radius: 50px;
box-shadow: 5px 3px #888888;
font-weight: bold;
width: 225px;
}
/* .bar:hover {
transition: 0.3s ease-out;
box-shadow: 10px 10px 10px 10px purple;
width: 3%;
margin: 0px 5px 0px 7px;
} */