-
Notifications
You must be signed in to change notification settings - Fork 5
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 #1 from Vishruth-S/master
Merging changes made to the team page
- Loading branch information
Showing
11 changed files
with
247 additions
and
9 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 @@ | ||
[1125/122112.955:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3) |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,36 @@ | ||
.circle-icon{ | ||
position: relative; | ||
display: inline-flex; | ||
height: 8vw; | ||
width: 8vw; | ||
min-width: 100px; | ||
min-height: 100px; | ||
border-radius: 50%; | ||
max-width: 200px; | ||
max-height: 200px; | ||
box-shadow: 0px 2px 10px rgba(0,0,0,0.15); | ||
object-fit: cover; | ||
background: #ffffff; | ||
z-index: -1; | ||
} | ||
|
||
.ln-icon{ | ||
position: absolute; | ||
display: inline-flex; | ||
top:6.5vw; | ||
left:3vw; | ||
height: 2vw; | ||
width: 2vw; | ||
border-radius: 50%; | ||
box-shadow: 0px 0px 20px #fff; | ||
background: #ffffff; | ||
} | ||
|
||
.member{ | ||
position: relative; | ||
height: auto; | ||
max-width: 250px; | ||
border-radius: 50%; | ||
display: inline-block; | ||
margin: 25px; | ||
} |
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,19 @@ | ||
import React from 'react'; | ||
import { Image } from 'react-bootstrap'; | ||
|
||
import linkedinIcon from "../../assets/img/icon-linkedin.png"; | ||
import './Member.css'; | ||
|
||
function Member(props){ | ||
return( | ||
<div className="member"> | ||
<Image className="circle-icon" src={props.img} alt="member" /> | ||
|
||
<a href={props.link} target="_blank" rel="noreferrer"> | ||
<Image className="ln-icon" src={linkedinIcon} alt="member" /> | ||
</a> | ||
</div> | ||
) | ||
} | ||
|
||
export default Member; |
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,3 @@ | ||
.team-heading { | ||
margin-top: 100px; | ||
} |
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