-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (41 loc) · 767 Bytes
/
style.css
File metadata and controls
50 lines (41 loc) · 767 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
.scroll-box {
overflow-y: auto;
height: 200px;
float: left;
padding: 1rem;
}
.displayBox {
width: 100%;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container {
padding: 10px;
}
body {
width: 350px;
height: 350px;
background: #b1e991;
background: -webkit-linear-gradient(to right, #b1e991, #60bfff);
background: linear-gradient(to right, #b1e991, #60bfff);
}
#copyStatus {
background-color: rgb(217, 238, 141);
opacity: 0;
}
#string {
background-color: yellow;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: red;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #b30000;
}