Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d7130929d8 | ||
|
|
aca7c706ac | ||
|
|
7672c75f29 | ||
|
|
be9d5be429 | ||
|
|
caca5b16c5 | ||
|
|
963e29e4f4 | ||
|
|
00614ebc7a | ||
|
|
2c8a235b4c | ||
|
|
d1aaebdefe |
58
blog.html
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Blog</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="Timothy Pidashev" content="A 17-year-old on an epic journey to become a software developer!" />
|
||||||
|
<meta name="keywords" content="Timothy Pidashev, timmypidashev, timmy, programming, github" />
|
||||||
|
<link rel="shortcut icon" type="image/png" href="images/elements/png/timmy.png"/>
|
||||||
|
<link rel="stylesheet" href="css/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>
|
||||||
|
<!-- Overlay -->
|
||||||
|
<div id="myNav" class="overlay">
|
||||||
|
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||||
|
<div class="overlay-content">
|
||||||
|
<a href="download.html">Download YT</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Navbar -->
|
||||||
|
<div class="header">
|
||||||
|
<a href="#default" class="logo" data-aos="zoom-in">Timmy</a>
|
||||||
|
<div class="header-right">
|
||||||
|
<a href="index.html" data-aos="zoom-in">About</a>
|
||||||
|
<a class="active" href="blog.html" data-aos="zoom-in" data-aos="zoom-in">Blog</a>
|
||||||
|
<a href="projects.html" data-aos="zoom-in">Projects</a>
|
||||||
|
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ </span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Content -->
|
||||||
|
<!-- Section -->
|
||||||
|
<section class="centered">
|
||||||
|
<div>
|
||||||
|
<h1 class="hero__header" data-aos="flip-down">Work In Progress</h1>
|
||||||
|
</div>
|
||||||
|
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- JS -->
|
||||||
|
<script src="js/closeNav.js"></script>
|
||||||
|
<script src="js/openNav.js"></script>
|
||||||
|
<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>
|
||||||
188
css/styles.css
Normal file
@@ -0,0 +1,188 @@
|
|||||||
|
* {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navbar */
|
||||||
|
.header {
|
||||||
|
overflow: hidden;
|
||||||
|
background-color: #FB93DA;
|
||||||
|
padding: 20px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header a {
|
||||||
|
float: left;
|
||||||
|
color: #404082;
|
||||||
|
text-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15);
|
||||||
|
text-align: center;
|
||||||
|
padding: 12px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header a.logo {
|
||||||
|
font-size: 25px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header a:hover {
|
||||||
|
background-color: #D26BB9;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header a.active {
|
||||||
|
background-color: #404082;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overlay */
|
||||||
|
.overlay {
|
||||||
|
height: 100%;
|
||||||
|
width: 0;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background-color: rgb(0,0,0);
|
||||||
|
background-color: rgba(0,0,0, 0.9);
|
||||||
|
overflow-x: hidden;
|
||||||
|
transition: 0.5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overlay-content {
|
||||||
|
position: relative;
|
||||||
|
top: 25%;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overlay a {
|
||||||
|
padding: 8px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 36px;
|
||||||
|
color: #818181;
|
||||||
|
display: block;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overlay a:hover, .overlay a:focus {
|
||||||
|
color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overlay .closebtn {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
right: 45px;
|
||||||
|
font-size: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Style */
|
||||||
|
html {
|
||||||
|
background-color: #FB93DA;
|
||||||
|
color: #404082;
|
||||||
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 1vh;
|
||||||
|
text-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15);
|
||||||
|
-ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
|
||||||
|
scrollbar-width: none; /* Hide scrollbar for Firefox */
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
||||||
|
.html::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#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: #D26BB9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.orange__highlight {
|
||||||
|
background-color: #D26BB9;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
58
download.html
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Download YT</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="Timothy Pidashev" content="A 17-year-old on an epic journey to become a software developer!" />
|
||||||
|
<meta name="keywords" content="Timothy Pidashev, timmypidashev, timmy, programming, github" />
|
||||||
|
<link rel="shortcut icon" type="image/png" href="images/elements/png/timmy.png"/>
|
||||||
|
<link rel="stylesheet" href="css/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>
|
||||||
|
<!-- Overlay -->
|
||||||
|
<div id="myNav" class="overlay">
|
||||||
|
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||||
|
<div class="overlay-content">
|
||||||
|
<a href="download.html">Download YT</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Navbar -->
|
||||||
|
<div class="header">
|
||||||
|
<a href="#default" class="logo" data-aos="zoom-in">Timmy</a>
|
||||||
|
<div class="header-right">
|
||||||
|
<a href="index.html" data-aos="zoom-in">About</a>
|
||||||
|
<a href="blog.html" data-aos="zoom-in" data-aos="zoom-in">Blog</a>
|
||||||
|
<a href="projects.html" data-aos="zoom-in">Projects</a>
|
||||||
|
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ </span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Content -->
|
||||||
|
<!-- Section -->
|
||||||
|
<section class="centered">
|
||||||
|
<div>
|
||||||
|
<h1 class="hero__header" data-aos="flip-down">Work In Progress</h1>
|
||||||
|
</div>
|
||||||
|
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- JS -->
|
||||||
|
<script src="js/closeNav.js"></script>
|
||||||
|
<script src="js/openNav.js"></script>
|
||||||
|
<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>
|
||||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 653 B After Width: | Height: | Size: 653 B |
|
Before Width: | Height: | Size: 630 B After Width: | Height: | Size: 630 B |
|
Before Width: | Height: | Size: 515 B After Width: | Height: | Size: 515 B |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
57
index.html
@@ -1,22 +1,45 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
<title>Timothy Pidashev</title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Timothy Pidashev</title>
|
<meta name="Timothy Pidashev" content="A 17-year-old on an epic journey to become a software developer!" />
|
||||||
<link rel="shortcut icon" type="image/png" href="static/images/elements/png/timmy.png"/>
|
<meta name="keywords" content="Timothy Pidashev, timmypidashev, timmy, programming, github" />
|
||||||
<link rel="stylesheet" href="static/styles.css">
|
<link rel="shortcut icon" type="image/png" href="images/elements/png/timmy.png"/>
|
||||||
|
<link rel="stylesheet" href="css/styles.css">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<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 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" />
|
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<!-- Overlay -->
|
||||||
|
<div id="myNav" class="overlay">
|
||||||
|
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||||
|
<div class="overlay-content">
|
||||||
|
<a href="download.html">Download YT</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Navbar -->
|
||||||
|
<div class="header">
|
||||||
|
<a href="#default" class="logo" data-aos="zoom-in">Timmy</a>
|
||||||
|
<div class="header-right">
|
||||||
|
<a class="active" href="index.html" data-aos="zoom-in">About</a>
|
||||||
|
<a href="blog.html" data-aos="zoom-in" data-aos="zoom-in">Blog</a>
|
||||||
|
<a href="projects.html" data-aos="zoom-in">Projects</a>
|
||||||
|
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ </span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Content -->
|
||||||
<section class="centered">
|
<section class="centered">
|
||||||
<div>
|
<div>
|
||||||
<h1 class="hero__header pink__colored" data-aos="fade-right">Hello,</h1>
|
<h1 class="hero__header pink__colored" data-aos="fade-right">Hello, Im</h1>
|
||||||
<h1 class="hero__header" data-aos="fade-left">I'm Tim.</h1>
|
<h1 class="hero__header" data-aos="flip-down">Timothy</h1>
|
||||||
|
<h1 class="hero__header" data-aos="fade-left">Pidashev</h1>
|
||||||
</div>
|
</div>
|
||||||
<img src="static/images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
||||||
</section>
|
</section>
|
||||||
<section class="centered">
|
<section class="centered">
|
||||||
<div>
|
<div>
|
||||||
@@ -29,45 +52,48 @@
|
|||||||
<span class="orange__highlight">software developer!</span>
|
<span class="orange__highlight">software developer!</span>
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<img src="static/images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
||||||
</section>
|
</section>
|
||||||
<div id="end__of__page" class="centered">
|
<div id="end__of__page" class="centered">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="https://www.youtube.com/channel/UCEpaCDz-wZ21kR8nA8xDSzg" target="_blank">
|
<a href="https://www.youtube.com/channel/UCEpaCDz-wZ21kR8nA8xDSzg" target="_blank">
|
||||||
<img src="static/images/elements/png/youtube.png" alt="youtube logo" data-aos="fade-left" class="logo__image">
|
<img src="images/elements/png/youtube.png" alt="youtube logo" data-aos="fade-left" class="logo__image">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="https://twitter.com/Timothy89184676" target="_blank">
|
<a href="https://twitter.com/Timothy89184676" target="_blank">
|
||||||
<img src="static/images/elements/png/twitter.png" alt="twitter logo" data-aos="zoom-in" class="logo__image">
|
<img src="images/elements/png/twitter.png" alt="twitter logo" data-aos="zoom-in" class="logo__image">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="https://discord.gg/34RqygKbtX" target="_blank">
|
<a href="https://discord.gg/34RqygKbtX" target="_blank">
|
||||||
<img src="static/images/elements/png/discord.png" alt="discord logo" data-aos="fade-right" class="logo__image">
|
<img src="images/elements/png/discord.png" alt="discord logo" data-aos="fade-right" class="logo__image">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="https://timmyverybored.itch.io/" target="_blank">
|
<a href="https://timmyverybored.itch.io/" target="_blank">
|
||||||
<img src="static/images/elements/png/itch.png" alt="itch logo" data-aos="fade-right" class="logo__image">
|
<img src="images/elements/png/itch.png" alt="itch logo" data-aos="fade-right" class="logo__image">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="https://github.com/timmypidashev.com" target="_blank">
|
<a href="https://github.com/timmypidashev" target="_blank">
|
||||||
<img src="static/images/elements/png/github.png" alt="github logo" data-aos="zoom-out" class="logo__image">
|
<img src="images/elements/png/github.png" alt="github logo" data-aos="zoom-out" class="logo__image">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="mailto: pidashev.tim@gmail.com" target="_blank">
|
<a href="mailto: pidashev.tim@gmail.com" target="_blank">
|
||||||
<img src="static/images/elements/png/gmail.png" alt="gmail logo" data-aos="fade-left" class="logo__image">
|
<img src="images/elements/png/gmail.png" alt="gmail logo" data-aos="fade-left" class="logo__image">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- JS -->
|
||||||
|
<script src="js/closeNav.js"></script>
|
||||||
|
<script src="js/openNav.js"></script>
|
||||||
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
|
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
|
||||||
<script>AOS.init(
|
<script>AOS.init(
|
||||||
{
|
{
|
||||||
@@ -77,5 +103,6 @@
|
|||||||
offset: 0,
|
offset: 0,
|
||||||
duration: 800
|
duration: 800
|
||||||
});</script>
|
});</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
3
js/closeNav.js
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
function closeNav() {
|
||||||
|
document.getElementById("myNav").style.width = "0%";
|
||||||
|
}
|
||||||
3
js/openNav.js
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
function openNav() {
|
||||||
|
document.getElementById("myNav").style.width = "100%";
|
||||||
|
}
|
||||||
59
projects.html
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Projects</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="Timothy Pidashev" content="A 17-year-old on an epic journey to become a software developer!" />
|
||||||
|
<meta name="keywords" content="Timothy Pidashev, timmypidashev, timmy, programming, github" />
|
||||||
|
<link rel="shortcut icon" type="image/png" href="images/elements/png/timmy.png"/>
|
||||||
|
<link rel="stylesheet" href="css/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>
|
||||||
|
|
||||||
|
<!-- Overlay -->
|
||||||
|
<div id="myNav" class="overlay">
|
||||||
|
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||||
|
<div class="overlay-content">
|
||||||
|
<a href="download.html">Download YT</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Navbar -->
|
||||||
|
<div class="header">
|
||||||
|
<a href="#default" class="logo" data-aos="zoom-in">Timmy</a>
|
||||||
|
<div class="header-right">
|
||||||
|
<a href="index.html" data-aos="zoom-in">About</a>
|
||||||
|
<a href="blog.html" data-aos="zoom-in" data-aos="zoom-in">Blog</a>
|
||||||
|
<a class="active" href="projects.html" data-aos="zoom-in">Projects</a>
|
||||||
|
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ </span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Content -->
|
||||||
|
<!-- Section -->
|
||||||
|
<section class="centered">
|
||||||
|
<div>
|
||||||
|
<h1 class="hero__header" data-aos="flip-down">Work In Progress</h1>
|
||||||
|
</div>
|
||||||
|
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- JS -->
|
||||||
|
<script src="js/closeNav.js"></script>
|
||||||
|
<script src="js/openNav.js"></script>
|
||||||
|
<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>
|
||||||
@@ -1,100 +0,0 @@
|
|||||||
* {
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
background-color: #FB93DA;
|
|
||||||
color: #404082;
|
|
||||||
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: #D26BB9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.orange__highlight {
|
|
||||||
background-color: #D26BB9;
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||