-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
90 lines (87 loc) · 1.89 KB
/
style.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
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
@font-face {
font-family: 'Slabo 27px';
font-style: normal;
font-weight: 400;
src: local('Slabo 27px'),
local('Slabo27px-Regular'),
url(moz-extension://__MSG_@@extension_id__/fonts/Roboto-Regular.ttf) format('ttf')
url(chrome-extension://__MSG_@@extension_id__/fonts/Roboto-Regular.ttf) format('ttf');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
#speed-read-container {
background: #ffffff;
z-index: 999999;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
display: none;
}
#speed-read-container.active {
display: block;
}
#speed-read-center-text {
font-family: 'Slabo 27px';
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-50%);
font-size: 3em;
}
#speed-read-time-remaining {
font-family: 'Slabo 27px';
font-size: 1em;
font-stretch: ultra-condensed;
line-height: 0;
vertical-align: middle;
font-weight: bold;
margin-left: 1em;
}
.speed-read-nav {
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 10px 15px 0;
line-height: 1;
}
.speed-read-button-group svg {
width: 3em;
height: 3em;
vertical-align: middle;
}
.speed-read-button-group span {
cursor: pointer;
}
.speed-read-float-left {
float: left;
}
.speed-read-float-right {
float: right;
}
.speed-read-clearfix {
clear: both;
}
.speed-read-range {
display: block;
width: 100%;
}
.speed-read-range input {
width: 100%;
}
.speed-read-range input:active,
.speed-read-range input::-moz-focus-outer {
outline: none;
border: none;
}
.speed-read-image-caption {
font-size: .3em;
font-weight: bold;
text-align: center;
}
@media print {
#speed-read-container.active {
display: none !important;
}
}