Skip to content
Snippets Groups Projects
Commit 2e541648 authored by Tilman Vatteroth's avatar Tilman Vatteroth :robot:
Browse files

add css

parent 742840b2
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,31 @@ body { ...@@ -8,6 +8,31 @@ body {
font-family: Arial, serif; font-family: Arial, serif;
overflow: hidden; overflow: hidden;
} }
.impressum {
position: absolute;
left: 0px;
top: 0px;
color: #fff;
margin: 10px;
z-index: 1000;
background: #000;
font-size: 3em;
transition: opacity 5s 2s;
opacity: 0;
animation: 3s ease-out 0s 1 fadeOut;
}
.impressum:hover {
opacity: 1;
transition: none;
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
[data-container=panel], [data-container=panel],
[data-container=noscript] { [data-container=noscript] {
background-color: rgba(8, 8, 8, 0.68); background-color: rgba(8, 8, 8, 0.68);
......
...@@ -12,6 +12,33 @@ body { ...@@ -12,6 +12,33 @@ body {
overflow:hidden; overflow:hidden;
} }
.impressum {
position: absolute;
left: 0px;
top: 0px;
color: #fff;
margin: 10px;
z-index: 1000;
background: #000;
font-size: 3em;
transition: opacity 5s 2s;
opacity: 0;
animation: 3s ease-out 0s 1 fadeOut;
}
.impressum:hover {
opacity: 1;
transition: none;
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
[data-container=panel] { [data-container=panel] {
background-color: rgba(8, 8, 8, 0.68); background-color: rgba(8, 8, 8, 0.68);
border: solid 1px #252525; border: solid 1px #252525;
......
...@@ -23,5 +23,6 @@ ...@@ -23,5 +23,6 @@
<div data-container="noscript">Diese Seite benötigt JavaScript!</div> <div data-container="noscript">Diese Seite benötigt JavaScript!</div>
</noscript> </noscript>
</div> </div>
<a href="https://oh14.de/impressum.html" class="impressum">Impressum</a>
</body> </body>
</html> </html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment