-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathlogo.html
More file actions
38 lines (36 loc) · 755 Bytes
/
logo.html
File metadata and controls
38 lines (36 loc) · 755 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
<meta charset="UTF-8" />
<style>
.coala-logo-doc {
width: 632.5px;
height: 187.5px;
}
@media only screen and (max-device-width: 632px) {
.coala-logo-doc-header {
display: none;
}
.coala-logo-doc-low {
display: block;
}
}
@media only screen and (min-device-width: 633px) {
.coala-logo-doc-header {
display: block;
}
.coala-logo-doc-low {
display: none;
height: auto;
}
}
</style>
<body>
<div class="coala-logo-doc-header">
<img
width="632.5px"
height="187.5px"
src="_static/images/coala-header.png"
/>
</div>
<div class="coala-logo-doc-low">
<img width="187.5px" height="187.5px" src="_static/images/coala_logo.svg" />
</div>
</body>