-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
183 lines (155 loc) · 3.21 KB
/
default.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* lib@home, framework to develop distributed calculations.
* Copyright (C) 2020 Dirk "YouDirk" Lehmann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/* *************************************************************** */
img {
border-style: none;
}
li {
margin-top: 6px;
margin-bottom: 6px;
}
a {
outline: 0;
color: #7000a0;
text-decoration: none;
border-style: none;
}
a:hover {
color: #b000f0;
}
table {
border-spacing: 0px;
border-style: none;
}
td {
border-style: none;
padding: 5px;
}
body {
padding: 0px;
margin: 0px;
background-color: #f8f8f8;
font-family: Verdana;
font-size: 16px;
color: #404040;
text-align: left;
}
/* *************************************************************** */
div#page {
margin: 20px auto;
padding: 10px 10px 10px;
border: 2px solid #202020;
background-color: #60c0ff;
min-width: 320px;
max-width: 800px;
}
table#title_table {
}
table#title_table td {
padding: 0px 10px 0px 0px;
}
img#title_img {
background-color: transparent;
height: 80px;
}
h2#title_h2 {
margin: 0px 0px 3px;
}
span#titledescr_span {
color: #303050;
font-style: italic;
font-size: 12px;
}
ul#linklist_ul {
list-style-type: none;
padding-left: 0px;
}
a.version_a {
font-weight: bold;
color: #e07000;
}
a:hover.version_a {
color: #ff8000;
}
div#footer_div {
text-align: center;
font-size: 12px;
}
div#footer_div img {
margin-top: 6px;
height: 20px;
}
div#footer_div a {
font-weight: bold;
color: #1050a0;
white-space: nowrap;
}
div#footer_div a:hover {
color: #3070c0;
}
div#content_div {
margin: 10px 0px;
padding: 10px 20px;
background-color: #a0e0ff;
border: 1px solid #4080a0;
border-radius: 6px;
}
/* ***************************************************************
* Overrides for mobile devices
*/
@media only screen and (max-width: 840px) {
div#page {
margin: 0px;
padding: 10px 0px;
border-style: none;
max-width: none;
}
div#content_div {
border-style: solid none;
}
h2#title_h2 {
font-size: 17px;
}
} /* @media only screen and (max-width: 900px) */
@media only screen and (max-width: 480px) {
div#page {
padding: 5px 0px;
}
div#content_div {
margin: 5px 0px;
padding: 5px 10px;
}
img#title_img {
height: 40px;
}
h2#title_h2 {
font-size: 13px;
}
span#titledescr_span {
font-size: 7px;
}
body {
font-size: 11px;
}
div#footer_div {
font-size: 9px;
}
div#footer_div img {
height: 16px;
}
} /* @media only screen and (max-width: 600px) */
/* *************************************************************** */