-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (71 loc) · 1.07 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
body {
min-height: 100%;
background: #fff;
color: #61dafb;
background-image:url(bg.png);
}
body {
font-size: 1.4rem;
text-rendering: optimizeLegibility;
font-family: "Poppins", sans-serif;
display: flex;
flex-wrap: wrap;
justify-content: center;
position: relative;
}
body,
ul,
ol,
dl {
margin: 0;
}
#navbar {
height:50px;
width:100%;
display: flex;
justify-content: center;
}
button {
height: 50px;
border:1px solid ;
background-color:#282c34;
color:#61dafb;
font-weight: bold;
font-size: 1.50rem;
margin: 2px;
}
button:hover{
background-color:#61dafb;
color:#282c34;
cursor:pointer;
}
#bars {
height:500px;
background-color:rgba(40,44,52,0.75);
opacity: 70%;
width:75%;
transform: rotateX(180deg);
margin: 30px 0px 0px 0px;
display: flex;
}
.array-element {
width:100%;
height: 400px;
margin: 0px 0.5rem;
opacity: 100%;
}
#sliders
{
display: flex;
width:100%;
justify-content: space-evenly;
}
#logo {
opacity: 100%;
width: 100%;
height: 100%;
}
#refresh{
background-color: #282c34;
border-radius: 2px;
}