mirror of
https://github.com/Redume/Kekkai-web.git
synced 2025-02-24 10:21:23 +03:00
git init
This commit is contained in:
commit
4e4f913477
12 changed files with 811 additions and 0 deletions
15
src/web/errors/404.html
Normal file
15
src/web/errors/404.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Kekkai</title>
|
||||
|
||||
<meta name="author" content="Redume">
|
||||
<meta name="description" content="API providing historical currency data">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
23
src/web/page/index.html
Normal file
23
src/web/page/index.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Kekkai</title>
|
||||
|
||||
<meta name="author" content="Redume">
|
||||
<meta name="description" content="API providing historical currency data">
|
||||
<meta name="keywords" content="kekkai, currency, exchange rate, api exchange rate, cryptocurrency api rate, fiat api rate">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<link type="text/css" rel="stylesheet" href="/static/styles/index.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="banner">
|
||||
<div class="banner-img">
|
||||
<img src="/static/assets/kekkai.svg" alt="Kekkai title">
|
||||
</div>
|
||||
<p class="desc">The first free Open-Source Tool for Saving Historical Currency data</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
4
src/web/static/assets/kekkai.svg
Normal file
4
src/web/static/assets/kekkai.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 7.6 KiB |
29
src/web/static/styles/index.css
Normal file
29
src/web/static/styles/index.css
Normal file
|
@ -0,0 +1,29 @@
|
|||
body {
|
||||
background: #4F5574;
|
||||
color: white;
|
||||
font-family: "Gotham Pro";
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.banner {
|
||||
background: rgba(0, 0, 0, 0.39);
|
||||
border-radius: 3vh;
|
||||
display: grid
|
||||
}
|
||||
|
||||
.banner-img {
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.banner-img img {
|
||||
width: 20%;
|
||||
margin: 1.5%;
|
||||
}
|
||||
|
||||
.desc {
|
||||
width: 50%;
|
||||
text-align: center;
|
||||
margin: 1% auto;
|
||||
font-size: 2.3vh;
|
||||
}
|
Loading…
Add table
Reference in a new issue