website/index.html

114 lines
4.0 KiB
HTML
Raw Normal View History

2024-06-04 18:39:49 +00:00
<!DOCTYPE html>
<html>
<head>
<title>ErkkiAI™</title>
<meta charset="UTF-8">
<meta name="robots" content="noodp,noarchive">
<meta name="google" content="notranslate">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style>
* {
2024-06-25 23:23:08 +00:00
box-sizing: border-box;
2024-06-04 18:39:49 +00:00
}
@font-face {
2024-06-25 23:23:08 +00:00
font-family: "Orbitron Bold";
src: url("assets/fonts/orbitron-bold.otf");
2024-06-25 22:42:00 +00:00
}
@font-face {
2024-06-25 23:23:08 +00:00
font-family: "Noto Sans Bold";
src: url("assets/fonts/notosans-bold.ttf");
2024-06-04 18:39:49 +00:00
}
html, body {
2024-06-25 23:23:08 +00:00
width: 100%;
height: 100%;
2024-06-04 18:39:49 +00:00
}
body {
2024-06-25 23:23:08 +00:00
display: flex;
flex-direction: column;
2024-06-25 23:21:32 +00:00
background-image: linear-gradient(#0049c8, #00bef9);
margin: 0;
min-width: 320px;
min-height: 600px;
2024-06-04 18:39:49 +00:00
}
* {
2024-06-25 23:23:08 +00:00
font-family: "Roboto Medium", sans-serif;
2024-06-04 18:39:49 +00:00
}
*, *:active, *:focus, *:hover, *:visited, *:link {
2024-06-25 23:23:08 +00:00
color: #ffffff;
text-decoration: none;
2024-06-04 18:39:49 +00:00
}
.emoji *, .emoji *:active, .emoji *:focus, .emoji *:hover, .emoji *:visited, .emoji *:link {
2024-06-25 23:23:08 +00:00
font-family: initial;
2024-06-04 18:39:49 +00:00
}
h1 {
2024-06-25 23:23:08 +00:00
font-family: "Orbitron Bold", sans-serif;
font-size: 3em;
2024-06-25 23:21:32 +00:00
margin-top: 0;
2024-06-25 23:23:08 +00:00
margin-bottom: 0;
2024-06-04 18:39:49 +00:00
}
main, footer {
2024-06-25 23:21:32 +00:00
font-size: 1.5rem;
2024-06-04 19:21:19 +00:00
}
main, footer {
2024-06-25 23:21:32 +00:00
margin-top: 1.5rem;
}
header {
background-color: #111111;
display: flex;
flex-direction: row;
align-items: center;
height: 5vh;
max-height: 100px;
min-height: 60px;
}
header .logo {
max-height: 100%;
}
header .name {
font-size: 1.5rem;
margin-left: -0.05rem;
margin-bottom: -0.5rem;
2024-06-04 19:21:19 +00:00
}
header .slogan {
2024-06-25 23:21:32 +00:00
margin-top: 0.05rem;
font-size: 0.75rem;
}
footer {
display: flex;
flex-direction: column;
2024-06-04 19:21:19 +00:00
}
footer .powered-by {
2024-06-25 23:23:08 +00:00
margin-top: 0.25em;
font-size: 0.75em;
2024-06-04 19:21:19 +00:00
}
2024-06-04 18:39:49 +00:00
</style>
<!-- Link: Preconnect & DNS Prefetch & Preload -->
<link rel="preconnect" href="//cdn.cwinfo.net">
<link rel="dns-prefetch" href="//cdn.cwinfo.net">
<link rel="preload" as="font" type="font/woff2" href="https://cdn.cwinfo.net/frameworks/font-awesome/6.5.2/webfonts/fa-solid-900.woff2" crossorigin="anonymous">
<link rel="preload" as="style" href="https://cdn.cwinfo.net/frameworks/font-awesome/6.5.2/css/all.min.css" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="https://cdn.cwinfo.net/frameworks/font-awesome/6.5.2/css/all.min.css" media="screen, print" crossorigin="anonymous">
</head>
<body>
<header>
2024-06-25 23:21:32 +00:00
<img class="logo" src="assets/images/logo.svg" alt="ErkkiAI™">
<div class="branding">
2024-06-25 23:23:08 +00:00
<h1 class="name">ErkkiAI™</h1>
<span class="slogan">Energiatehokkuutta kiinteistöllesi</span>
2024-06-25 23:21:32 +00:00
</div>
2024-06-04 18:39:49 +00:00
</header>
<main>
<a href="https://new.ultrahack.org/hackathons/metaversenergy-hackathon">See You Soon! 👀</a>
</main>
<footer>
<a href="https://erkkiai.com">©2024 <span title="Christer Warén & Tomi Jokinen">ErkkiAI™</span></a>
2024-06-04 19:21:19 +00:00
<a class="powered-by" href="https://waren.io">Powered by War&eacute;n Group</a>
2024-06-04 18:39:49 +00:00
</footer>
</body>
</html>