made cookie info fixed on the actaddmanual website
All checks were successful
/ web (push) Successful in 28s

This commit is contained in:
Ell 2024-06-28 12:11:39 +02:00
parent c9bb6765b9
commit 22eea8ed56
2 changed files with 13 additions and 5 deletions

View file

@ -16,6 +16,10 @@
</head> </head>
<body> <body>
<!-- Cookie notification -->
<div id="cookieinfo"></div>
<script src="../scripts/cookieinfo.js"></script>
<div id="sidebar"> <div id="sidebar">
<a href="https://ellpeck.de">🏠 Main Site</a> <a href="https://ellpeck.de">🏠 Main Site</a>
<a href="https://ellpeck.de/support">💸 Support</a> <a href="https://ellpeck.de/support">💸 Support</a>
@ -28,11 +32,7 @@
<a href="https://git.ellpeck.de/Ellpeck/Web">&copy; Ellpeck</a> <a href="https://git.ellpeck.de/Ellpeck/Web">&copy; Ellpeck</a>
</div> </div>
<div id="content"> <div id="content">
<div id="entries"> <div id="entries"></div>
<!-- Cookie notification -->
<div id="cookieinfo"></div>
<script src="../scripts/cookieinfo.js"></script>
</div>
<script src="index.js"></script> <script src="index.js"></script>
</div> </div>
<div id="footer"> <div id="footer">

View file

@ -80,6 +80,14 @@ body {
flex-direction: column; flex-direction: column;
} }
#cookieinfo {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
}
@media (max-width: 768px) { @media (max-width: 768px) {
#content { #content {
margin-left: 200px; margin-left: 200px;