dcc202fb249a446ac15c7cf413b9f1b4a3f31b58
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)  * 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

5)  * Written by schokokeks.org Hosting, namely
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

6)  *    Bernd Wurst <bernd@schokokeks.org>
7)  *    Hanno Böck <hanno@schokokeks.org>
8)  *
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

9)  * This code is published under a 0BSD license.
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

10)  *
11)  * Nevertheless, in case you use a significant part of this code, we ask (but 
12)  * not require, see the license) that you keep the authors' names in place and 
13)  * return your changes to the public. We would be especially happy if you tell 
14)  * us what you're going to do with this code.
15)  * -------------------------------------------------------------------------------
16)  */
17) 
18) 
19) div.contact-list {
20)     display: flex;
21)     flex-direction: row;
22)     flex-wrap: wrap;
23) }
24) 
25) div.contact {
26)     border: 1px solid black;
27)     width: 18em;
28)     margin: 1em;
Bernd Wurst Security

Bernd Wurst authored 6 years ago

29)     padding: 3px 10px;    
30) }
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

31) 
32) a.contacts-choose {
33)     color: initial;
34)     text-decoration: none;
35) }
Bernd Wurst Adressdarstellung gleichmäß...

Bernd Wurst authored 6 years ago

36) 
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

37) a div.contact {
38)     min-height: 10em;
39) }
Bernd Wurst Adressdarstellung gleichmäß...

Bernd Wurst authored 6 years ago

40) 
41) a div.contact-mainlist {
42)     min-height: 15em;
43) }
44) 
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

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) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

83) p.contact-actions {
84) }