-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (76 loc) · 1.53 KB
/
style.css
File metadata and controls
84 lines (76 loc) · 1.53 KB
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
#searchForm {
display: flex;
flex-direction: column; /* Suchleiste und Button werden untereinander angeordnet */
align-items: center;
}
#queryInput {
padding: 10px;
font-size: 16px;
width: 250px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
margin-top: 10px;
font-size: 16px;
cursor: pointer;
}
/* Info-Banner am unteren Rand */
#info-banner {
display: flex;
align-items: center;
flex-direction: column;
border-radius: 10px;
position: fixed;
bottom: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.8);
color: white;
text-align: center;
padding: 15px;
font-size: 14px;
z-index: 1000;
}
#close-banner {
margin-top: 10px;
padding: 5px 10px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
#close-banner:hover {
background-color: #45a049;
}
.info-banner {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #fff8d3;
border: 1px solid #f1c40f;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
padding: 15px 20px;
z-index: 9999;
border-radius: 10px;
font-size: 0.95em;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
max-width: 90%;
}
.info-banner p {
margin: 0;
color: #333;
}
.info-banner button {
padding: 6px 12px;
background-color: #f1c40f;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
color: #000;
}