6f5cde190bd9ad81c22ff005b813b34a4b4125ec
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) }
42) a div.contact {
43)     min-height: 10em;
44) }
45) a div.contact:hover {
46)     border: 2px solid blue;
47)     padding: 2px 9px;
48) }
49) 
50) a.contacts-choose:hover {
51)     color: initial;
52)     text-decoration: none;
53) }
54) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

55) div.contact.mainaddress {
56)     border: 2px solid red;
57)     padding: 2px 9px;
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

58) }
59) 
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

60) div.contact.modified::after {
61)     content: "(noch nicht gespeichert)";
62)     font-style: italic;
63)     font-weight: bold;
64)     color: red;
65) }
66) div.contact.modified {
67)     border: 2px solid red;
68)     padding: 2px 9px;
69) }
70) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

71) p.contact-id {
72)     text-align: right;
73)     float: right;
74)     color: #aaa;
75)     margin: 0;
76)     padding: 0;
77) }
78) 
Bernd Wurst Abstrahieren der Anzeigefun...

Bernd Wurst authored 6 years ago

79) p.contact-usage {
80)     font-style: italic;
81) }
82)