-
Notifications
You must be signed in to change notification settings - Fork 0
/
costum.css
140 lines (115 loc) · 2.45 KB
/
costum.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* Überschrift und Linkhover Farbe */
h2,
h1,
a:hover {
color: #5C0000;
}
a {
color: inherit;
}
body {
font-family: 'Noto Sans TC', sans-serif;
background-color: #E0A684;
text-align: justify;
}
/* Titel und Logo in Navbar */
#websitetitle {
font-family: 'Lexend Deca', sans-serif;
font-size: 1.2em;
color: #E0A684;
position: relative;
top: 0.2em;
display: inline-block;
}
#logocontainer {
width: 50px;
display: inline-block
}
@media screen and (max-width: 385px) {
#websitetitle {
font-size: 0.9em;
}
#logocontainer {
width: 42px;
display: inline-block
}
}
@media screen and (max-width: 350px) {
#websitetitle {
font-size: 0.66em;
}
#logocontainer {
width: 30px;
display: inline-block
}
}
/* Hovereffect Navbar */
#hovernavitem {
border-bottom: 3px solid #1E1010
}
#hovernavitem:hover {
border-bottom: 3px solid #E0A684
}
#activehover {
border-bottom: 3px solid #E0A684
}
/* Navbar Hintergrund */
.navbackgrounddark {
background-color: #1E1010;
}
/* Akkordion */
.dashedborder {
background-color: #E0A684;
border: 2px dashed #1E1010;
font-style: italic;
border-radius: 0.25rem;
}
.upborder {
background-color: #E0A684;
border-top: 2px solid #1E1010;
}
.accordion-item .accordion-button {
background-color: inherit;
color: inherit
}
.accordion-button:focus {
box-shadow: inherit;
}
.accordion-button:not(.collapsed)::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235C0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/* Map IDs */
#mapproduction {
height: 420px;
margin-top: 5px;
margin-bottom: 10px;
padding-bottom: 5px;
}
#mapproductionperson {
height: 420px;
margin-top: 5px;
margin-bottom: 10px;
padding-bottom: 5px;
}
#expomap {
height: 420px;
margin-top: 5px;
margin-bottom: 10px;
padding-bottom: 5px;
/* position: fixed; */
}
.blockquote {
font-size: 2em !important;
}
/* Infobox Kaffeeproduktion */
.infobox {
padding: 6px 8px;
font-family: 'Lexend Deca', sans-serif;
;
background: rgba(255, 255, 255, 0.9);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
border-radius: 5px;
}
.infobox h5 {
margin: 0 0 5px;
}