-
Notifications
You must be signed in to change notification settings - Fork 425
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
0 parents
commit 944d9b1
Showing
3 changed files
with
143 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Giorgi Tsereteli</title> | ||
</head> | ||
<body> | ||
<div class="grid-2"> | ||
<div class="section-1"> | ||
<i class="fas fa-code fa-5x white"></i> | ||
<h2>FirstName LastName</h2> | ||
<p>City,Country.</p> | ||
<a href="#"><i class="fab fa-twitter"></i></a> | ||
<a href="#"><i class="fab fa-github"></i></a> | ||
</div> | ||
<div class="section-2"> | ||
<h2>About</h2> | ||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quas sint et nihil iusto eius nostrum sit error, repellat optio quisquam! Magnam dolore iusto cumque. Nostrum error iste neque maiores.</p> | ||
<h2>Skills</h2> | ||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis in maiores autem quidem obcaecati excepturi! Cupiditate eaque itaque magni voluptatibus neque nobis est dolor? Atque sunt minus ipsa asperiores. At.</p> | ||
<h2>Projects</h2> | ||
<a href="#">Project 1</a> | ||
<a href="#">Project 2</a> | ||
<a href="#">Project 3</a> | ||
<a href="#">Project 4</a> | ||
<a href="#">Project 5</a> | ||
<h2>Contact</h2> | ||
<p>myEmail@email.com</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,105 @@ | ||
/* global */ | ||
@import url('https://fonts.googleapis.com/css?family=Roboto'); | ||
|
||
.grid-2{ | ||
display: grid; | ||
grid-template-columns: repeat(2,1fr); | ||
} | ||
|
||
body{ | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Roboto', sans-serif; | ||
background-color: #101214; | ||
color: #7A7C80; | ||
|
||
} | ||
|
||
h2,.white{ | ||
color: #fff; | ||
} | ||
|
||
a{ | ||
color: #7A7C80; | ||
text-decoration: none; | ||
} | ||
/* section 1 */ | ||
.section-1{ | ||
padding-top: 40vh; | ||
padding-left: 20vw; | ||
text-align: center; | ||
} | ||
|
||
.section-1 p{ | ||
font-size: 1.1rem; | ||
padding-bottom: 10px; | ||
margin:0; | ||
} | ||
|
||
.section-1 h2{ | ||
font-size: 1.7rem; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.section-1 a{ | ||
font-size: 1.5rem; | ||
padding: 10px; | ||
} | ||
/* section 2 */ | ||
.section-2{ | ||
padding-top: 20vh; | ||
width: 70%; | ||
} | ||
|
||
.section-2 h2{ | ||
font-size: 1.7rem; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.section-2 p{ | ||
font-size: 1.1rem; | ||
padding-bottom: 10px; | ||
margin:0; | ||
} | ||
|
||
.section-2 a{ | ||
display: block; | ||
padding: 5px; | ||
font-size: 1.2rem; | ||
padding-left: 0; | ||
width: 100px; | ||
} | ||
/* animations / utilities */ | ||
.section-2 a:hover{ | ||
font-size: 1.3rem; | ||
color: #fff; | ||
cursor: pointer; | ||
transition: 0.2s; | ||
} | ||
|
||
.section-1 a:hover{ | ||
color: #fff; | ||
cursor: pointer; | ||
transition: 0.3s; | ||
} | ||
|
||
.white:hover{ | ||
position: relative; | ||
padding-left: 10px; | ||
} | ||
|
||
/* media queres */ | ||
@media(max-width:780px){ | ||
.grid-2{ | ||
grid-template-columns: 1fr; | ||
} | ||
.section-1{ | ||
padding:0; | ||
padding-top: 5rem; | ||
} | ||
.section-2{ | ||
padding: 0; | ||
padding-left: 1.5rem; | ||
padding-top: 2rem; | ||
} | ||
} |