commit | author | age
|
8077b8
|
1 |
/* |
U |
2 |
Baum-Demo |
|
3 |
von Ulrich Hilger, https://uhilger.de |
|
4 |
8. Juli 2021 |
|
5 |
*/ |
|
6 |
|
|
7 |
html { |
|
8 |
font-family: sans-serif; |
|
9 |
font-size: 1.2rem; |
|
10 |
font-weight: normal; |
|
11 |
line-height: 1.5; |
|
12 |
padding-left: 1rem; |
|
13 |
} |
|
14 |
|
|
15 |
.baum-elem { |
|
16 |
padding: 0 0 0 0.5em; |
|
17 |
cursor: pointer; |
|
18 |
} |
|
19 |
|
|
20 |
.icon-folder, .icon-folder-open { |
|
21 |
color: navajowhite; |
|
22 |
} |
|
23 |
|
|
24 |
.icon-doc-inv { |
|
25 |
color: lightgray; |
|
26 |
} |
|
27 |
|
|
28 |
.gewaehlt { |
|
29 |
background-color: lightblue; |
|
30 |
} |
|
31 |
|
|
32 |
.baum { |
|
33 |
padding: 1rem 0 0 0; |
|
34 |
} |
|
35 |
|
|
36 |
.msg { |
|
37 |
width: 20rem; |
|
38 |
padding: 0.5rem 0.2rem 0.5rem 0.2rem; |
|
39 |
background-color: #efefef; |
|
40 |
} |
|
41 |
|
|
42 |
/* Fontello */ |
|
43 |
|
|
44 |
@font-face { |
|
45 |
font-family: 'pikto'; |
|
46 |
src: url('font/pikto.ttf?10878602') format('truetype'); |
|
47 |
font-weight: normal; |
|
48 |
font-style: normal; |
|
49 |
} |
|
50 |
|
|
51 |
[class^="icon-"]:before, [class*=" icon-"]:before { |
|
52 |
font-family: "pikto"; |
|
53 |
font-style: normal; |
|
54 |
font-weight: normal; |
|
55 |
speak: never; |
|
56 |
|
|
57 |
display: inline-block; |
|
58 |
text-decoration: inherit; |
|
59 |
width: 1em; |
|
60 |
margin-right: .2em; |
|
61 |
text-align: center; |
|
62 |
/* opacity: .8; */ |
|
63 |
|
|
64 |
/* For safety - reset parent styles, that can break glyph codes*/ |
|
65 |
font-variant: normal; |
|
66 |
text-transform: none; |
|
67 |
|
|
68 |
/* fix buttons height, for twitter bootstrap */ |
|
69 |
line-height: 1em; |
|
70 |
|
|
71 |
/* Animation center compensation - margins should be symmetric */ |
|
72 |
/* remove if not needed */ |
|
73 |
margin-left: .2em; |
|
74 |
|
|
75 |
/* you can be more comfortable with increased icons size */ |
|
76 |
/* font-size: 120%; */ |
|
77 |
|
|
78 |
/* Font smoothing. That was taken from TWBS */ |
|
79 |
-webkit-font-smoothing: antialiased; |
|
80 |
-moz-osx-font-smoothing: grayscale; |
|
81 |
|
|
82 |
/* Uncomment for 3D effect */ |
|
83 |
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ |
|
84 |
} |
|
85 |
|
|
86 |
.icon-doc:before { content: '\e800'; } /* '' */ |
|
87 |
.icon-folder-open:before { content: '\e801'; } /* '' */ |
|
88 |
.icon-folder:before { content: '\e802'; } /* '' */ |
|
89 |
.icon-folder-empty:before { content: '\f114'; } /* '' */ |
|
90 |
.icon-folder-open-empty:before { content: '\f115'; } /* '' */ |
|
91 |
.icon-doc-inv:before { content: '\f15b'; } /* '' */ |