2024-02-19 16:12:23 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-05-12 10:16:48 +02:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Bing Image Of The Day</title>
|
|
|
|
<style>
|
|
|
|
body{ display: flex; flex-flow: row nowrap;
|
|
|
|
width: 100vw; height: 100vh; overflow: hidden; margin: 0;
|
|
|
|
}
|
|
|
|
div{ position: relative; flex: 1; }
|
|
|
|
img{ height: 100%; width: 100%; object-fit: cover; }
|
|
|
|
.detail{ position: absolute; bottom: 0; left: 0; padding: .5rem 1rem;
|
|
|
|
max-width: 35ch;
|
|
|
|
text-align: center; background: rgba(0, 0, 0, .35); color: whitesmoke; }
|
|
|
|
.prev .detail{ left: initial; right: 0; }
|
|
|
|
@media screen and (max-aspect-ratio: 16/9){
|
|
|
|
.prev{display: none;}
|
|
|
|
}
|
|
|
|
</style>
|
2024-02-19 16:12:23 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-05-12 10:16:48 +02:00
|
|
|
<div class="now"> <img src="now.jpg"> <div class="detail">::now::</div> </div>
|
|
|
|
<div class="prev"> <img src="prev.jpg"> <div class="detail">::prev::</div> </div>
|
2024-02-19 16:12:23 +01:00
|
|
|
</body>
|
|
|
|
</html>
|