made cookie info fixed on the actaddmanual website
All checks were successful
/ web (push) Successful in 28s
All checks were successful
/ web (push) Successful in 28s
This commit is contained in:
parent
c9bb6765b9
commit
22eea8ed56
2 changed files with 13 additions and 5 deletions
|
@ -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">© 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">
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue