c3cd0ead0e8a3f70e6ca1fbe213374d4b36ec7a9
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 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) 
25) div.contact-list {
26)     display: flex;
27)     flex-direction: row;
28)     flex-wrap: wrap;
29) }
30) 
31) div.contact {
32)     border: 1px solid black;
33)     width: 18em;
34)     margin: 1em;
Bernd Wurst Security

Bernd Wurst authored 6 years ago

35)     padding: 3px 10px;    
36) }
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

37) 
38) a.contacts-choose {
39)     color: initial;
40)     text-decoration: none;
41) }
Bernd Wurst Adressdarstellung gleichmäß...

Bernd Wurst authored 6 years ago

42) 
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

43) a div.contact {
44)     min-height: 10em;
45) }
Bernd Wurst Adressdarstellung gleichmäß...

Bernd Wurst authored 6 years ago

46) 
47) a div.contact-mainlist {
48)     min-height: 15em;
49) }
50) 
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

51) a div.contact:hover {
52)     border: 2px solid blue;
53)     padding: 2px 9px;
54) }
55) 
56) a.contacts-choose:hover {
57)     color: initial;
58)     text-decoration: none;
59) }
60) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

61) div.contact.mainaddress {
62)     border: 2px solid red;
63)     padding: 2px 9px;
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

64) }
65) 
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

66) div.contact.modified::after {
67)     content: "(noch nicht gespeichert)";
68)     font-style: italic;
69)     font-weight: bold;
70)     color: red;
71) }
72) div.contact.modified {
73)     border: 2px solid red;
74)     padding: 2px 9px;
75) }
76) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

77) p.contact-id {
78)     text-align: right;
79)     float: right;
80)     color: #aaa;
81)     margin: 0;
82)     padding: 0;
83) }
84) 
Bernd Wurst Abstrahieren der Anzeigefun...

Bernd Wurst authored 6 years ago

85) p.contact-usage {
86)     font-style: italic;
87) }
88) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

89) p.contact-actions {
90) }