forked from proginosko/LeechBlockNG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (98 loc) · 1.53 KB
/
style.css
File metadata and controls
124 lines (98 loc) · 1.53 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
122
123
124
/* LeechBlock blocking/delaying page style */
@media (prefers-color-scheme: light) {
body {
background: #fff;
}
}
@media (prefers-color-scheme: dark) {
body {
background: #000;
}
}
body {
padding:30px 0px;
color: #000;
font: normal 16px "Open Sans", Arial, sans-serif;
text-align: center;
}
div {
margin-top: 40px;
}
h1 {
font-size: 24px;
font-weight: 300;
}
a {
color: #2ca089;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
blockquote {
font-weight: bold;
}
input {
background: #fff;
color: #000;
border: 1px #aaa solid;
border-radius:15px;
padding: 8px 10px;
margin: 10px 0px;
}
button {
background: #eee;
color: #333;
border: none;
padding:6px 12px;
margin: 2px 0px;
border-radius:50px;
animation-name: button-unhover;
animation-duration: 0.2s;
}
button:hover:enabled {
background: #ddd;
animation: button-hover;
animation-duration: 0.2s;
}
button:active:enabled {
background: #ccc;
}
@keyframes button-hover {
from {background-color: #eee;}
to {background-color: #ddd;}
}
@keyframes button-unhover {
from {background-color: #ddd;}
to {background-color: #eee;}
}
.logo {
width:408px;
animation: leechblock;
animation-duration: 1s;
}
@keyframes leechblock {
from {width:100%;}
to {width:408px;}
}
.keyword {
font-weight: bold;
}
.time {
font-weight: bold;
}
.delay {
font-weight: bold;
}
.error {
background: #f00;
}
.support {
color: #777;
font-size: 14px;
font-style: italic;
}
.support a {
color: #777;
text-decoration: underline;
}