-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.css
More file actions
45 lines (34 loc) · 645 Bytes
/
banner.css
File metadata and controls
45 lines (34 loc) · 645 Bytes
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
.deltachat-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #f3f3f3;
border-top: 1px solid #ccc;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
font-family: 'Lucida Grande', sans-serif;
font-size: 10pt;
line-height: 1.8;
}
.deltachat-banner * {
color: black !important;
margin: 0 5px;
}
.deltachat-banner a {
color: #1e6bb8 !important;
text-decoration: none;
font-weight: normal;
display: flex;
align-items: center;
}
@media screen and (max-width: 760px) {
.deltachat-banner {
display: flex;
align-items: center;
text-align: center;
}
}