-
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
3 changed files
with
96 additions
and
2 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 |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/locomotive-scroll.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap" | ||
rel="stylesheet"> | ||
<link rel="stylesheet" href="responsive.css"> | ||
</head> | ||
|
||
<body> | ||
|
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,83 @@ | ||
/* Mobile devices */ | ||
@media only screen and (max-width: 600px) { | ||
.logo img { | ||
/* margin-top: 1vh; */ | ||
width: 80px; | ||
margin: 2vw; | ||
} | ||
.navbar div:first-child { | ||
display: none; | ||
} | ||
.container { | ||
width: 100vw; | ||
margin: 0 auto; | ||
/* padding: 80px 20px; */ | ||
padding: 0; | ||
} | ||
.avatar img { | ||
width: 251px; | ||
padding-top:2vh; | ||
} | ||
.about-text{ | ||
width:100vw; | ||
padding-left: 2vh; | ||
padding-right: 2vh; | ||
} | ||
.experience-with-lang { | ||
display: flex; | ||
width: 80vw; | ||
margin: 50px auto; | ||
justify-content: space-between; | ||
} | ||
.btn-secondary { | ||
margin-top: 2vh; | ||
border: 1px solid #fff; | ||
margin-right: 20px; | ||
margin-left: 0px; | ||
} | ||
.projects { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
/* gap:2vh; */ | ||
} | ||
|
||
.project-item { | ||
margin: 0px; | ||
width:40vw; | ||
margin:3vw; | ||
} | ||
|
||
.project-item img { | ||
width: 100%; | ||
} | ||
.img{ | ||
margin: 10vw; | ||
} | ||
|
||
.projects-title { | ||
padding: 15px; | ||
} | ||
|
||
.projects-title h3 { | ||
color: #fff; | ||
} | ||
footer .container h2{ | ||
margin-left: 35vw; | ||
} | ||
footer .container p{ | ||
margin-left: 2vw; | ||
} | ||
.email-container { | ||
margin-top: 40px; | ||
} | ||
|
||
.email-container img { | ||
margin-left: 2vw; | ||
} | ||
|
||
.social-links { | ||
display: flex; | ||
margin-top: 40px; | ||
} | ||
} |
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