-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsave.css
62 lines (49 loc) · 834 Bytes
/
save.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
body {
display: flex;
background-color: cadetblue;
height: 95vh;
}
#char-list{
height: 90vh;
overflow-y: scroll;
list-style-type: none;
}
#fav-list {
list-style-type: none;
}
span:hover {
color: yellow;
}
span, #search, button {
cursor: pointer;
}
#search-box {
width: 250px;
}
img {
border-radius: 8px;
}
li img {
border: 1px solid #ddd;
border-radius: 4px;
padding: 5px;
width: 50px;
}
#main {
margin-left: 5vw;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background:black;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
display: default;
background:rgb(54, 56, 58);
}