mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-06 01:13:57 +03:00
add new icons
This commit is contained in:
parent
bd333838b1
commit
8bea213867
3 changed files with 102 additions and 0 deletions
58
web/src/about.html
Normal file
58
web/src/about.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>EveryNasa</title>
|
||||
<link rel="icon" href="/static/image/icons/favicon.png">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="/static/style/about.css" type="text/css">
|
||||
</head>
|
||||
<body style="background: #131313; color: white;">
|
||||
<nav class="navbar navbar-expand-lg bg-dark navbar-dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">
|
||||
<img src="/static/image/icons/favicon.png" width="45" alt="EveryNasa">
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNavDropdown">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Gallery</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/settings">Settings</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" aria-current="page" href="/about">About</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<img src="/static/image/icons/favicon.png" alt="EveryNasa-banner" id="banner" width="120">
|
||||
<p id="title">EveryNasa</p>
|
||||
<p id="version">Version <a id="program-version"></a></p>
|
||||
<p id="description" style="margin-top: -0.5%;">Automatic space wallpaper from Nasa</p>
|
||||
<p id="dev" style="margin-top: 1%;">Copyright 2022 Redume</p>
|
||||
<p id="license" style="margin-top: -0.3%;">This program is licensed under the <a href="https://github.com/Redume/EveryNasa/blob/main/LICENSE">APACHE</a>, version 2.</p>
|
||||
<p id="github" style="margin-top: -0.6%;">Исходный код доступен на <a href="https://github.com/Redume/EveryNasa">GitHub</a></p>
|
||||
<p style="text-align: center; font-size: 2em; margin-top: 1%;">Contact</p>
|
||||
<div class="container">
|
||||
<header class="header row">
|
||||
<div id="contact-image">
|
||||
<a href="https://vk.com/redddume"><img src="/static/image/social/vk.svg" class="social-img" alt="Вконтакте" data-bs-toggle="tooltip" data-bs-placement="top" title="Вконтакте"></a>
|
||||
<a href="https://t.me/Redddume"><img src="/static/image/social/telegram.svg" class="social-img" alt="Telegram" data-bs-toggle="tooltip" data-bs-placement="top" title="Telegram"></a>
|
||||
<a href="https://github.com/Redume"><img src="/static/image/social/github.svg" class="social-img" alt="Github" data-bs-toggle="tooltip" data-bs-placement="top" title="Github"></a>
|
||||
<a href="https://discord.com/users/444509762676326411"><img src="/static/image/social/discord.svg" class="social-img" alt="Discord" data-bs-toggle="tooltip" data-bs-placement="top" title="Discord"></a>
|
||||
<a href="mailto:redddume@gmail.com"><img src="/static/image/social/gmail.svg" class="social-img" alt="Email" data-bs-toggle="tooltip" data-bs-placement="top" title="Email"></a>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
|
||||
<script src="/static/scripts/tooltip.js" type="application/javascript"></script>
|
||||
<script src="/static/scripts/version.js" type="application/javascript"></script>
|
||||
</body>
|
||||
</html>
|
BIN
web/static/image/icons/everynasa.ico
Normal file
BIN
web/static/image/icons/everynasa.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
44
web/static/style/about.css
Normal file
44
web/static/style/about.css
Normal file
|
@ -0,0 +1,44 @@
|
|||
p {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
#title {
|
||||
font-size: 1.6em;
|
||||
text-align: center;
|
||||
margin-top: 1%;
|
||||
}
|
||||
|
||||
#banner {
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
margin-top: 1%;
|
||||
}
|
||||
|
||||
#description, #dev {
|
||||
font-size: 1.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#contact-image {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: -0.5%;
|
||||
}
|
||||
|
||||
#version {
|
||||
font-size: 1em;
|
||||
text-align: center;
|
||||
margin-top: -0.5%;
|
||||
color: #9FA4AF
|
||||
}
|
||||
|
||||
#license a, #github a {
|
||||
color: #a596bd;
|
||||
}
|
||||
|
||||
#license, #github {
|
||||
font-size: 1em;
|
||||
text-align: center;
|
||||
}
|
Loading…
Reference in a new issue