Init
This commit is contained in:
parent
75293f4bd1
commit
23f41a7f46
25
index.html
Normal file
25
index.html
Normal 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&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
BIN
static/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 112 KiB |
52
static/style.css
Normal file
52
static/style.css
Normal 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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user