bin/server/templates/style.stpl

54 lines
853 B
Text
Raw Normal View History

2024-01-25 22:36:52 +01:00
<style>
body, html {
margin: 0;
background-color: black;
height: 100%;
width: 100%;
color: white;
font-family: monospace;
display: flex;
justify-content: center;
align-items: center;
z-index: -2;
}
header {
display: flex;
align-items: center;
flex-direction: column;
}
a {
color: white;
}
p {
margin-top: 2px;
margin-bottom: 2px;
}
h1 {
margin-bottom: 2px;
}
.watermark {
position: fixed;
bottom: 2px;
right: 2px;
}
.watermark img {
height: 32px;
}
#matrix {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
width: 100%;
height: 100%;
}
</style>