-
-
Save symokevo/d44fa5ecafae9d94f301dd51ba5e166c to your computer and use it in GitHub Desktop.
Build and Deploy the Ultimate Web Development Portfolio
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
.app { | |
background-color: var(--primary-color); | |
font-family: var(--font-base); | |
} | |
.app__whitebg { | |
background-color: var(--white-color); | |
} | |
.app__primarybg { | |
background-color: var(--primary-color); | |
} | |
.app__container { | |
width: 100%; | |
min-height: 100vh; | |
display: flex; | |
flex-direction: row; | |
} | |
.app__flex { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} | |
.app__wrapper { | |
flex: 1; | |
width: 100%; | |
flex-direction: column; | |
padding: 4rem 2rem; | |
@media screen and (max-width: 450px) { | |
padding: 4rem 1rem 2rem; | |
} | |
} | |
.copyright { | |
width: 100%; | |
padding: 2rem 0 0; | |
display: flex; | |
flex-direction: column; | |
justify-content: flex-end; | |
align-items: flex-end; | |
p { | |
text-transform: uppercase; | |
color: var(--black-color); | |
} | |
} | |
.head-text { | |
font-size: 2.75rem; | |
font-weight: 800; | |
text-align: center; | |
color: var(--black-color); | |
text-transform: capitalize; | |
span { | |
color: var(--secondary-color); | |
} | |
@media screen and (min-width: 2000px) { | |
font-size: 4rem; | |
} | |
@media screen and (max-width: 450px) { | |
font-size: 2rem; | |
} | |
} | |
.p-text { | |
font-size: 0.8rem; | |
text-align: left; | |
color: var(--gray-color); | |
line-height: 1.5; | |
@media screen and (min-width: 2000px) { | |
font-size: 1.75rem; | |
} | |
} | |
.bold-text { | |
font-size: 1rem; | |
font-weight: 800; | |
color: var(--black-color); | |
text-align: left; | |
@media screen and (min-width: 2000px) { | |
font-size: 2rem; | |
} | |
@media screen and (max-width: 450px) { | |
font-size: 0.9rem; | |
} | |
} | |
.app__social { | |
display: flex; | |
justify-content: flex-end; | |
align-items: center; | |
flex-direction: column; | |
padding: 1rem; | |
div { | |
width: 40px; | |
height: 40px; | |
border-radius: 50%; | |
background-color: var(--white-color); | |
margin: 0.25rem 0; | |
border: 1px solid var(--lightGray-color); | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
transition: all 0.3s ease-in-out; | |
svg { | |
width: 15px; | |
height: 15px; | |
color: var(--gray-color); | |
} | |
&:hover { | |
background-color: var(--secondary-color); | |
border-color: var(--secondary-color); | |
svg { | |
color: var(--white-color); | |
} | |
} | |
@media screen and (min-width: 2000px) { | |
width: 70px; | |
height: 70px; | |
margin: 0.5rem 0; | |
svg { | |
width: 30px; | |
height: 30px; | |
} | |
} | |
} | |
} | |
.app__navigation { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
flex-direction: column; | |
padding: 1rem; | |
.app__navigation-dot { | |
width: 10px; | |
height: 10px; | |
border-radius: 50%; | |
background-color: #cbcbcb; | |
margin: 0.5rem; | |
transition: background-color 0.2s ease-in-out; | |
&:hover { | |
background-color: var(--secondary-color); | |
} | |
@media screen and (min-width: 2000px) { | |
width: 20px; | |
height: 20px; | |
} | |
} | |
} | |
@media screen and (max-width: 500px) { | |
.app__navigation, | |
.app__social { | |
display: none; | |
} | |
.copyright { | |
padding: 2rem; | |
} | |
} |
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
import email from '../assets/email.png'; | |
import mobile from '../assets/mobile.png'; | |
import api from '../assets/api.png'; | |
import cpp from '../assets/cpp.png'; | |
import css from '../assets/css.png'; | |
import figma from '../assets/figma.png'; | |
import flutter from '../assets/flutter.png'; | |
import git from '../assets/git.png'; | |
import graphql from '../assets/graphql.png'; | |
import html from '../assets/html.png'; | |
import javascript from '../assets/javascript.png'; | |
import mu5 from '../assets/mu5.png'; | |
import node from '../assets/node.png'; | |
import python from '../assets/python.png'; | |
import react from '../assets/react.png'; | |
import redux from '../assets/redux.png'; | |
import sass from '../assets/sass.png'; | |
import typescript from '../assets/typescript.png'; | |
import vue from '../assets/vue.png'; | |
import about01 from '../assets/about01.png'; | |
import about02 from '../assets/about02.png'; | |
import about03 from '../assets/about03.png'; | |
import about04 from '../assets/about04.png'; | |
import profile from '../assets/profile.png'; | |
import circle from '../assets/circle.svg'; | |
import logo from '../assets/logo.png'; | |
import adidas from '../assets/adidas.png'; | |
import amazon from '../assets/amazon.png'; | |
import asus from '../assets/asus.png'; | |
import bolt from '../assets/bolt.png'; | |
import nb from '../assets/nb.png'; | |
import skype from '../assets/skype.png'; | |
import spotify from '../assets/spotify.png'; | |
export default { | |
email, | |
mobile, | |
api, | |
cpp, | |
css, | |
figma, | |
flutter, | |
git, | |
graphql, | |
html, | |
javascript, | |
mu5, | |
node, | |
python, | |
react, | |
redux, | |
sass, | |
typescript, | |
vue, | |
about01, | |
about02, | |
about03, | |
about04, | |
profile, | |
circle, | |
logo, | |
adidas, | |
amazon, | |
asus, | |
bolt, | |
nb, | |
skype, | |
spotify, | |
}; |
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
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"); | |
:root { | |
--font-base: "DM Sans", sans-serif; | |
--primary-color: #edf2f8; | |
--secondary-color: #313bac; | |
--black-color: #030303; | |
--lightGray-color: #e4e4e4; | |
--gray-color: #6b7688; | |
--brown-color: #46364a; | |
--white-color: #ffffff; | |
} | |
* { | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0; | |
scroll-behavior: smooth; | |
} |
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
.app__skills { | |
flex: 1; | |
width: 100%; | |
flex-direction: column; | |
} | |
.app__skills-container { | |
width: 80%; | |
margin-top: 3rem; | |
display: flex; | |
flex-direction: row; | |
@media screen and (max-width: 900px) { | |
width: 100%; | |
flex-direction: column; | |
} | |
} | |
.app__skills-list { | |
flex: 1; | |
display: flex; | |
flex-wrap: wrap; | |
justify-content: flex-start; | |
align-items: flex-start; | |
margin-right: 5rem; | |
@media screen and (max-width: 900px) { | |
margin-right: 0; | |
justify-content: center; | |
align-items: center; | |
} | |
} | |
.app__skills-item { | |
flex-direction: column; | |
text-align: center; | |
margin: 1rem; | |
transition: all 0.3s ease-in-out; | |
div { | |
width: 90px; | |
height: 90px; | |
border-radius: 50%; | |
background-color: #fef4f5; | |
img { | |
width: 50%; | |
height: 50%; | |
} | |
&:hover { | |
box-shadow: 0 0 25px #fef4f5; | |
} | |
@media screen and (min-width: 2000px) { | |
width: 150px; | |
height: 150px; | |
} | |
@media screen and (max-width: 450px) { | |
width: 70px; | |
height: 70px; | |
} | |
} | |
p { | |
font-weight: 500; | |
margin-top: 0.5rem; | |
} | |
@media screen and (min-width: 2000px) { | |
margin: 1rem 2rem; | |
p { | |
margin-top: 1rem; | |
} | |
} | |
} | |
.app__skills-exp { | |
flex: 1; | |
display: flex; | |
justify-content: flex-start; | |
align-items: flex-start; | |
flex-direction: column; | |
@media screen and (max-width: 900px) { | |
margin-top: 2rem; | |
} | |
} | |
.app__skills-exp-item { | |
width: 100%; | |
display: flex; | |
flex-direction: row; | |
justify-content: flex-start; | |
align-items: flex-start; | |
margin: 1rem 0; | |
} | |
.app__skills-exp-works { | |
flex: 1; | |
.app__skills-exp-work { | |
display: flex; | |
flex-direction: column; | |
justify-content: flex-start; | |
align-items: flex-start; | |
margin-bottom: 1rem; | |
cursor: pointer; | |
h4 { | |
font-weight: 500; | |
} | |
p { | |
font-weight: 400; | |
color: var(--gray-color); | |
margin-top: 5px; | |
} | |
} | |
} | |
.app__skills-exp-year { | |
margin-right: 3rem; | |
p { | |
font-weight: 800; | |
color: var(--secondary-color); | |
} | |
@media screen and (max-width: 450px) { | |
margin-right: 1rem; | |
} | |
} | |
.skills-tooltip { | |
max-width: 300px !important; | |
background-color: var(--white-color) !important; | |
box-shadow: 0 0 25px rgba(0, 0, 0, 0.1) !important; | |
border-radius: 5px !important; | |
padding: 1rem !important; | |
color: var(--gray-color) !important; | |
text-align: center !important; | |
line-height: 1.5 !important; | |
opacity: 1 !important; | |
@media screen and (min-width: 2000px) { | |
font-size: 1.75rem !important; | |
max-width: 500px !important; | |
line-height: 2 !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment