34 lines
751 B
HTML
34 lines
751 B
HTML
<!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>
|