Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial commit #9

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions css/21.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.navbar-brand{
width: 100%;
display: flex;
align-items: center;
}

.navbar-brand > span{
width: 50% ;
}

.p-3{
background-color: #f8f9fa;
}

.btn{
border: lightgrey 2px solid;
background-color: #f8f9fa;
}

.material-symbols-outlined {
font-variation-settings:
'FILL' 1,
'wght' 400,
'GRAD' 0,
'opsz' 24
}

textarea{
height: 80%;
}

.maincontainer {
padding: 1% 5%;
}

p{
margin: 0;
}
157 changes: 157 additions & 0 deletions html/21.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="/css/21.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="./style/index.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<title></title>
</head>

<body>
<div class="d-flex flex-column gap-5">
<nav class="navbar bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<span class="material-symbols-outlined">
arrow_back_ios
</span>
Vice Bier
</a>
</div>
</nav>
<div class="d-flex flex-column container-sm gap-5 maincontainer">
<div class="d-flex justify-content-between w-100 row">
<div class="d-flex gap-5 col-sm">
<img src="https://images.punkapi.com/v2/keg.png" alt="Vice bier" height="550">
<div class="d-flex flex-column">
<p>04/2013</p>
<p>ph : 4</p>
<p>attenuation level : 81.8</p>
<p>boil volume: 25 L</p>
<p>Food paring</p>
<ul>
<li>Citrus salad with balsamic dressing</li>
<li>Lobster</li>
<li>Ginger and orange cookies</li>
</ul>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck1">
<label class="form-check-label" for="defaultCheck1">
Already drank
</label>
</div>
</div>
</div>
<div class="col">
<table class="table table-light table-hover">
<tbody>
<tr>
<th scope="row">malt</th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td>Extra Pale</td>
<td>2.69 kilograms</td>
</tr>
<tr>
<th scope="row"></th>
<td>Wheat</td>
<td>1.25 kilograms</td>
</tr>
<tr>
<th scope="row"></th>
<td>Caramel</td>
<td>0.38 kilograms</td>
</tr>
<tr>
<th scope="row">hops</th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td>Waimea</td>
<td>2.5 grams</td>
</tr>
<tr>
<th scope="row"></th>
<td>Amarillo</td>
<td>2.5 grams</td>
</tr>
<tr>
<th scope="row"></th>
<td>Nelson Sauvin</td>
<td>2.5 grams</td>
</tr>
<tr>
<th scope="row"></th>
<td>Motueka</td>
<td>2.5 grams</td>
</tr>
<tr>
<th scope="row"></th>
<td>Simcoe</td>
<td>6 grams</td>
</tr>
<tr>
<th scope="row"></th>
<td>Citra</td>
<td>6 grams</td>
</tr>
<tr>
<th scope="row">yeast</th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td>Wyeast 3638 - Bavarian Wheat™"</td>
<td>amount</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="d-flex flex-row justify-content-between w-100 row">
<div class="d-flex flex-column gap-3 col">
<span>Hoppy Wheat Bier.</span>
<div class="d-flex gap-3">
<span class="material-symbols-outlined">star</span>
<span class="material-symbols-outlined">star</span>
<span class="material-symbols-outlined">star</span>
<span class="material-symbols-outlined">star</span>
<span class="material-symbols-outlined">star_half</span>
</div>
<p>
Our take on the classic German Kristallweizen. A clear German wheat beer, layers of bubblegum and vanilla perfectly balanced with the American and New Zealand hops.
</p>
<p>
Ferment at higher or lower temperatures to select the esters that will create clove- like or banana-like flavours.
</p>
<p>
Sam Mason
</p>
</div>
<div class="col">
<textarea class="form-control" id="floatingTextarea"></textarea>
</div>
</div>
<div class="d-flex justify-content-center gap-1 w-100">
<button type="button" class="btn">Previous</button>
<button type="button" class="btn">Next</button>
</div>
</div>
<div class="bg-tertiary p-3">
<div class="text-black text-center">
Clément GALIOT - FIL 2026
</div>
</div>
</div>
</body>
</html>