-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
logo.html: Make header icon responsive
- Loading branch information
1 parent
a247a76
commit cc98e79
Showing
2 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters