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

View file

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