-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
55 lines (46 loc) · 837 Bytes
/
main.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
body {
background-color: #2a2a2a;
width: 30rem;
overflow-y: auto;
}
hr{
color: white;
height: 2px;
}
.trackOff{
cursor: pointer;
border-radius: 10px;
border: 1px solid white;
transition: background-color 0.3s ease;
transition: color 0.3s ease;
}
.trackOff:hover{
background-color: white;
color: black;
}
.trackOn{
cursor: pointer;
border-radius: 10px;
background-color: white;
color: black;
transition: background-color 0.3s ease;
}
.trackOn:hover{
background-color: rgb(207, 0, 0);
}
.trackSheet{
cursor: pointer;
border-radius: 10px;
border: 1px solid white;
color: white;
transition: background-color 0.3s ease;
}
.trackSheet:hover{
background-color: rgb(207, 0, 0);
}
.hide{
display: none;
}
.pointer{
cursor: pointer;
}