-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
57 lines (56 loc) · 838 Bytes
/
common.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
@media (max-height: 255px) {
body {
font-size:12px;
}
img.knob {
width:16px;
}
}
@media (min-height: 256px) and (max-height: 356px) {
body {
font-size:14px;
}
img.knob {
width:24px;
}
}
@media (min-height: 357px) and (max-height: 576px) { /* SONY Reader PRS-T1 800x562 */
body {
font-size:16px;
}
img.knob {
width:28px;
}
}
@media (min-height: 577px) and (max-height: 743px) {
body {
font-size:20px;
}
img.knob {
width:38px;
}
}
@media (min-height: 744px) and (max-height: 899px) {
body {
font-size:25px;
}
img.knob {
width:52px;
}
}
@media (min-height: 900px) {
body {
font-size:35px;
}
img.knob {
width:74px;
}
}
.alarm {
animation:blinkingText 1s infinite;
}
@keyframes blinkingText{
0%{ color: white; }
50%{ color: transparent; }
100%{ color: white; }
}