update
This commit is contained in:
		
							
								
								
									
										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})
 | 
			
		||||
		Reference in New Issue
	
	Block a user