2023-05-03 23:07:04 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta lang="de"/>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta name="viewport" content="device=device-width, initial-scaling=1"/>
|
2023-05-16 21:30:30 +02:00
|
|
|
<link rel="Stylesheet" type="text/css" href="style.css"/>
|
2023-05-03 23:07:04 +02:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<title>Candle Bibliothek</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-05-09 18:53:49 +02:00
|
|
|
<script>
|
|
|
|
if (sessionStorage.getItem("loggedIn") == "true") {
|
|
|
|
} else {
|
|
|
|
sessionStorage.setItem("clicked-last", "meinebuecher.html")
|
|
|
|
window.location ="anmelden.html"
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
2023-05-03 23:07:04 +02:00
|
|
|
<header>
|
|
|
|
<h1 class="kopf" >
|
|
|
|
<br><br>
|
2023-05-16 21:30:30 +02:00
|
|
|
Bibliothek <a href="index.html" id="bildID"> <img id="CandleID" src="pictures/candle.png" alt="Bild von einer Kerze"
|
|
|
|
width="200" height="192"/> </a>
|
2023-05-03 23:07:04 +02:00
|
|
|
<br><br> Candle
|
|
|
|
</h1>
|
|
|
|
<div>
|
|
|
|
<a id="uberuns" href="uberuns.html">Über Uns</a>
|
|
|
|
<a id="buecher" href="buecher.html">Bücher</a>
|
|
|
|
<a id="meinebuecher" href="meinebuecher.html">Meine Bücher</a>
|
|
|
|
<form action="">
|
|
|
|
<input class="suchleiste" type="search" placeholder="Suche..." >
|
|
|
|
<button type="submit" id="buttonID" class="searchButton"><i class="fa fa-search"></i> </button>
|
|
|
|
</form>
|
|
|
|
<a id="erweitertesuche" href="erweitertesuche.html">Erweiterte Suche</a>
|
|
|
|
<a href="warenkorb.html" id="warenKorbID"> <img id="shoppingCard" src="pictures/shopingcart.png" alt="Bild von einem Wagen"
|
|
|
|
width="50" height="50"/> </a>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="containerofmeinebuecher">
|
|
|
|
<p id="meinebüchertitel">Meine Bücher</p>
|
|
|
|
<!--first item-->
|
|
|
|
<div id="firstItem" class="items" >
|
|
|
|
<img src="pictures/percy_jackson_diebe_im_olymp.jpg" width="125" height="200"/>
|
|
|
|
<h3 class="headerinItem">
|
|
|
|
Percy Jackson: Diebe im Olymp
|
|
|
|
</h3>
|
|
|
|
<p class="discinItem">von Rick Riordan <br>
|
|
|
|
</p>
|
|
|
|
<a class="greenbutton" href="">Sofort Abholbereit</a>
|
|
|
|
<a class="binPicture" href=""><img src="pictures/bin.png" width="25" height="25"></a>
|
|
|
|
<p id="message">Diese Reservierung verfällt, wenn das Buch nicht bis zum 24.04.2023 abgeholt wurde.</p>
|
|
|
|
<hr style="width: 92%;">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<!--Second Item-->
|
|
|
|
<div id="secondItem" class="items">
|
|
|
|
<img src="pictures/the_hundred_and_one_dalmatians.jpg" width="125" height="200"/>
|
|
|
|
<h3 class="headerinItem">
|
|
|
|
The Hundred and One Dalmatians
|
|
|
|
</h3>
|
|
|
|
<p class="discinItem">von Dodie Smith <br>
|
|
|
|
</p>
|
|
|
|
<a class="redbutton" href="">Abholbereit am: 03.05.2023</a>
|
|
|
|
<a class="binPicture" href=""><img src="pictures/bin.png" width="25" height="25"></a>
|
|
|
|
<p id="message">Dieses buch ist für Sie reserviert.</p>
|
|
|
|
<hr style="width:92%;">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--Third Item-->
|
|
|
|
<div id="thirdItem" class="items">
|
|
|
|
<img src="pictures/penguin_highway.jpg" width="125" height="200"/>
|
|
|
|
<h3 class="headerinItem">
|
|
|
|
Penguin Highway
|
|
|
|
</h3>
|
|
|
|
<p class="discinItem">von Tomihiko Morimi <br>
|
|
|
|
</p>
|
|
|
|
<a class="greenbutton" href="">Rückgabe am: 03.05.2023</a>
|
|
|
|
<hr style="width: 92%;">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--fourth Item-->
|
|
|
|
<div id="fourthItem" class="items" >
|
|
|
|
<img src="pictures/es.jpg" width="125" height="200"/>
|
|
|
|
<h3 class="headerinItem">
|
|
|
|
Es
|
|
|
|
</h3>
|
|
|
|
<p class="discinItem">von Stephen King <br>
|
|
|
|
</p>
|
2023-05-16 10:27:58 +02:00
|
|
|
<a class="redbutton" href="verlaengerung.html" >Rückgabe am: 03.05.2023</a>
|
|
|
|
<a class="binPicture" href="verlaengerung.html"><img src="pictures/extend_hover.png" width="25" height="25"></a>
|
2023-05-03 23:07:04 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--Link JS file-->
|
|
|
|
<script src="burgerIcon.js"></script>
|
|
|
|
<!--If it was small and got big, it calls the function only one time and doesn't do it all the time-->
|
|
|
|
<script>
|
|
|
|
var widthissue = false;
|
|
|
|
window.addEventListener("resize", function(event) {
|
|
|
|
if(window.innerWidth > 800 && widthissue) {
|
|
|
|
widthissue = false
|
|
|
|
unset()
|
|
|
|
}
|
|
|
|
else if(window.innerWidth < 800) widthissue = true;
|
|
|
|
})
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<!--Burger-->
|
|
|
|
<nav id="activeid" class="active">
|
|
|
|
<div class="navLinks">
|
|
|
|
<input class="nav-toggleclass"id="nav-toggle" type="checkbox" onclick="openNav()";>
|
|
|
|
<label for="nav-toggle" class="icon-burger" >
|
|
|
|
<div class="line"></div>
|
|
|
|
<div class="line"></div>
|
|
|
|
<div class="line"></div>
|
|
|
|
</label>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
<footer class="fuss" >
|
|
|
|
<div>
|
|
|
|
<a id="impressum" href="impressum.html">Impressum</a>
|
|
|
|
<a id="kontakt" href="kontakt.html">Kontakt</a>
|
|
|
|
<a id="datenschutz" href="datenschutz.html">Datenschutz</a>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|