3e2ca4109c338bb1aee2954c9debce19e2b1cb5e
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

1) /*
2)  * -------------------------------------------------------------------------------
3)  * This file belongs to the Webinterface of schokokeks.org Hosting
4)  * 
5)  * Written 2008-2018 by schokokeks.org Hosting, namely
6)  *    Bernd Wurst <bernd@schokokeks.org>
7)  *    Hanno Böck <hanno@schokokeks.org>
8)  *
9)  * To the extent possible under law, the author(s) have dedicated all copyright 
10)  * and related and neighboring rights to this software to the public domain 
11)  * worldwide. This software is distributed without any warranty.
12)  *
13)  * You should have received a copy of the CC0 Public Domain Dedication along 
14)  * with this software. If not, see 
15)  * http://creativecommons.org/publicdomain/zero/1.0/
16)  *
17)  * Nevertheless, in case you use a significant part of this code, we ask (but 
18)  * not require, see the license) that you keep the authors' names in place and 
19)  * return your changes to the public. We would be especially happy if you tell 
20)  * us what you're going to do with this code.
21)  * -------------------------------------------------------------------------------
22)  */
23) 
24) html {
25)         font-family: "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
26)         font-size: 14px;
27)         color: #000000;
28)         background-color: #fff;
29) }
30) 
31) 
32) body {
33)         font-family: "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
34)         font-size: 14px;
35)         color: #000000;
36)         background-color: #fff;
37) }
38) 
39) 
40) div.error {
41)         color: #FF0000;
42)         border: 2px solid #000000;
43)         background-color: #FFFFFF;
44)         margin: 10px;
45)         padding: 10px;
46) }
47) 
48) div.success {
49)         color: #282;
50)         border: 2px solid #282;
51)         background-color: #FFFFFF;
52)         margin: 5px;
53)         padding: 5px;
54)         font-weight: bold;
55) }
56) 
57) p.warning {
58)         padding: 4px;
59)         color: #000000;
60)         border: 1px solid #FF0000;
61)         background-color: #FFFFFF;
62) }
63) 
64) span.warning {
65) 	color:#FF0000;
66) }
67) 
68) a img {
69)   border: 0px;
70) }
71) 
72) p.admininfo {
73)   margin: 3px;
74)   margin-bottom: 1.5em;
75)   padding: 0.5em;
76)   border: 1px solid red;
77)   background-color: #fdd;
78) }
79) 
80) p.addnew,p.delete {
81)   margin-top: 1.5em;
82)   margin-bottom: 2em;
83) }
84) 
85) p.addnew a {
86)   color: #257f00;
87)   font-size: 110%;
88)   font-weight: bold;
89)   padding: 5px;
90)   min-height: 18px;
91)   padding-left: 25px;
92)   background-image: url('../../images/add.png');
93)   background-position: 0 5px;
94)   background-repeat: no-repeat;
95) }
96) 
97) p.addnew a:hover {
98)   text-decoration: none;
99)   padding-bottom: 0;
100)   border-bottom: 2px solid #257f00;
101) }
102) 
103) 
104) p.delete a {
105)   color: #b22;
106)   font-size: 110%;
107)   font-weight: bold;
108)   padding: 5px;
109)   min-height: 18px;
110)   padding-left: 25px;
111)   background-image: url('../../images/delete.png');
112)   background-position: 0 5px;
113)   background-repeat: no-repeat;
114) }
115) 
116) p.delete a:hover {
117)   text-decoration: none;
118)   padding-bottom: 0;
119)   border-bottom: 2px solid #b22;
120) }
121) 
122) 
123) p.userinfo {
124)   margin: 3px;
125)   margin-top: 1.5em;
126)   margin-bottom: 1.5em;
127)   padding: 0.5em;
128)   border: 1px solid black;
129)   background-color: #b2c2cb;
130)   /*padding-left: 40px;
131)   background-image: url('../images/user.png');
132)   background-position: left;
133)   background-repeat: no-repeat;
134)   background-position: 0.5em 0.5em;*/
135)   min-height: 36px;
136) }
137) 
138) input.usageoption {
139) 	margin-top: 1em;
140) }
141) 
142) div.confirmation {
143) }
144) 
145) div.confirmation div.question {
146)         padding: 10px;
147)         color: #000000;
148)         border: 1px solid #FF0000;
149)         background-color: #FFFFFF;
150)         font-weight: bold;
151)         margin-bottom: 1em;
152) }
153) 
154) div.confirmation p.buttons input {
155)         width: 10em;
156) }
157) 
158) 
159) .login_label {
Bernd Wurst Gestaltung der Login-Seite...

Bernd Wurst authored 5 years ago

160)         display: block;