Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added contact details to CV #9

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions iitb/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ <h2 class="intro-text">Computer Science and Engineering</h2>
<h2 class="intro-text">Indian Institute of Technology Kharagpur</h2>
<!-- <h2 class="intro-text">Specialization: Microelectronics</h2> -->
</div>

<div class="contactDetails-3">
<a class="email-3" href="mailto: [email protected]">[email protected]</a>
<a class="phone-3" href="tel:(+234)8091534210 ">(+234) 8091534210</a>
<a class="github-3" href="github.com/allenphilip">github.com/allenphilip</a>
<a class="linkedin-3" href="linkedin.com/anyebe-blessing-ene-kwennb">linkedin.com/in/allenphilip</a>
</div>

<div class="intro-block">
<h2 class="intro-text">19XY10017</h2>
<h2 class="intro-text">B.Tech</h2>
Expand Down
17 changes: 17 additions & 0 deletions iitb/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,23 @@ Header Section Start
Header Section End
*/

/* Contact details starts */


.contactDetails-3 a{
text-decoration: none;
display: block;
font-weight: 700;
padding: 2px;
}

.contactDetails-3 a:hover{
color: green;
}

/* Contact details ends */


/*
Projects and POR Sections Start
*/
Expand Down
8 changes: 8 additions & 0 deletions iitkgp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@
<h1><span class="name">Shekar Reddy</span> | <span class="roll">19XY10017</span></h1>
<h2 class="campus">Indian Institute of Technology Kharagpur</h2>
</div>

<div class="contactDetails-1">
<a class="email-1" href="mailto:[email protected]">[email protected] | </a>
<a class="phone-1" href="tel:(+234) 8091534210">(+234) 8091534210 | </a>
<a class="github-1" href="github.com/allenphilip">github.com/allenphilip | </a>
<a class="linkedin-1" href="linkedin.com/anyebe-blessing-ene-kwennb">linkedin.com/in/allenphilip</a>
</div>

<div>
</div>
</div>
Expand Down
26 changes: 25 additions & 1 deletion iitkgp/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,27 @@
margin-top: 10px;
}

/* Contact details starts */

.contactDetails-1{
display: flex;
text-align: center;
font-weight: 700;
word-spacing: 5px;
}

.contactDetails-1 a{
text-decoration: none;
outline: none;

}

.contactDetails-1 a:hover{
color: green;
}

/* Contact details ends */

/*
Table Styling Start
*/
Expand Down Expand Up @@ -93,8 +114,11 @@ Header Section Start
*/
.iitkgp-cv-container .header {
display: flex;
flex-direction: row;
/* flex-direction: row;
justify-content: space-between;
*/
flex-direction: column;
justify-content: center;
}

.iitkgp-cv-container .header h1 {
Expand Down
12 changes: 10 additions & 2 deletions iitm/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,17 @@
<h1><span class="name">Shekar Reddy</span> | <span class="roll">19XY10017</span></h1>
<h2 class="campus">Indian Institute of Technology Kharagpur</h2>
</div>
<div>
<img src="../img/logo/kgp-logo.png" />

<div class="contactDetails-2">
<a class="email-2" href="mailto: [email protected]">[email protected]</a>
<a class="phone-2" href="tel:(+234)8091534210 ">(+234) 8091534210</a>
<a class="github-2" href="github.com/allenphilip">github.com/allenphilip</a>
<a class="linkedin-2" href="linkedin.com/anyebe-blessing-ene-kwennb">linkedin.com/in/allenphilip</a>
</div>

<div>
<img class="logo-2" src="../img/logo/kgp-logo.png" />
</div
</div>
<div class="education">
<h1 class="section-heading">
Expand Down
43 changes: 42 additions & 1 deletion iitm/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ Header Section Start
*/
.iitm-cv-container .header {
display: flex;
flex-direction: row;
/* flex-direction: row; */
flex-direction: column;
justify-content: space-between;
}

Expand Down Expand Up @@ -118,6 +119,46 @@ Header Section Start
Header Section End
*/

/* Contact Details start */

.contactDetails-2{
display: flex;
text-align: center;
font-weight: 700;
}

.contactDetails-2 a{
text-decoration: none;
padding: 3px;
margin-top: 2px;
}

.contactDetails-2 a:hover{
color: green;
}

@media screen and (max-width: 480px){
.iitm-cv-container .header img{
width: 100px;
}
.contactDetails-2{
display: block;
}
.contactDetails-2 a{
padding: 5px;
}
.iitm-cv-container .header .campus{
font-size: 18px;
}
}

/* Contact Details ends */

.logo-2{
position: absolute;
top: 5px;
right: 1px;
}
/*
Projects and POR Sections Start
*/
Expand Down