forked from Stigmatoz/web-activity-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebact.css
More file actions
80 lines (67 loc) · 1.15 KB
/
webact.css
File metadata and controls
80 lines (67 loc) · 1.15 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body {
font-family: "Segoe UI", Verdana, sans-serif !important;
color: #262626;
}
.list-of-site{
height: 400px;
overflow-y: auto;
}
.inline-flex{
display: inline-flex;
}
.span-url{
width: 200px;
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 12px;
cursor: pointer;
}
.span-active-url{
font-weight: 700;
}
.span-url:hover{
color: rgb(107, 107, 107);
}
.span-total{
width: 260px;
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 12px;
font-weight: 600;
cursor: pointer;
}
.span-percentage{
width: 40px;
color: rgb(78, 78, 78);
font-size: 11px;
}
.span-time{
margin-left: 10px;
width: 80px;
font-weight: 500;
}
.favicon{
margin-right:5px;
}
hr {
border: none;
background-color: rgb(223, 222, 222);
height: 2px;
}
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
::-webkit-scrollbar
{
width: 7px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
}