forked from Radio-Zoom/mairlist-html-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet_mairlistCP.css
122 lines (105 loc) · 3.28 KB
/
stylesheet_mairlistCP.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
/*
* stylesheet_mairlistCP.css styling the GUI
*
* @package
* @license http://www.gnu.org/licenses/agpl.html AGPL Version 3
* @author Christian Meyer <info@dj-meggs.de>
* @copyright Copyright (c) 2017-2019 Christian Meyer (http://www.dj-meggs.de/)
*
*/
.blinken {
-webkit-animation-name: blinker;
-webkit-animation-duration: 5s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: blinker;
-moz-animation-duration: 5s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
animation-name: blinker;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
float: center;
width: 5em;
height: 2em;
margin-left: 4em;
padding: 0.5em;
background-color: red;
color: white;
text-align: center;
}
@-moz-keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
@-webkit-keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
@keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
.bereit {
display: block;
width: 5em;
height: 2em;
margin-left: 4em;
margin-right: auto;
padding: 0.5em;
background-color: lime;
color: black;
text-align: center;
}
.warnung {
-webkit-animation-name: warnblinker;
-webkit-animation-duration: 0.5s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: warnblinker;
-moz-animation-duration: 0.5s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
animation-name: warnblinker;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
display: block;
width: 10em;
height: 2em;
margin-left: 4em;
margin-right: auto;
padding: 0.5em;
background-color: orangered;
color: white;
text-align: center;
}
@-moz-keyframes warnblinker {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
@-webkit-keyframes warnblinker {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
@keyframes warnblinker {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
.inaktiv {
float: center;
width: 5em;
height: 2em;
margin-left: 4em;
padding: 0.5em;
background-color: grey;
color: darkslategrey;
text-align: center;
}