working version

This commit is contained in:
timothypidashev
2021-07-15 11:50:18 -07:00
parent 966ce43331
commit 142129a13f
23 changed files with 4465 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

81
venv/index.html Normal file
View File

@@ -0,0 +1,81 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timothy Pidashev</title>
<link rel="shortcut icon" type="image/png" href="images/elements/png/n8dev.png"/>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<section class="centered">
<div>
<h1 class="hero__header pink__colored" data-aos="fade-right">Hello,</h1>
<h1 class="hero__header" data-aos="fade-left">I'm Tim.</h1>
</div>
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
</section>
<section class="centered">
<div>
<h1 class="about__header" data-aos="zoom-out">
I'm a 16-year-old
<span class="orange__highlight">on an epic journey</span>
</h1>
<h1 class="about__header" data-aos="flip-down">
to become a
<span class="orange__highlight">software developer!</span>
</h1>
</div>
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
</section>
<div id="end__of__page" class="centered">
<div class="row">
<div class="logo">
<a href="https://www.youtube.com/channel/UCEpaCDz-wZ21kR8nA8xDSzg" target="_blank">
<img src="images/elements/png/youtube.png" alt="youtube logo" data-aos="fade-left" class="logo__image">
</a>
</div>
<div class="logo">
<a href="https://twitter.com/Timothy89184676" target="_blank">
<img src="images/elements/png/twitter.png" alt="twitter logo" data-aos="zoom-in" class="logo__image">
</a>
</div>
<div class="logo">
<a href="https://discord.gg/34RqygKbtX" target="_blank">
<img src="images/elements/png/discord.png" alt="discord logo" data-aos="fade-right" class="logo__image">
</a>
</div>
</div>
<div class="row">
<div class="logo">
<a href="https://timmyverybored.itch.io/" target="_blank">
<img src="images/elements/png/itch.png" alt="itch logo" data-aos="fade-right" class="logo__image">
</a>
</div>
<div class="logo">
<a href="https://github.com/timothypidashev" target="_blank">
<img src="images/elements/png/github.png" alt="github logo" data-aos="zoom-out" class="logo__image">
</a>
</div>
<div class="logo">
<a href="mailto: pidashev.tim@gmail.com" target="_blank">
<img src="images/elements/png/gmail.png" alt="gmail logo" data-aos="fade-left" class="logo__image">
</a>
</div>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>AOS.init(
{
once: false,
mirror: true,
anchorPlacement: 'top-bottom',
offset: 0,
duration: 800
});</script>
</body>
</html>

View File

@@ -1,10 +1,10 @@
from flask import Flask from flask import Flask
app = Flask(__name__) app = Flask(__name__, static_folder=".", static_url_path="")
@app.route("/") @app.route("/")
def home(): def home():
return "Home Page Route" return app.send_static_file("index.html")

100
venv/styles.css Normal file
View File

@@ -0,0 +1,100 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
background-color: #E9CBAF;
color: #6C3D4C;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 1vh;
text-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15);
scroll-behavior: smooth;
}
#end__of__page {
margin-bottom: -30vh;
}
.centered {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.pink__colored {
color: #F18080;
}
.orange__highlight {
background-color: #F9A875;
border-radius: 20px;
line-height: 1.5;
padding-right: 0.9vw;
padding-left: 0.9vw;
font-weight: 520;
text-shadow: none;
box-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15);
}
.hero__header {
font-size: 6vw;
font-weight: 400;
}
.divider__line {
height: 4vw;
}
.about__header {
font-size: 3vw;
font-weight: 400;
}
.logo {
transition: all 0.2s ease-in-out;
}
.logo:hover {
transform: scale(1.1);
cursor: pointer;
}
.logo__image {
margin-left: 2vw;
margin-right: 2vw;
width: 10vw;
}
@media only screen and (max-width: 1024px) {
.hero__header {
font-size: 12vw;
font-weight: 400;
}
.about__header {
font-size: 5vw;
font-weight: 400;
}
.divider__line {
height: 8vw;
}
.logo__image {
margin-left: 2vw;
margin-right: 2vw;
width: 14vw;
}
}