Skip to content

Commit 9ac628f

Browse files
authored
fixed the major UI issues (#195)
1 parent 4d3f643 commit 9ac628f

File tree

10 files changed

+98
-86
lines changed

10 files changed

+98
-86
lines changed

src/components/Activities/ActivityCard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const ActivityCard = (props) => {
55
<Card style={{ width: '18rem',marginBottom:"2vh",border:"0px" }} className="shadow-lg">
66
<Card.Img variant="top" src={props.activity.img} />
77
<Card.Body>
8-
<Card.Title><h3>{props.activity.title}</h3></Card.Title>
9-
<Card.Text>
8+
<Card.Title><h3 style={{textTransform: "capitalize"}}>{props.activity.title}</h3></Card.Title>
9+
<Card.Text style={{textTransform: "capitalize"}}>
1010
{props.activity.text}
1111
</Card.Text>
1212
<a href={props.activity.link} class="shadow lift mr-1" style={{color:"#22247A"}}><u>Read More</u></a>

src/components/ProjectSlide/ProjectSlide.js

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,18 @@ const ProjectSlide = () => {
3737
<Fade {...fadeProperties}>
3838
{
3939
images.map((each, index) =>
40-
<>
41-
<div className="each-fade">
42-
<div className="image-container">
43-
<img key={index} src={each.image} style={{width:"100%",height:"60vh"}} alt="images"/>
40+
<div className="row">
41+
<div className="col-md-12">
42+
<div className="each-fade">
43+
<div className="image-container">
44+
<img key={index} src={each.image} style={{width:"100%",height:"60vh"}} alt="images"/>
45+
</div>
46+
<h2>{each.project}</h2>
47+
<p style={{fontSize:"1.2rem"}}>{each.content}</p>
48+
<button type="button" className="btn btn-default" key={index} onClick={function(e){readmore(each.link)}}>Read More</button>
4449
</div>
45-
<h2>{each.project}</h2>
46-
<p style={{fontSize:"1.2rem"}}>{each.content}</p>
47-
<button type="button" className="btn btn-default" key={index} onClick={function(e){readmore(each.link)}}>Read More</button>
48-
</div>
49-
</>
50+
</div>
51+
</div>
5052
)
5153
}
5254
</Fade>

src/components/WhyCodeuino/WhyCodeuino.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ const WhyCodeuino = () => {
1313
<Container className="col-md-6 col-0" id="whycodeuino1" style={{paddingTop:"8%",paddingBottom:"12%"}} >
1414
<Image src={whycodeuino} style={{height:"100%"}} alt="why codeuino"/>
1515
</Container>
16-
<Container className="col-md-6 col-12" style={{paddingTop:"8%",paddingBottom:"12%",textAlign:"left"}}>
16+
<Container className="col-md-6 col-12" style={{paddingTop:"8%",paddingBottom:"12%"}}>
1717
<h1>What is CODEUINO?</h1>
18-
<p>Codeuino is a Non-Profit Open Source Social Networking organisation that provides various robust frameworks solutions which could span the entire world through building all kinds of social environments, discussion portals and collaboration platforms by giving prospectus to various other organisations, users and outreachers to showcase their products in a custom way. This wide social open networking framework organisation is driven by the volunteers all over the globe. This helps open source enthusiast to build up various technocratic social wide living softwares and researching FOSS projects under code survivors and challenging world. Codeuino takes into house the development of some of the coolest Open Source Projects that are made with the sole motive to benefit more and more people present all over the world.</p>
18+
<p style={{textAlign: "justify"}}>Codeuino is a Non-Profit Open Source Social Networking organisation that provides various robust frameworks solutions which could span the entire world through building all kinds of social environments, discussion portals and collaboration platforms by giving prospectus to various other organisations, users and outreachers to showcase their products in a custom way. This wide social open networking framework organisation is driven by the volunteers all over the globe. This helps open source enthusiast to build up various technocratic social wide living softwares and researching FOSS projects under code survivors and challenging world. Codeuino takes into house the development of some of the coolest Open Source Projects that are made with the sole motive to benefit more and more people present all over the world.</p>
1919
{/* <button type="button" class="btn btn-default">Join Us</button> */}
2020
</Container>
2121
<Container className="col-md-0 col-12" id="whycodeuino" style={{paddingTop:"8%",paddingBottom:"12%"}} >

src/pages/About/About.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
.cover-img-wrapper {
22
text-align: center;
33
padding:20px;
4-
background-color: rgb(224,226,228);
4+
position: relative;
5+
background: url('./codeuino-banner.jpg') no-repeat;
6+
background-size: cover;
7+
background-position: center;
8+
height: 25vh;
9+
width: 100%;
510
}
611
.cover-img-wrapper > img {
712
width:auto;

src/pages/About/About.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class Blog extends Component {
3737

3838
<div class="mt-12"></div>
3939
<div className="cover-img-wrapper">
40-
<img src={codeuino} alt="img" />
4140
</div>
4241
<div className="container mt-5">
4342
<div className="row">

src/pages/COC/COC.js

Lines changed: 66 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)