blob: 75d4ec79d1edeb68bf0d8497e6979f7457ca9976 (
plain)
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
|
@media (max-width: 1199px) and (min-width: 401px) {
body {
font-size: 32pt;
}
div.content_section_text p::first-letter,div.content::first-letter {
font-size: 37pt;
}
/* https://css-tricks.com/responsive-data-tables/ */
/*
* Force table to not be like tables anymore
*/
table, thead, tbody, th, td, tr {
display: block;
}
/*
* Hide table headers (but not display: none;, for accessibility)
*/
thead tr {
position: absolute;
top: -9999%;
left: -9999%;
}
td {
/* Behave like a "row" */
border: none;
position: relative;
padding-left: 50%;
}
td::before {
/* Now like a table header */
position: absolute;
/* Top/left values mimic padding */
top: 6px;
left: 6px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
}
iframe {
width: 100%;
aspect-ratio: 1/1!important;
}
}
@media only screen and (orientation: landscape)
and (min-width: 992px)
and (max-width: 1199px) {
body {
font-size: 14pt;
}
}
@media only screen and (orientation: landscape)
and (min-width: 768px)
and (max-width: 991px) {
body {
font-size: 14pt;
}
}
@media only screen and (orientation: landscape)
and (min-width: 480px)
and (max-width: 767px) {
body {
font-size: 11pt;
}
}
@media only screen and (orientation: landscape)
and (max-width: 479px) {
body {
font-size: 8pt;
}
}
@media only screen and (orientation: landscape)
and (min-device-width : 375px)
and (max-device-width : 667px) {
body {
font-size: 9.5pt;
}
}
|