mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-05 17:03:58 +03:00
Initial commit
This commit is contained in:
parent
a4f581883a
commit
6a76481c6d
7 changed files with 98 additions and 0 deletions
46
main.html
Normal file
46
main.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>EveryNASA</title>
|
||||
<link rel="icon" href="/static/image/favicon.png" type="image/png">
|
||||
|
||||
<meta name="author" content="Redume">
|
||||
<meta name="description" content="Amazing wallpaper straight from space!">
|
||||
<meta name="keywords" content="nasa, space, wallpaper, auto change wallpaper, everynasa">
|
||||
|
||||
<meta property="og:title" content="EveryNASA">
|
||||
<meta property="og:description" content="Amazing wallpaper straight from space!">
|
||||
<meta property="og:image" content="/static/image/favicon.png">
|
||||
<meta property="og:url" content="https://everynasa.space">
|
||||
|
||||
<meta property="twitter:title" content="EveryNASA">
|
||||
<meta property="twitter:description" content="Amazing wallpaper straight from space!">
|
||||
<meta property="twitter:image" content="/static/image/banner.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<link rel="canonical" href="https://everynasa.space/">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<img src="static/image/devices.png" alt="Devices" id="devices">
|
||||
|
||||
<div id="content">
|
||||
<p id="title">EveryNASA</p>
|
||||
<p id="subtitle">Amazing wallpaper straight from space!</p>
|
||||
<p id="description">
|
||||
NASA publishes amazing space photos every day, so why not set them as wallpapers? EveryNASA does it automatically for you!
|
||||
</p>
|
||||
<div id="get-it-on">
|
||||
<a href='https://play.google.com/store/apps/details?id=ru.murzify.everynasa&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' id="google-play"/></a>
|
||||
<a href="https://github.com/Redume/EveryNasa"><img src="/static/image/get-it-on-github.png" alt="Get it on Github" id="github"></a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
2
robots.txt
Normal file
2
robots.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
User-agent: *
|
||||
Disallow: /wallpaper/*
|
50
static/css/main.css
Normal file
50
static/css/main.css
Normal file
|
@ -0,0 +1,50 @@
|
|||
body {
|
||||
background-color: #2F3041;
|
||||
color: white;
|
||||
}
|
||||
|
||||
* {
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#devices {
|
||||
width: 840px;
|
||||
height: 357px;
|
||||
margin: 260px 40px;
|
||||
}
|
||||
|
||||
#content p {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
#title {
|
||||
font-size: 4em;
|
||||
margin-top: -33%;
|
||||
margin-left: 65%;
|
||||
}
|
||||
|
||||
#subtitle {
|
||||
font-size: 2em;
|
||||
margin-left: 58%;
|
||||
margin-top: -1.3%;
|
||||
}
|
||||
|
||||
#description {
|
||||
font-size: 1.5em;
|
||||
margin-left: 58%;
|
||||
width: 600px;
|
||||
height: 114px;
|
||||
}
|
||||
|
||||
#google-play, #github {
|
||||
width: 315px;
|
||||
height: 114px;
|
||||
}
|
||||
|
||||
#get-it-on {
|
||||
margin-left: 57%;
|
||||
margin-top: 1%;
|
||||
}
|
BIN
static/image/banner.png
Normal file
BIN
static/image/banner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
static/image/devices.png
Normal file
BIN
static/image/devices.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 370 KiB |
BIN
static/image/favicon.png
Normal file
BIN
static/image/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
BIN
static/image/get-it-on-github.png
Normal file
BIN
static/image/get-it-on-github.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
Loading…
Reference in a new issue