infoscreens/no-smoking/index.html

35 lines
751 B
HTML
Raw Permalink Normal View History

2019-08-07 22:13:38 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>No Smoking</title>
<link rel="stylesheet" href="../theme/c-base.css">
<style>
body {
background-color: #111111;
}
h1 {
text-align: center;
font-size: 16vmin;
margin-top: 10vmin;
white-space: nowrap;
width: 100vw;
overflow: hidden;
color: black;
text-transform: lowercase;
line-height: 20vmin;
}
img {
position: absolute;
left: 35vw;
top: 35vh;
width: 30vw;
}
</style>
</head>
<body>
<h1 style="font-family: sans-serif; color: #eee; margin-bottom: ">No Smoking</h1>
<img src="nosmoking.svg">
</body>
</html>