update
This commit is contained in:
parent
2f2761daed
commit
cad1c2f65a
20
css/main.css
20
css/main.css
@ -1,20 +0,0 @@
|
|||||||
*{
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
body{
|
|
||||||
padding-left: 15%;
|
|
||||||
padding-right: 15%;
|
|
||||||
}
|
|
||||||
.header{
|
|
||||||
display: flex;
|
|
||||||
background-color: red;
|
|
||||||
}
|
|
||||||
.header a{
|
|
||||||
flex-direction: column;
|
|
||||||
background-color: blue;
|
|
||||||
margin: 5px;
|
|
||||||
}
|
|
||||||
.header a .right{
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
73
index.html
73
index.html
@ -1,73 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Filip Rojek</title>
|
|
||||||
<link rel="stylesheet" href="./css/main.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header class="header">
|
|
||||||
<a href="#">Home</a>
|
|
||||||
<a href="#">Projects</a>
|
|
||||||
<a href="#">Blog</a>
|
|
||||||
<a href="#" class="right">Contact me</a>
|
|
||||||
</header>
|
|
||||||
<section class="about-me">
|
|
||||||
<h1>Vítej na mé stránce</h1>
|
|
||||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus ea totam debitis porro, incidunt quam tempora sint, cumque cupiditate aliquid libero neque inventore. Consequuntur exercitationem temporibus vero enim, labore earum.</p>
|
|
||||||
</section>
|
|
||||||
<section class="projects">
|
|
||||||
<h2>Projekty</h2>
|
|
||||||
<div class="project">
|
|
||||||
<div class="about-project">
|
|
||||||
<h3>Fofrbazar</h3>
|
|
||||||
<a href="https://www.fofrbazar.cz">link</a>
|
|
||||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi necessitatibus sequi molestiae iste eos corrupti obcaecati voluptatibus tempora expedita libero. Consectetur, sunt voluptate. Similique, maiores magnam soluta natus animi doloremque.</p>
|
|
||||||
</div>
|
|
||||||
<div class="technologies">
|
|
||||||
<ul>
|
|
||||||
<li>Php 7.4</li>
|
|
||||||
<li>Laravel 8</li>
|
|
||||||
<li>MySQL</li>
|
|
||||||
<li>Vue.js</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="source-code">
|
|
||||||
<a href="https://github.com/fofrbazar/fb-website" class="github">GitHub</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="project">
|
|
||||||
<div class="about-project">
|
|
||||||
<h3>Portfolio</h3>
|
|
||||||
<a href="http://portfolio.fofrbazar.cz">link</a>
|
|
||||||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Earum maxime, quis enim, magni modi labore recusandae reiciendis nisi assumenda incidunt commodi quae sapiente pariatur? Recusandae, corporis minus. Eligendi, ducimus consectetur.</p>
|
|
||||||
</div>
|
|
||||||
<div class="technologies">
|
|
||||||
<ul>
|
|
||||||
<li>Node.js</li>
|
|
||||||
<li>Express.js</li>
|
|
||||||
<li>REST Api</li>
|
|
||||||
<li>MongoDB</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="source-code">
|
|
||||||
<a href="https://github.com/fofrbazar/portfolio" class="github">GitHub</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<footer class="footer">
|
|
||||||
<div class="text">
|
|
||||||
<p>STAY CONNECTED</p>
|
|
||||||
</div>
|
|
||||||
<div class="links">
|
|
||||||
<a href="https://github.com/filiprojek">GitHub</a>
|
|
||||||
<a href="https://linkedin.com/in/filiprojek">LinkedIn</a>
|
|
||||||
<a href="#">Discord</a>
|
|
||||||
<a href="https://instagram.com/fildarojku">Instagram</a>
|
|
||||||
<a href="mailto:filip@filiprojek.cz">E-mail</a>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
80
v1/css/main.css
Normal file
80
v1/css/main.css
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
:root{
|
||||||
|
--fontFam: 'Poppins', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
*{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
font-family: var(--fontFam);
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.page{
|
||||||
|
width: 80%;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page > *{
|
||||||
|
margin: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.projects > *{
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.project > *{
|
||||||
|
margin: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header{
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
display: flex;
|
||||||
|
background-color: white;
|
||||||
|
z-index: 10;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 1rem;
|
||||||
|
width: 100%;
|
||||||
|
box-shadow: rgb(0 0 0 / 5%) 0px 6px 24px 0px, rgb(0 0 0 / 8%) 0px 0px 0px 1px;}
|
||||||
|
.header a{
|
||||||
|
margin: 5px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h3{
|
||||||
|
position: relative;
|
||||||
|
z-index: 4;
|
||||||
|
color: blue;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
filter: drop-shadow(0 0 0.25rem rgba(0,0,0,0.2));
|
||||||
|
}
|
||||||
|
|
||||||
|
header h3:after{
|
||||||
|
content: '</label>';
|
||||||
|
position: absolute;
|
||||||
|
font-size: 1.9rem;
|
||||||
|
color: rgba(128, 128, 128, 0.219);
|
||||||
|
bottom: -15px;
|
||||||
|
right: -70px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h3::before{
|
||||||
|
content: '#BEZ tagů';
|
||||||
|
position: absolute;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
color: rgba(128, 128, 128, 0.219);
|
||||||
|
bottom: 5px;
|
||||||
|
z-index: 1;
|
||||||
|
left: -80px;
|
||||||
|
}
|
87
v1/index.html
Normal file
87
v1/index.html
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Filip Rojek</title>
|
||||||
|
<link rel="stylesheet" href="./css/main.css">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js" defer></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/CSSRulePlugin.min.js" integrity="sha512-0bzaetZStCnsUgbCtGVxftzF/L32PNOnrMlYLXwBOKl8cUjTSSDfJVyyJsNwGoI0iE0WUqni2eEfO35kJjFj5g==" crossorigin="anonymous" defer></script>
|
||||||
|
<script src="./js/app.js" defer></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="header">
|
||||||
|
<div class="left">
|
||||||
|
<a href="#">Home</a>
|
||||||
|
<a href="#">Projects</a>
|
||||||
|
<a href="#">Blog</a>
|
||||||
|
</div>
|
||||||
|
<div class="jmeno">
|
||||||
|
<h3>Filip Roudžek</h3>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<a href="#">Contact me</a>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<section class="page">
|
||||||
|
<section class="about-me">
|
||||||
|
<h1>Vítej na mé stránce</h1>
|
||||||
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus ea totam debitis porro, incidunt quam tempora sint, cumque cupiditate aliquid libero neque inventore. Consequuntur exercitationem temporibus vero enim, labore earum.</p>
|
||||||
|
</section>
|
||||||
|
<section class="projects">
|
||||||
|
<h2>Projekty</h2>
|
||||||
|
<div class="project">
|
||||||
|
<div class="about-project">
|
||||||
|
<h3>Fofrbazar</h3>
|
||||||
|
<a href="https://www.fofrbazar.cz">link</a>
|
||||||
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi necessitatibus sequi molestiae iste eos corrupti obcaecati voluptatibus tempora expedita libero. Consectetur, sunt voluptate. Similique, maiores magnam soluta natus animi doloremque.</p>
|
||||||
|
</div>
|
||||||
|
<div class="technologies">
|
||||||
|
<ul>
|
||||||
|
<li>Php 7.4</li>
|
||||||
|
<li>Laravel 8</li>
|
||||||
|
<li>MySQL</li>
|
||||||
|
<li>Vue.js</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="source-code">
|
||||||
|
<a href="https://github.com/fofrbazar/fb-website" class="github">GitHub</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="project">
|
||||||
|
<div class="about-project">
|
||||||
|
<h3>Portfolio</h3>
|
||||||
|
<a href="http://portfolio.fofrbazar.cz">link</a>
|
||||||
|
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Earum maxime, quis enim, magni modi labore recusandae reiciendis nisi assumenda incidunt commodi quae sapiente pariatur? Recusandae, corporis minus. Eligendi, ducimus consectetur.</p>
|
||||||
|
</div>
|
||||||
|
<div class="technologies">
|
||||||
|
<ul>
|
||||||
|
<li>Node.js</li>
|
||||||
|
<li>Express.js</li>
|
||||||
|
<li>REST Api</li>
|
||||||
|
<li>MongoDB</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="source-code">
|
||||||
|
<a href="https://github.com/fofrbazar/portfolio" class="github">GitHub</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="text">
|
||||||
|
<p>STAY CONNECTED</p>
|
||||||
|
</div>
|
||||||
|
<div class="links">
|
||||||
|
<a href="https://github.com/filiprojek">GitHub</a>
|
||||||
|
<a href="https://linkedin.com/in/filiprojek">LinkedIn</a>
|
||||||
|
<a href="#">Discord</a>
|
||||||
|
<a href="https://instagram.com/fildarojku">Instagram</a>
|
||||||
|
<a href="mailto:filip@filiprojek.cz">E-mail</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
</html>
|
8
v1/js/app.js
Normal file
8
v1/js/app.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
const listItems = document.querySelectorAll('li')
|
||||||
|
const header = document.querySelectorAll('header')
|
||||||
|
|
||||||
|
const Fíla = document.querySelector('.jmeno h3')
|
||||||
|
gsap.from(listItems,{ opacity: 0, stagger: 0.1, ease: 'power4.out', duration: .6, x: -30, delay: .3})
|
||||||
|
gsap.from(header, {y:-100})
|
||||||
|
|
||||||
|
gsap.fromTo(Fíla, {opacity: 0, scale: .9}, {opacity:1, scale:1, delay: 1})
|
70
v2/css/style.css
Normal file
70
v2/css/style.css
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
|
||||||
|
:root{
|
||||||
|
--text-color: black;
|
||||||
|
}
|
||||||
|
*{
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
html{
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.header{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.header .left{
|
||||||
|
display: flex;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
.header a{
|
||||||
|
text-decoration: underline;
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
.header .jmeno{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.header > *{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.header .right{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.wrapper{
|
||||||
|
margin-right: auto;
|
||||||
|
margin-left: auto;
|
||||||
|
max-width: 80%;
|
||||||
|
padding-right: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
.page > *{
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
.projects > *:not(:first-child){
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
.projects > :first-child{
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
}
|
||||||
|
.footer{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
.footer .text{
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
.footer .links a{
|
||||||
|
color: var(--text-color);
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
83
v2/index.html
Normal file
83
v2/index.html
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Filip Rojek</title>
|
||||||
|
<link rel="stylesheet" href="./css/style.css">
|
||||||
|
<script src="./js/script.js" defer></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="header">
|
||||||
|
<div class="left">
|
||||||
|
<a href="#">Home</a>
|
||||||
|
<a href="#">Projects</a>
|
||||||
|
<a href="#">Blog</a>
|
||||||
|
</div>
|
||||||
|
<div class="jmeno">
|
||||||
|
<h3>Filip Roudžek</h3>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<a href="#">Contact me</a>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<section class="page wrapper">
|
||||||
|
<section class="about-me">
|
||||||
|
<h1>Vítej na mé stránce</h1>
|
||||||
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus ea totam debitis porro, incidunt quam tempora sint, cumque cupiditate aliquid libero neque inventore. Consequuntur exercitationem temporibus vero enim, labore earum.</p>
|
||||||
|
</section>
|
||||||
|
<section class="projects">
|
||||||
|
<h2>Projekty</h2>
|
||||||
|
<div class="project">
|
||||||
|
<div class="about-project">
|
||||||
|
<h3>Fofrbazar</h3>
|
||||||
|
<a href="https://www.fofrbazar.cz">link</a>
|
||||||
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi necessitatibus sequi molestiae iste eos corrupti obcaecati voluptatibus tempora expedita libero. Consectetur, sunt voluptate. Similique, maiores magnam soluta natus animi doloremque.</p>
|
||||||
|
</div>
|
||||||
|
<div class="technologies">
|
||||||
|
<ul>
|
||||||
|
<li>Php 7.4</li>
|
||||||
|
<li>Laravel 8</li>
|
||||||
|
<li>MySQL</li>
|
||||||
|
<li>Vue.js</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="source-code">
|
||||||
|
<a href="https://github.com/fofrbazar/fb-website" class="github">GitHub</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="project">
|
||||||
|
<div class="about-project">
|
||||||
|
<h3>Portfolio</h3>
|
||||||
|
<a href="http://portfolio.fofrbazar.cz">link</a>
|
||||||
|
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Earum maxime, quis enim, magni modi labore recusandae reiciendis nisi assumenda incidunt commodi quae sapiente pariatur? Recusandae, corporis minus. Eligendi, ducimus consectetur.</p>
|
||||||
|
</div>
|
||||||
|
<div class="technologies">
|
||||||
|
<ul>
|
||||||
|
<li>Node.js</li>
|
||||||
|
<li>Express.js</li>
|
||||||
|
<li>REST Api</li>
|
||||||
|
<li>MongoDB</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="source-code">
|
||||||
|
<a href="https://github.com/fofrbazar/portfolio" class="github">GitHub</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="text">
|
||||||
|
<p>STAY CONNECTED</p>
|
||||||
|
</div>
|
||||||
|
<div class="links">
|
||||||
|
<a href="https://github.com/filiprojek">GitHub</a>
|
||||||
|
<a href="https://linkedin.com/in/filiprojek">LinkedIn</a>
|
||||||
|
<a href="#">Discord</a>
|
||||||
|
<a href="https://instagram.com/fildarojku">Instagram</a>
|
||||||
|
<a href="mailto:filip@filiprojek.cz">E-mail</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
0
v2/js/script.js
Normal file
0
v2/js/script.js
Normal file
Loading…
Reference in New Issue
Block a user