-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-site_stylesheet.html
210 lines (193 loc) · 4.8 KB
/
web-site_stylesheet.html
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!--
Copyright 2017 Lars Bremer
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
//////////////////////////////////////////////////////////////////////////////////////////////////////
// //
// CSS Stylesheet fuer die Websiten //
// //
// V1.0 2017-02-27 LB Initiale Version zum internen Test //
// //
//////////////////////////////////////////////////////////////////////////////////////////////////////
-->
<!DOCTYPE html>
<!-- jQuery UI styles einbinden -->
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<style>
/* Allgemeine Siteneinstellungen */
body {
font-family: Arial, sans-serif;
font-size: 14px;
margin: 0px 00px 0px 30px;
}
/* Site im Einstz mit rotem Hintergrund */
body.onduty{
background-color: #FFDDDD
}
body.OK{
background-color: #00FF00
}
body.ERR{
background-color: #FF0000
}
/* Ueberschriften formattieren */
h1 {
font-size: 32px;
font-weight: bold;
}
h2 {
font-size: 20px;
font-weight: normal;
text-decoration: underline;
}
h3 {
font-size: 18px;
margin-bottom: 5px;
}
/* Navigationsmenue */
ul.menu {
list-style-type: none;
width: 512px;
margin: 0px 0px 30px;
padding: 0;
overflow: hidden;
background-color: #D8D8D8;
}
li.menu {
float: left;
width: 170px;
border-right: 1px solid #FFFFFF;
}
li.menu:last-child {
border-right: none;
}
li.menu a {
display: block;
color: black;
text-align: center;
text-decoration: none;
padding: 10px 15px 10px 15px;
}
li.menu a.active {
background-color: #000000;
font-weight: bold;
color: white;
}
li.menu a:hover:not(.active) {
background-color: #A4A4A4;
color: white;
}
/* Grundeinstellungen Tabellen */
table {
text-align: center;
border: 2px solid black;
border-collapse: collapse;
}
/* spezielles Format fuer Logliste */
table.loglist {
width: 50%;
}
/* Alle Kopfzeilen ws/sw */
th {
font-size: 16px;
font-weight: bold;
background-color: black;
color: white;
padding: 5px 10px 5px 10px;
}
/* Liste Hoverbar */
tr:hover {background-color: #f5f5f5}
/* Normale Datenzelle */
td {
padding: 5px;
border-bottom: 1px solid #A4A4A4
}
/* Datenzelle fue Zusammenfassung mit grossen Zahlen */
td.bignr {
font-size: 20px;
font-weight: bold;
border: 1px solid black;
}
/* Datenzelle beim Laden der Site */
td.tmp {
font-size: 10px;
font-style: italic;
font-weight: lighter;
}
/* Datenzellen mit Namen in der Liste rechtsbuendig */
td.name {
font-weight: bold;
text-align: left;
}
/* Hintergrundfarben je nach Status */
.S2 {
background-color: #74DF00;
}
.MAPAS2 {
font-weight: normal;
color: #848484;
background-color: #9FF781;
}
.S3 {
background-color: #FACC2E;
}
.MAPAS3 {
font-weight: normal;
color: #848484;
background-color: #FBE397;
}
.S6 {
background-color: #FA5858;
}
/* Resetbutton fuer Einsatz beenden */
button.reset {
width: 300px;
margin: 10px 0px 20px 30px;
display: inline-block;
padding: 8px 20px 8px 20px;
font-size: 20px;
cursor: pointer;
text-align: center;
outline: none;
color: black;
background-color: #FF8000;
border: none;
border-radius: 10px;
box-shadow: 0 5px #999;
}
button.reset:hover {
background-color: #C8FE2E;
}
button.reset:active {
background-color: #01DF01;
box-shadow: 0 2px #666;
transform: translateY(2px);
}
/* Link zur Ubersichtsseite von OK/ERR Seite */
a.linktomain {
font-size: 20px;
cursor: pointer;
color: blue;
}
/* Fusszeile */
#footer {
font-size: 12px;
font-style: italic;
font-weight: lighter;
margin-top: 30px;
}
/* Hinweis auf Ursprung */
#TM {
font-size: 10px;
color: blue;
font-variant: small-caps;
margin-top: 12px;
}
</style>