Cleaned up About Us page.

This commit is contained in:
Ram Vempati 2021-06-03 14:46:58 -04:00
parent b49dec45ed
commit ff7b773525
2 changed files with 25 additions and 10 deletions

View File

@ -44,16 +44,18 @@ class About extends Component {
<Container fluid id = "container">
<Row>
<Col lg><img id = "teamimage" src = {GroupPhoto} alt = "Group Pic"></img></Col>
<Col lg><p>We are a team of people who do things. The things we do are important. The things we do relate to robotics. We are important. We are Potentia.</p></Col>
<Col lg><p id = "ourDescription">We are a team of people who do things. The things we do are important. The things we do relate to robotics. We are important. We are Potentia.</p></Col>
</Row>
</Container>
<Tabs defaultActiveKey="team1" id="uncontrolled-tab-example">
<Tab eventKey="team1" title="Programming Subteam">
<Container fluid>
<h1 id = "subteamTitle">Programming Subteam Members</h1>
<Row>
<Col lg>
<Container>
<Row>
<Col lg>
@ -196,7 +198,7 @@ class About extends Component {
<Tab eventKey="team2" title="Engineering Subteam">
<Container fluid>
<h1 id = "subteamTitle">Engineering Subteam Members</h1>
<Row>
<Col lg>
<Container>
@ -312,9 +314,9 @@ class About extends Component {
</Tab>
<Tab eventKey="team3" title="Outreach Subteam" >
<Container fluid >
<h1 id = "subteamTitle">Outreach Subteam Members</h1>
<Row>
<Col lg>
<Container>

View File

@ -23,28 +23,41 @@
// padding: 10px;
// }
#teamimage{
width: 100%;
}
#title{
text-align: center;
margin-top: 100px;
margin-bottom: 100px;
margin-bottom: 50px;
}
#container{
margin-bottom: 100px;
margin-bottom: 50px;
}
#teamimage{
width: 100%;
margin-top: 50px;
}
#ourDescription{
text-align: center;
font-size: 30px;
margin-top: 50px;
}
p{
font-size: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
text-align: center;
}
img{
width:100%;
}
#subteamTitle{
text-align: center;
margin-top: 50px;
margin-bottom: 100px;
}