This repository has been archived by the owner on Oct 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from Hitendrita/master
added the portfolio of hitendrita
- Loading branch information
Showing
5 changed files
with
190 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,44 @@ | ||
<html> | ||
<head> | ||
|
||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel = "stylesheet" href = "css/main.css" type = "text/css"> | ||
<link href="https://fonts.googleapis.com/css?family=Berkshire+Swash|Comfortaa|Lobster|Righteous" rel="stylesheet"> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
|
||
|
||
<div class = "section" id = "header"> | ||
|
||
<img src = "Dp.jpg" | ||
alt="My image"> | ||
|
||
<div class = "name">Hitendrita Panda</div> | ||
<div id = "tags"><br>Computer Science Undergraduate<br><br><i style = "color : black" class = "fa fa-graduation-cap" aria-hidden = "true"></i> College of Engineering and Technology, Bhubaneswar<br><br> | ||
|
||
</div> | ||
<br><br><br> | ||
</div> | ||
|
||
<div class = "section" id = "social"><div class = "name">Contact Me</div> | ||
|
||
<div class = "icons"> | ||
<a target = "_blank" href = "https://www.facebook.com/hitendrita.panda"><i style = "color : #3b5998;" class = "fa fa-border fa-facebook" aria-hidden = "true"></i></a> | ||
|
||
<a target = "_blank" href = "https://www.github.com/hitendrita"><i style = "color : black" class = "fa fa-border fa-github" aria-hidden = "true"></i></a> | ||
<a target = "_blank" href = "https://www.linkedin.com/in/hitendrita-panda-08249616b/"><i style = "color : #0077B5" class = "fa fa-border fa-linkedin" aria-hidden = "true"></i></a> | ||
</div> | ||
|
||
</div> | ||
<!--<div class = "section" id = "social"></div> | ||
<div class = "section" id = "footer"></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 @@ | ||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
*{ | ||
margin : none; | ||
padding : none; | ||
} | ||
|
||
body{ | ||
text-align : center; | ||
min-width: 360px; | ||
|
||
margin: 0; | ||
} | ||
|
||
#header, #showcase, #footer, #social{ | ||
|
||
background : #f44274;; | ||
animation-name: bgColor; | ||
animation-duration: 24s; | ||
animation-iteration-count: infinite; | ||
animation-direction: alternate; | ||
animation-delay: 2s; | ||
color : white; | ||
font-family : "Comfortaa", cursive; | ||
margin : auto; | ||
|
||
} | ||
|
||
@keyframes bgColor { | ||
0% {background-color: #f44274;} | ||
25% {background-color: #f4f142;} | ||
50% {background-color: #42b6f4;} | ||
100% {background-color: #42f49e;} | ||
} | ||
|
||
img{ | ||
margin : 50px 0 30px 0; | ||
border : 5px solid white; | ||
border-radius : 100px; | ||
box-shadow : 2px 2px 10px #888; | ||
vertical-align: middle; | ||
width:230px; | ||
height: 250px; | ||
} | ||
|
||
.name{ | ||
font-size : 30px; | ||
text-shadow : 2px 2px 10px #888; | ||
|
||
} | ||
|
||
#tags{ | ||
font-size : 20px; | ||
} | ||
|
||
.icons i{ | ||
margin : 15px; | ||
border-radius : 100%; | ||
font-size : 50px; | ||
|
||
} | ||
|
||
.icons a:hover i{ | ||
box-shadow : 2px 2px 10px #888; | ||
|
||
} | ||
|
||
.fa-facebook{ | ||
width : 45px; | ||
} | ||
|
||
|
||
|
||
/* | ||
For reaponsiveness across all the devices using @media queries. | ||
*/ | ||
@media screen and (max-width: 500px) { | ||
|
||
.icons i{ | ||
font-size : 30px; | ||
} | ||
|
||
.name{ | ||
font-size : 20px; | ||
} | ||
|
||
|
||
#tags{ | ||
font-size : 15px; | ||
} | ||
|
||
.fa-facebook{ | ||
width : 26px; | ||
} | ||
img { | ||
width:180px; | ||
height: 200px; | ||
} | ||
body{ | ||
margin: 0; | ||
} | ||
|
||
} |
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,44 @@ | ||
<html> | ||
<head> | ||
|
||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel = "stylesheet" href = "css/main.css" type = "text/css"> | ||
<link href="https://fonts.googleapis.com/css?family=Berkshire+Swash|Comfortaa|Lobster|Righteous" rel="stylesheet"> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
|
||
|
||
<div class = "section" id = "header"> | ||
|
||
<img src = "Dp.jpg" | ||
alt="My image"> | ||
|
||
<div class = "name">Hitendrita Panda</div> | ||
<div id = "tags"><br>Computer Science Undergraduate<br><br><i style = "color : black" class = "fa fa-graduation-cap" aria-hidden = "true"></i> College of Engineering and Technology, Bhubaneswar<br><br> | ||
|
||
</div> | ||
<br><br><br> | ||
</div> | ||
|
||
<div class = "section" id = "social"><div class = "name">Contact Me</div> | ||
|
||
<div class = "icons"> | ||
<a target = "_blank" href = "https://www.facebook.com/hitendrita.panda"><i style = "color : #3b5998;" class = "fa fa-border fa-facebook" aria-hidden = "true"></i></a> | ||
|
||
<a target = "_blank" href = "https://www.github.com/hitendrita"><i style = "color : black" class = "fa fa-border fa-github" aria-hidden = "true"></i></a> | ||
<a target = "_blank" href = "https://www.linkedin.com/in/hitendrita-panda-08249616b/"><i style = "color : #0077B5" class = "fa fa-border fa-linkedin" aria-hidden = "true"></i></a> | ||
</div> | ||
|
||
</div> | ||
<!--<div class = "section" id = "social"></div> | ||
<div class = "section" id = "footer"></div>--> | ||
|
||
|
||
|
||
</body> | ||
</html> |