ImageGrid/ui (gen4)/splash.html
Alex A. Naanou e0b91abcb1 minor tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2019-01-13 07:14:01 +03:00

57 lines
975 B
HTML

<html>
<link rel="prefetch" href="css/fonts/Open_Sans/OpenSans-Regular.ttf" />
<style>
@font-face {
font-family: OpenSans;
src: url(fonts/Open_Sans/OpenSans-Regular.ttf);
}
body {
font-family: OpenSans, sans-serif;
background-color: transparent;
}
.block {
position: absolute;
top: 40px;
left: 40px;
right: 40px;
bottom: 40px;
background-image: url('images/splash-800x500.jpg');
background-size: cover;
background-color: #333333;
box-shadow: inset 0px 0px 100px 0px rgba(0,0,0,1),
10px 10px 60px 0px rgba(0,0,0,0.7);
}
.title {
position: absolute;
bottom: 10pt;
right: 20pt;
color: white;
font-size: 20pt;
text-align: right;
}
.title span {
display: block;
margin-top: -6pt;
margin-right: -8pt;
font-size: 10pt;
font-style: italic;
opacity: 0.3;
}
</style>
<body>
<div class="block">
<div class="title">
ImageGrid.Viewer
<span>v4.0.0a</span>
</div>
</div>
</body>
</html>