-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
153 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
title: rKovtun Portfolio | ||
title: Roman Kovtun Portfolio | ||
logo: rKovtun | ||
email: [email protected] | ||
description: > | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!--Facebook Pixel--> | ||
<meta property="og:url" | ||
content="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"/> | ||
<meta property="fb:app_id" content="855777757936979"/> | ||
<meta property="og:type" content="profile"/> | ||
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"/> | ||
<meta property="og:description" content="Front-end Web Developer with 4 years of experience in developing, analyzing user interface/experience, testing, debugging, deploying, and training staff within landing pages and eCommerce technologies. "/> | ||
<meta property="og:image" | ||
content="image/roman-kovtun.jpg"/> | ||
|
||
<script> | ||
window.fbAsyncInit = function() { | ||
FB.init({ | ||
appId : '855777757936979', | ||
cookie : true, | ||
xfbml : true, | ||
version : 'v2.11' | ||
}); | ||
FB.AppEvents.logPageView(); | ||
}; | ||
(function(d, s, id){ | ||
var js, fjs = d.getElementsByTagName(s)[0]; | ||
if (d.getElementById(id)) {return;} | ||
js = d.createElement(s); js.id = id; | ||
js.src = "https://connect.facebook.net/en_US/sdk.js"; | ||
fjs.parentNode.insertBefore(js, fjs); | ||
}(document, 'script', 'facebook-jssdk')); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@mixin maxW($param) { | ||
@media (max-width: $param) { | ||
@content; | ||
} | ||
} | ||
|
||
@mixin small-phone { | ||
@media (max-width: 320px) { | ||
@content; | ||
} | ||
} | ||
@mixin xs { | ||
@media (max-width: 767px) { | ||
@content; | ||
} | ||
} | ||
@mixin sm { | ||
@media (max-width: 991px) { | ||
@content; | ||
} | ||
} | ||
@mixin md { | ||
@media (max-width: 1199px) { | ||
@content; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,59 @@ | ||
.portfolio { | ||
width: 100%; | ||
width : 100%; | ||
padding : 40px 50px 0; | ||
@include sm { | ||
padding : 20px 30px 0; | ||
} | ||
@include small-phone { | ||
padding: 20px 15px 0; | ||
} | ||
} | ||
.portfolio__wrapper { | ||
display: flex; | ||
justify-content: flex-start; | ||
margin-right: -10px; | ||
margin-left: -10px; | ||
max-width: 100%; | ||
flex-wrap: wrap; | ||
display : flex; | ||
justify-content : flex-start; | ||
margin-right : -10px; | ||
margin-left : -10px; | ||
max-width : 100%; | ||
flex-wrap : wrap; | ||
@include sm { | ||
justify-content : center; | ||
margin-left : 0; | ||
margin-right : 0; | ||
} | ||
} | ||
.portfolio__item { | ||
flex : 0 0 (100%/3); | ||
max-width: (100%/3); | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
margin-bottom: 15px; | ||
flex : 0 0 (100%/3); | ||
max-width : (100%/3); | ||
padding-left : 10px; | ||
padding-right : 10px; | ||
margin-bottom : 15px; | ||
@include sm { | ||
max-width : 50%; | ||
flex : 0 0 50%; | ||
} | ||
@include maxW(701px) { | ||
max-width : 100%; | ||
flex : 0 0 100%; | ||
} | ||
} | ||
.portfolio__card { | ||
box-shadow : 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); | ||
background-color: $white; | ||
border-radius: 4px; | ||
overflow: hidden; | ||
background-color : $white; | ||
border-radius : 4px; | ||
overflow : hidden; | ||
a:hover { | ||
text-decoration: none; | ||
text-decoration : none; | ||
} | ||
img { | ||
width: 100%; | ||
height: auto; | ||
width : 100%; | ||
height : auto; | ||
//TODO: remove later | ||
min-height: 185px; | ||
min-height : 185px; | ||
} | ||
span { | ||
font-weight: 300; | ||
padding: 10px 14px; | ||
text-align: center; | ||
display: block; | ||
font-weight : 300; | ||
padding : 10px 14px; | ||
text-align : center; | ||
display : block; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters