blob: 2c4535b1a107ac26f9221b80ea0d46db3949064d (
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
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
|
@media (min-width: 500px) {
.rsp-mobileonly {
display: none;
}
}
@media (max-width: 500px) {
.rsp-desktoponly {
display: none;
}
}
.mdc-drawer .mdc-list-item--activated, .mdc-drawer .mdc-list-item--activated * {
color: var(--mdc-theme-primary) !important;
}
#menuitems .mdc-button .menubutton {
max-width: 124px;
}
@media (max-width: 1070px) {
#menuitems .mdc-button:nth-child(8) {
display: none;
}
}
@media (max-width: 986px) {
#menuitems .mdc-button:nth-child(7) {
display: none;
}
}
@media (max-width: 915px) {
#menuitems .mdc-button:nth-child(6) {
display: none;
}
}
@media (max-width: 874px) {
#menuitems .mdc-button:nth-child(5) {
display: none;
}
}
@media (max-width: 832px) {
#menuitems .mdc-button:nth-child(4) {
display: none;
}
}
@media (max-width: 748px) {
#menuitems .mdc-button:nth-child(3) {
display: none;
}
}
@media (max-width: 674px) {
#menuitems .mdc-button:nth-child(2) {
display: none;
}
}
@media (max-width: 566px) {
#menuitems .mdc-button:nth-child(1) {
display: none;
}
}
@media (max-width: 860px) {
.rsp-widgetbar {
display: initial;
}
#page-elements #page-content-widgets-desktop {
display: none;
}
#page-elements #page-content-widgets-mobile {
border-radius: 0 !important;
margin: 0 !important;
}
#page-elements {
grid-template-columns: 1fr;
}
#page-elements #page-content-inner {
margin: 0;
border-radius: 0
}
#page-content-colorbar {
border-radius: 0;
}
#footer-container {
margin-top: -20px;
}
#page-footer {
padding: 15px 25px;
}
#page-banner {
height: 75px;
}
#page-content-colorbar {
margin-top: 0;
}
}
@media (min-width: 860px) {
.rsp-simplifiedonly {
display: none;
}
}
@media (max-width: 400px) {
#page-footer-title-inner {
display: none;
}
}
|