Skip to content

Commit

Permalink
Use semantic HTML to include logo
Browse files Browse the repository at this point in the history
Not only is the HTML semantically clearer with such a change, if one
wanted to print the Welcome/Privacy Policy page, the logo would now be
included in that printout (or PDF or whatever).
  • Loading branch information
veyndan committed Jun 5, 2024
1 parent ad65aeb commit 3d19772
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
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

0 comments on commit 3d19772

Please sign in to comment.