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
121 lines (102 loc) · 1.84 KB
/
webact.css
File metadata and controls
121 lines (102 loc) · 1.84 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
font-family: "Segoe UI", Tahoma, sans-serif !important;
color: #262626;
}
.margin-top-7{
margin-top: 7px;
}
.list-of-site{
overflow-y: auto;
}
.inline-flex{
display: inline-flex;
}
.inline-flex:hover{
font-size: 13px;
font-weight: 650;
}
.span-url{
width: 320px;
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 13px;
cursor: pointer;
}
.span-active-url{
font-weight: 700;
}
.span-total{
width: 405px;
text-decoration: none;
color: rgb(0, 0, 0);
margin-left: 5px;
font-size: 12px;
font-weight: 700;
cursor: pointer;
}
.span-percentage{
width: 70px;
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;
}
.title{
font-size: 17px;
font-weight: 650;
margin: 5px;
text-align: center;
}
input[type="button"]{
border: none;
color: white;
padding: 6px 10px;
text-align: center;
display: inline-block;
font-size: 12px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
text-decoration: none;
text-transform: uppercase;
border-radius: 6px;
border: 1px solid #0099CC;
background: transparent;
color: #0099CC;
}
input[type="button"]:hover {
background-color: #008CBA;
color: white;
}
input[type="button"].active {
background-color: #008CBA;
color: white;
}