This commit is contained in:
M1kq
2022-01-17 11:50:48 +01:00
parent 584cfd5b27
commit b93bf1224f
3 changed files with 53 additions and 1 deletions

View File

@@ -30,7 +30,15 @@
.seite {
display: inline-flex;
}
.product-img, .product-name, .product-desc{
.buy {
width: 90%;
height: 15%;
background: linear-gradient(-5deg, hsl(86, 61%, 44%), hsl(86, 65%, 54%));
color: #121212;
}
.product-img, .product-name, .product-desc, .buy {
overflow: hidden;
background-color: rgba(0, 0, 0, 0.12);
margin-right: 2.5%;

View File

@@ -0,0 +1,44 @@
<!-- Autoren: Mika Buhl, Florian Knoche, Fabian Märker; KBM - Kauf beim Meister -->
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>Produkt-Name</title>
<link rel="stylesheet" type="text/css" href="../css/design.css"/>
<link rel="stylesheet" type="text/css" href="../css/waren.css"/>
<link rel="icon" type="image/png" href="../../bilder/Logo.png">
</head>
<body>
<!-- Menü -->
<div id="menu" class="menu">
<div class="btn-left">
<a class="neon-button " href="../shop.html"><br>Shop<br></a>
<a class="neon-button " href="../b-waren.html"><br>B-Waren<br></a>
</div>
<a href="#top"><img id="logo" src="../../bilder/Logo.png"></a>
<div class="btn-right">
<a class="neon-button" href="../services.html">Service<br>Retouren<br>Reparaturen</a>
<a class="neon-button" href="../login.html"><br>Anmelden<br></a>
</div>
</div>
<div class="seite">
<div class="btn-left">
<div class="product-name">
<h1 title="Produkt Name">Nvidia Geforce RTX3090 Founders Edition</h1>
</div>
<div class="product-img">
<img title="Produkt Bild" src="../../bilder/RTX3090FE.png"/>
</div>
</div>
<div class="placeholder">
<div class="product-desc">
<a title="Produkt Informationen">Hersteller: Nvidia<br></a>
</div>
</div>
<div class="buy">
<h1 title="Kaufen">Kaufen</h1>
</div>
</div>
</body>
</html>