forked from gndx/react-eth-challenge
-
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
8 changed files
with
213 additions
and
14 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
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,25 @@ | ||
.about-content | ||
display: flex | ||
flex-direction: column | ||
align-items: center | ||
grid-area: 2/2/3/2 | ||
justify-content: end | ||
gap: 10px | ||
|
||
.about-description | ||
display: flex | ||
flex-direction: column | ||
align-items: center | ||
|
||
.about-rrss | ||
display: flex | ||
gap: 20px | ||
|
||
@media screen and (min-device-width: 768px) | ||
.About-item:first-child | ||
margin-left: 50px | ||
|
||
.about-description | ||
display: flex | ||
flex-direction: row | ||
gap: 20px |
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,2 +1,109 @@ | ||
body | ||
background-color blue | ||
background-color #FEFEFE | ||
|
||
* | ||
padding: 0 | ||
margin: 0 | ||
box-sizing: border-box | ||
|
||
html | ||
font-size: 62.5% | ||
font-family: 'Roboto', sans-serif | ||
|
||
.container > section | ||
padding: 12px | ||
border-radius: 10px | ||
|
||
h1 | ||
align-self: end | ||
font-size: 5.5rem | ||
|
||
h2 | ||
font-size: 4.5rem | ||
font-weight: 500 | ||
|
||
ul | ||
list-style: none | ||
font-size: 3.3rem | ||
|
||
p, .Interest-item | ||
font-size: 3.3rem | ||
|
||
.container | ||
height: 100% | ||
gap: 10px | ||
display: grid | ||
grid-template-columns: 1fr | ||
grid-template-rows: repeat(6, auto) | ||
grid-template-areas:"profile"\ | ||
"experience"\ | ||
"academic"\ | ||
"skills"\ | ||
"interest"\ | ||
"languages" | ||
justify-content: center | ||
|
||
.profile | ||
background-color: #EDECDC | ||
grid-area: profile | ||
|
||
.experience | ||
background-color: #EDECDC | ||
grid-area: experience | ||
|
||
.academic | ||
background-color: #EDECDC | ||
grid-area: academic | ||
|
||
.skills | ||
background-color: #EDECDC | ||
grid-area: skills | ||
|
||
.interest | ||
background-color: #EDECDC | ||
grid-area: interest | ||
|
||
.languages | ||
background-color: #EDECDC | ||
grid-area: languages | ||
|
||
.Academic-item li:first-child, .Experience-item li:first-child, .Languages-item li:first-child | ||
font-size: 3.9rem | ||
font-weight: 400 | ||
|
||
.Academic-title, .Experience-title, .Skills-title, .Interest-title, .Languages-title | ||
margin-bottom: 5px | ||
|
||
.Academic-item, .Experience-item, .Skills-item, .Interest-item, .Languages-item | ||
margin-top: 15px | ||
|
||
.Academic-item li:nth-child(2), .Experience-item li:nth-child(2) | ||
margin-bottom: 5px | ||
font-size: 2.8rem | ||
color: #6A7699 | ||
|
||
.Profile-desc | ||
margin: 15px 0 | ||
|
||
@media screen and (min-device-width: 768px) | ||
h1 | ||
font-size: 4.2rem | ||
|
||
h2 | ||
font-size: 2.6rem | ||
|
||
p, ul, .Interest-item | ||
font-size: 2rem | ||
|
||
.container | ||
margin: 0 10px | ||
grid-template-columns: repeat(2, 1fr) | ||
grid-template-rows: repeat(4, auto) | ||
grid-template-areas:"profile profile"\ | ||
"experience experience"\ | ||
"academic skills"\ | ||
"interest languages" | ||
.Academic-item li:first-child, .Experience-item li:first-child, .Languages-item li:first-child | ||
font-size: 2.2rem | ||
.Academic-item li:nth-child(2), .Experience-item li:nth-child(2) | ||
font-size: 1.6rem |
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,35 @@ | ||
.header | ||
margin-bottom: 10px | ||
padding: 32px | ||
display: grid | ||
grid-template-columns: 200px 1fr 100px | ||
justify-items: center | ||
align-items: center | ||
|
||
.Header-title | ||
margin-bottom: 46px | ||
|
||
.header > img | ||
border-radius: 50% | ||
width: 180px | ||
height: 180px | ||
grid-row-start: 1 | ||
grid-row-end: 3 | ||
border: 5px solid white | ||
|
||
.header--background | ||
background: -webkit-linear-gradient(117deg, #2F4858 29%, #ABC66A 24%); | ||
background: -o-linear-gradient(117deg, #2F4858 29%, #ABC66A 24%); | ||
background: -moz-linear-gradient(117deg, #2F4858 29%, #ABC66A 24%); | ||
background: linear-gradient(117deg, #2F4858 29%, #ABC66A 24%); | ||
|
||
@media screen and (min-device-width: 768px) | ||
.header | ||
grid-template-columns: 200px 1fr 200px | ||
|
||
.Header-title | ||
margin-bottom: 26px | ||
|
||
.header > img | ||
width: 200px | ||
height: 200px |
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,27 @@ | ||
.skills-content | ||
margin-top: 5px | ||
display: flex | ||
gap:15px | ||
flex-wrap: wrap | ||
justify-content: space-around | ||
|
||
.Skills-item | ||
width: 200px | ||
height: 200px | ||
display: flex | ||
justify-content: center | ||
align-items: center | ||
border-radius: 250px | ||
font-size: 3.4rem | ||
color: #fff | ||
text-align: center | ||
background: #799973 | ||
|
||
@media screen and (min-device-width: 768px) | ||
.Skills-item | ||
width:100px | ||
height:100px | ||
font-size:1.4rem | ||
|
||
.skills-content | ||
gap:0 |