parent
ed661f01f1
commit
ad8819dbd7
@ -0,0 +1,101 @@
|
||||
<!doctype html>
|
||||
<html lang="ru" data-bs-theme="dark">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>SS14Tools</title>
|
||||
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
||||
</head>
|
||||
<body>
|
||||
<style>
|
||||
.mx-10 {
|
||||
margin-left: 10rem;
|
||||
margin-right: 10rem;
|
||||
}
|
||||
.gxr-- {
|
||||
margin-right: 18rem;
|
||||
}
|
||||
.gxl-- {
|
||||
margin-left: 18rem;
|
||||
}
|
||||
</style>
|
||||
<nav class="navbar bg-body-tertiary">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="#"><i class="bi bi-tools"></i> SS14Tools</a>
|
||||
<div class="btn-group" role="group" aria-label="Простой пример">
|
||||
<button type="button" class="btn btn-primary"><i class="bi bi-discord"></i></button>
|
||||
<button type="button" class="btn btn-primary"><i class="bi bi-telegram"></i></button>
|
||||
<button type="button" class="btn btn-primary"><i class="bi bi-github"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<center>
|
||||
<div class="container">
|
||||
<div class="row py-5">
|
||||
<div class="col-xl-9">
|
||||
<select class="form-select" aria-label="Реакция">
|
||||
<option selected><p class="gx-5">💊 Дермалин</p></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="container-fluid col">
|
||||
<div class="btn-group" role="group" aria-label="Базовая группа переключателей радио">
|
||||
<input type="radio" class="btn-check" name="btnradio" id="30" autocomplete="off">
|
||||
<label class="btn btn-outline-primary" for="30">30</label>
|
||||
|
||||
<input type="radio" class="btn-check" name="btnradio" id="50" autocomplete="off">
|
||||
<label class="btn btn-outline-primary" for="50">50</label>
|
||||
|
||||
<input type="radio" class="btn-check" name="btnradio" id="100" autocomplete="off" checked>
|
||||
<label class="btn btn-outline-primary" for="100">100</label>
|
||||
|
||||
<input type="radio" class="btn-check" name="btnradio" id="300" autocomplete="off">
|
||||
<label class="btn btn-outline-primary" for="300">300</label>
|
||||
|
||||
<input type="radio" class="btn-check" name="btnradio" id="1000" autocomplete="off">
|
||||
<label class="btn btn-outline-primary" for="1000">1000</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Составляющее</th>
|
||||
<th scope="col">Рецепт составляющего</th>
|
||||
<th scope="col">Количество</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr class="table-info">
|
||||
<td colspan="2">Кислород</td>
|
||||
<td>100</td>
|
||||
</tr>
|
||||
<tr class="table-info">
|
||||
<td colspan="2">Фосфор</td>
|
||||
<td>100</td>
|
||||
</tr>
|
||||
<tr class="table-warning">
|
||||
<td>Келотан</td>
|
||||
<td><i class="bi bi-arrow-down"></i></td>
|
||||
<td>100</td>
|
||||
</tr>
|
||||
<tr class="table-warning">
|
||||
<td><i class="bi bi-arrow-up"></i></td>
|
||||
<td>Кремний</td>
|
||||
<td>50</td>
|
||||
</tr>
|
||||
<tr class="table-warning">
|
||||
<td><i class="bi bi-arrow-up"></i></td>
|
||||
<td>Углерод</td>
|
||||
<td>50</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue