Skip to content

Commit

Permalink
portfolio done
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriimakohon committed Aug 2, 2020
1 parent c13d91d commit ffb9362
Show file tree
Hide file tree
Showing 11 changed files with 164 additions and 18 deletions.
Binary file added assets/images/projects/art-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/art-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/art-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/model-1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/model-2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/model-3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/project-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/project-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/projects/project-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 47 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body id="body">

<!-- Sprite -->
<svg style="display: none;">
<symbol id="brush" viewBox="0 0 512 512">
Expand Down Expand Up @@ -93,13 +92,12 @@
</g>
</symbol>
</svg> <!-- /Sprite -->

<div class="navbar">
<div class="navbar-items">
<a href="#">MAIN</a>
<a href="#about">ABOUT</a>
<a href="#">PROJECTS</a>
<a href="#">CONTACTS</a>
<a href="#projects">PROJECTS</a>
<a href="#contacts">CONTACTS</a>
</div>
<div class="navbar-social">
<a href="https://t.me/MIYAZAKl" target="_blank"><img src="assets/images/telegram.png" alt="telegram icon"></a>
Expand All @@ -108,7 +106,6 @@
<a href="https://www.linkedin.com/in/юрий-макогон-33ba571b3/" target="_blank"><img src="assets/images/linkedin.png" alt="linkedin icon"></a>
</div>
</div>

<!-- MAIN -->
<div id="main">
<div id="main__inner">
Expand Down Expand Up @@ -149,15 +146,14 @@ <h1>Yurii</h1>
</div>
</div>
<div class="look-work">
<span>If you are interested in my work - look in the</span>
<span>If you are interested in my works - look in the</span>
<div class="btn-container">
<div class="btn btn--works">
<a>Projects</a>
<a href="#projects">Projects</a>
</div>
</div>
</div>
</div> <!-- /MAIN -->

<!-- ABOUT -->
<div id="about">
<h1 class="section-header">About me</h1>
Expand All @@ -184,7 +180,7 @@ <h1 class="section-header">About me</h1>
<ul>
<li>Version control systems</li>
<li>C language</li>
<li>HMTL &#38 CSS</li>
<li>HMTL &#38; CSS</li>
<li>JavaScript</li>
<li>GTK+</li>
</ul>
Expand Down Expand Up @@ -232,15 +228,52 @@ <h1 class="section-header">About me</h1>
</div>
</div>
</div> <!-- /ABOUT -->

<!-- PROJECTS -->
<div id="projects">
<h1 class="section-header">My projects</h1>
<div class="container">

<h3>Models gallery</h3>
<div class="gallery gallery--models">
<img src="assets/images/projects/model-1.jpeg" alt="model 1">
<img src="assets/images/projects/model-2.jpeg" alt="model 2">
<img src="assets/images/projects/model-3.jpeg" alt="model 3">
</div>
<h3>Art gallery</h3>
<div class="gallery gallery--arts">
<img src="assets/images/projects/art-1.jpg" alt="art 1">
<img src="assets/images/projects/art-2.jpg" alt="art 2">
<img src="assets/images/projects/art-3.jpg" alt="art 3">
</div>
<h3>Developer projects</h3>
<div class="gallery gallery--devs">
<div class="project-item">
<div>Uchat</div>
<a href="https://github.com/unitucode/uchat" target="_blank">
<div class="img-container">
<img src="assets/images/projects/project-1.jpg" alt="project 1">
</div>
</a>
</div>
<div class="project-item">
<div>Ushell</div>
<a href="https://github.com/unitucode/ush" target="_blank">
<span class="img-container">
<img src="assets/images/projects/project-2.jpg" alt="project 2">
</span>
</a>
</div>
<div class="project-item">
<div>Uls</div>
<a href="https://github.com/yuriimakohon/uls" target="_blank">
<div class="img-container">
<img src="assets/images/projects/project-3.jpg" alt="project 3">
</div>
</a>
</div>
</div>
</div>
</div> <!-- /PROJECTS -->

<!-- CONTACTS -->
<div id="contacts">
<div class="container">
<footer>
Expand All @@ -258,9 +291,9 @@ <h1 class="section-header">My projects</h1>
<a href="https://www.linkedin.com/in/юрий-макогон-33ba571b3/" target="_blank"><img src="assets/images/linkedin.png" alt="linkedin icon"></a>
</div>
</div>
<span class="copyright">&copy 2020 UPortfolio. All rights reserved.</span>
<div class="copyright">&copy; 2020 UPortfolio. All rights reserved.</div>
</footer>
</div>
</div>
</div> <!-- /CONTACTS -->
</body>
</html>
121 changes: 117 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

body {
background: linear-gradient(45deg, #7708ff, #a90496, red);
background: linear-gradient(45deg, #2d0460, #870478, rgb(215, 0, 0));
background-repeat: no-repeat;
height: 100%;
margin: 0;
Expand Down Expand Up @@ -304,10 +304,108 @@ h1, h2, h3, h4, h5, h6 {
fill: rgba(255, 255, 255, 0.7);
}

/* ======| PROJECTS |===== */

#projects {
margin-bottom: 5vw;
}

#projects h3 {
margin-top: 3vw;
font-size: 3vw;
}

.gallery {
padding: 3vw 2vw;
display: grid;
gap: 3vw;
}

.gallery {
grid-template-columns: 1fr 1fr 1fr;
}

.gallery--models img,
.gallery--arts img {
border-radius: .5vw;
transition: .3s;
}

.gallery--models img {
width: 100%;
}

.gallery--arts img {
margin: 0 auto;
height: 22vw;
}

.gallery--models img:hover,
.gallery--arts img:hover {
transform: scale(1.1);
border-radius: .5vw;
box-shadow: .3vw .3vw 1vw rgba(000, 000, 000, 0.5);
}

.gallery--devs {
grid-template-columns: 1fr;
}

.project-item {
text-align: center;
}

.project-item > div {
font-size: 3vw;
font-weight: bold;
margin-bottom: 1vw;
}


.img-container {
display: inline-block;
position: relative;
}

.project-item img {
width: 40vw;
}

.img-container::after {
content: '';
position: absolute;
left: 0;
background: linear-gradient(#7708ff, #7b0089);
opacity: 0;
width: 100%;
height: 100%;
z-index: 2;
transition: .3s;
}

.img-container:hover::after {
opacity: .9;
}

.img-container::before {
content: 'Open on GitHub';
position: absolute;
font-size: 3vw;
opacity: 0;
top: 45%;
width: 100%;
z-index: 3;
transition: .3s;
}

.img-container:hover::before {
opacity: 1;
}

/* ======| CONTACTS |===== */

#contacts {
padding: 3vw 0;
padding: 2vw 0;
background: rgba(000, 000, 000, 0.5);
}

Expand Down Expand Up @@ -336,7 +434,8 @@ footer {

.copyright {
color: rgba(255, 255, 255, 0.5);
margin-top: 4vw;
text-align: center;
margin-top: 2vw;
width: 100%;
}

Expand All @@ -358,6 +457,20 @@ footer {
margin-top: 250px;
}
.about--inner {
grid-template-columns: 1fr;
grid-template-columns: 1fr;
}
.gallery {
padding: 0 10vw;
grid-template-columns: 1fr;
gap: 3vw;
}
.gallery--arts img {
height: auto;
width: 100%;
}
.gallery img:hover {
transform: none;
box-shadow: none;
gap: 3vw;
}
}

0 comments on commit ffb9362

Please sign in to comment.