This commit is contained in:
Дмитрий Абдрахманов 2024-06-11 13:00:47 +03:00
parent 75293f4bd1
commit 23f41a7f46
3 changed files with 77 additions and 0 deletions

25
index.html Normal file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1">
<link rel="stylesheet" href="/static/style.css" type="text/css"
charset="utf-8">
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab:400|Roboto:400&amp;subset=cyrillic"
rel="stylesheet">
</head>
<body>
<img class="logo" src="/static/logo.png" alt="">
<h1>Вычислительный кластер ВолгГТУ</h1>
<nav>
<ul>
<li><a href="/grafana">Мониторинг</a></li>
<li><a href="/git">Репозитории</a></li>
<li><a href="/git">Документация</a></li>
</ul>
</nav>
</body>
</html>

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

52
static/style.css Normal file
View File

@ -0,0 +1,52 @@
html, body {
height: 100%;
width: 100%;
}
html {
display: table;
}
body {
display: table-cell;
font-family: Roboto, sans-serif;
vertical-align: middle;
}
img.logo {
display: block;
margin: 1em auto 2em;
min-width: 200px;
width: 30%;
max-width: 512px;
}
h1 {
text-align: center;
font-family: 'Roboto Slab', serif;
font-weight: normal;
}
nav {
margin: auto;
}
nav>ul {
list-style-type: none;
text-align: center;
}
nav>ul>li {
font-size: 130%;
display: inline-block;
margin: 1em 3em;
}
nav a {
text-decoration: none;
color: #2e5882;
}
nav a:hover {
border-bottom: 1px solid #2e5882;
}