forked from huanghanzhilian/c-shopping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser-styles.css
47 lines (39 loc) · 938 Bytes
/
browser-styles.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
/* ******** scrollbar ******** */
/* Firefox */
* {
scrollbar-width: thin; /* none | auto */
scrollbar-color: #ef4056 transparent;
}
@media (min-width: 1024px) {
* {
scrollbar-width: thin; /* none | auto */
scrollbar-color: #b7bdc2 transparent;
}
}
/* The first applies to the thumb of the scrollbar, the second to the track. */
/* Firefox */
/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
width: 10px; /* vertical scrollbar */
height: 10px; /* horizontal scrollbar */
}
*::-webkit-scrollbar-track {
background: #e8e8e8;
border-radius: 14px;
}
*::-webkit-scrollbar-thumb {
background: #b7bdc2;
border-radius: 14px;
}
/* Chrome, Edge, Safari */
/* ******** Remove Arrows ******** */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type='number'] {
-moz-appearance: textfield;
}