-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 1.16 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
body{
margin: 0 auto;
/* Puedes cambiar el color de fondo (background-color) si lo deseas */
background-color: rgb(15, 15, 15);
color: whitesmoke;
max-width: 1200px;
min-width: 500px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
font-family: 'sans-serif' ,'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana;
}
#updateButton {
padding: 10px;
background: #1db954;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
#updateButton:hover {
background: #0f6927;
}
#nodeFilter {
width: 100%;
margin-bottom: 10px;
-webkit-appearance: none;
appearance: none;
height: 10px;
border-radius: 5px;
background: #1db954;
outline: none;
}
#nodeFilter::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ffffff;
cursor: pointer;
}
#filterValue {
display: inline-block;
margin-left: 10px;
}
#vis-1 {
display: flex;
justify-content: center;
}