Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use semantic HTML to include logo #1036

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions webextension/css/welcome.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ p {
}

.welcome-logo {
background: url('../images/wayback-light.png') center/cover no-repeat;
width: 375px;
height: 150px;
margin: 0 auto;
Expand All @@ -73,9 +72,4 @@ p {
.bottom-container {
background-color: #333;
}

.welcome-logo {
background-image: url('../images/wayback-dark.png')
}

}
5 changes: 4 additions & 1 deletion webextension/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
<body>
<div class="body-container">
<div class="header-container">
<div class="welcome-logo"></div>
<picture>
<source srcset="images/wayback-dark.png" media="(prefers-color-scheme: dark)" width="850" height="340"/>
<img class="welcome-logo" src="images/wayback-light.png" width="850" height="340" alt=""/>
</picture>
<h1>
Welcome to the Internet Archive's<br>
Wayback Machine Browser Extension
Expand Down
Loading