mirror of
https://github.com/erkkiai/website.git
synced 2024-11-23 22:11:32 +00:00
Last Hackathon Commit
This commit is contained in:
parent
a0dcafd9a6
commit
8255b052af
BIN
assets/images/42qj-q2us-avtm-xm94.webp
Normal file
BIN
assets/images/42qj-q2us-avtm-xm94.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
assets/images/e2p7-nbv5-n8y8-getn.jpg
Normal file
BIN
assets/images/e2p7-nbv5-n8y8-getn.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 121 KiB |
151
index.html
151
index.html
@ -49,17 +49,28 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
main, footer {
|
main {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
header, section {
|
header, section {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
overflow: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
header {
|
header, header .branding, .contact div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
header .box {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
header .logo {
|
header .logo {
|
||||||
max-height: 75vmin;
|
max-height: 75vmin;
|
||||||
@ -72,36 +83,74 @@
|
|||||||
header .slogan {
|
header .slogan {
|
||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
}
|
}
|
||||||
footer {
|
header .credits {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
footer .powered-by {
|
header .credits .powered-by {
|
||||||
margin-top: 0.25em;
|
margin-top: 0.25em;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
section#contact .peoples {
|
||||||
.contact h2 {
|
display: flex;
|
||||||
font-size: 5rem;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
section#contact .people {
|
||||||
.contact div {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
section#contact .people:nth-child(1) {
|
||||||
.contact img {
|
margin-right: 5vh;
|
||||||
border-radius: 50;
|
}
|
||||||
height: 50vmin;
|
section#personalization h2, section#looking h2 {
|
||||||
|
margin-top: 2vh;
|
||||||
|
}
|
||||||
|
section#features h2 {
|
||||||
|
margin-bottom: 5vh;
|
||||||
|
}
|
||||||
|
section#contact h2 {
|
||||||
|
margin-bottom: 2vh;
|
||||||
|
}
|
||||||
|
section#contact .links {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
section#personalization img, section#looking img, section#contact img {
|
||||||
|
border-radius: 5vh;
|
||||||
|
height: 25vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
section#contact img {
|
||||||
margin-top: 10%;
|
margin-bottom: 2vh;
|
||||||
|
}
|
||||||
|
.arrow {
|
||||||
|
margin-top: 3vh;
|
||||||
|
font-size: 3rem;
|
||||||
|
opacity: 75%;
|
||||||
|
}
|
||||||
|
.list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.list i {
|
||||||
|
font-size: 5rem;
|
||||||
|
margin-bottom: 2vh;
|
||||||
|
}
|
||||||
|
.list .feature {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
text-align: center;
|
||||||
|
margin-left: 5vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list .feature:nth-child(1) {
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (orientation: portrait) {
|
@media (orientation: portrait) {
|
||||||
header {
|
header .box {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -114,10 +163,14 @@
|
|||||||
header .slogan {
|
header .slogan {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
|
header .credits {
|
||||||
|
margin-top: 3vh;
|
||||||
|
}
|
||||||
.contact .persons {
|
.contact .persons {
|
||||||
display: flex;
|
flex-direction: column;
|
||||||
flex-direction: row;
|
}
|
||||||
|
.arrow {
|
||||||
|
margin-top: 6vh;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -136,43 +189,67 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="website">
|
<div class="website">
|
||||||
<header>
|
<header>
|
||||||
<img class="logo" src="assets/images/logo.svg" alt="ErkkiAI™">
|
<div class="box">
|
||||||
<div class="branding">
|
<img class="logo" src="assets/images/logo.svg" alt="ErkkiAI™">
|
||||||
<h1 class="name">ErkkiAI™</h1>
|
<div class="branding">
|
||||||
<span class="slogan">Energiatehokkuutta kiinteistöllesi</span>
|
<h1 class="name">ErkkiAI™</h1>
|
||||||
<a class="button" href="#features"><i class="fa-solid fa-chevron-down"></i></a>
|
<span class="slogan">Energy efficiency for your property</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!--<div class="credits">
|
||||||
|
<a href="https://erkkiai.com">©2024 <span title="Christer Warén & Tomi Jokinen">ErkkiAI™</span></a>
|
||||||
|
<a class="powered-by" href="https://waren.io">Powered by Warén Group</a>
|
||||||
|
</div>
|
||||||
|
<i class="arrow fa-solid fa-chevron-down"></i>-->
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
|
<section id="personalization">
|
||||||
|
<img src="assets/images/42qj-q2us-avtm-xm94.webp" alt="Customized Erkki (Generated by Microsoft Designer)">
|
||||||
|
<h2>Personalize your Erkki!</h2>
|
||||||
|
</section>
|
||||||
<section id="features">
|
<section id="features">
|
||||||
|
<h2>Features</h2>
|
||||||
|
<div class="list">
|
||||||
|
<div class="feature">
|
||||||
|
<i class="fa-solid fa-comments"></i>
|
||||||
|
<span class="name">Conversations</span>
|
||||||
|
<span class="description">Manage property with ease!</span>
|
||||||
|
</div>
|
||||||
|
<div class="feature">
|
||||||
|
<i class="fa-solid fa-gavel"></i>
|
||||||
|
<span class="name">Decisions</span>
|
||||||
|
<span class="description">Make decisions with AI suggestions!</span>
|
||||||
|
</div>
|
||||||
|
<div class="feature">
|
||||||
|
<i class="fa-regular fa-circle-question"></i>
|
||||||
|
<span class="name">Questions</span>
|
||||||
|
<span class="description">Improve AI with answers!</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section id="looking">
|
<section id="looking">
|
||||||
|
<img src="assets/images/e2p7-nbv5-n8y8-getn.jpg" alt="Together Stronger (Generated by Microsoft Designer)">
|
||||||
|
<h2>We're looking for funding!</h2>
|
||||||
</section>
|
</section>
|
||||||
<section id="contact">
|
<section id="contact">
|
||||||
<h2>Let's improve your property together!</h2>
|
<h2>Let's improve your property together!</h2>
|
||||||
<div class="persons">
|
<div class="peoples">
|
||||||
<div class="person">
|
<div class="people">
|
||||||
<img src="assets/images/person/cwchristerw.png" alt="Christer Warén">
|
<img src="assets/images/people/cwchristerw.png" alt="Christer Warén">
|
||||||
<span class="name">Christer Warén</span>
|
<span class="name">Christer Warén</span>
|
||||||
<span class="number">+358458420860</span>
|
<span class="number">+358458420860</span>
|
||||||
<div class="links"><a href="https://christerwaren.fi"><i class="fa-solid fa-globe"></i></a> <a href=""><i class="fa-brands fa-linkedin"></i></a> <a href=""><i class="fa-brands fa-github"></i></a></div>
|
<div class="links"><a href="https://christerwaren.fi"><i class="fa-solid fa-globe"></i></a> <a href="https://linkedin.com/in/cwchristerw"><i class="fa-brands fa-linkedin"></i></a> <a href="https://github.com/cwchristerw"><i class="fa-brands fa-github"></i></a></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="person">
|
<div class="people">
|
||||||
<img src="assets/images/person/psyko85.png" alt="Tomi Jokinen">
|
<img src="assets/images/people/psyko85.png" alt="Tomi Jokinen">
|
||||||
<span class="name">Tomi Jokinen</span>
|
<span class="name">Tomi Jokinen</span>
|
||||||
<span class="number">+358 40 068 2462</span>
|
<span class="number">+358 40 068 2462</span>
|
||||||
<div class="links"><a href="https://erkkiai.com"><i class="fa-solid fa-globe"></i></a> <a href=""><i class="fa-brands fa-linkedin"></i></a> <a href=""><i class="fa-brands fa-github"></i></a></div>
|
<div class="links"><a href="https://erkkiai.com"><i class="fa-solid fa-globe"></i></a> <a href="https://linkedin.com/in/tomi-jokinen-a10a8739"><i class="fa-brands fa-linkedin"></i></a> <a href="https://github.com/psyko85"><i class="fa-brands fa-github"></i></a></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
|
||||||
<a href="https://erkkiai.com">©2024 <span title="Christer Warén & Tomi Jokinen">ErkkiAI™</span></a>
|
|
||||||
<a class="powered-by" href="https://waren.io">Powered by Warén Group</a>
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user