-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
517 additions
and
13,968 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
84 changes: 84 additions & 0 deletions
84
client/src/Components/Organization/OrganizationDetail/ProjectDetails/LeftPane.jsx
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,84 @@ | ||
import React from "react"; | ||
import CardContent from "@material-ui/core/CardContent"; | ||
import Typography from "@material-ui/core/Typography"; | ||
import Box from "@material-ui/core/Box"; | ||
import { Link } from "@material-ui/core"; | ||
import Button from "@material-ui/core/Button"; | ||
import useStyles from "./ProjectHeaderStyling"; | ||
|
||
const LeftPane = () => { | ||
const classes = useStyles(); | ||
return ( | ||
<div> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.projectname}>Donut</Typography> | ||
</CardContent> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.orgname}> | ||
<Box fontWeight="fontWeightBold" m={1}> | ||
Codeuino | ||
</Box> | ||
</Typography> | ||
</CardContent> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.orglink}> | ||
<Link href="#">www.codeuino.org/donut</Link> | ||
</Typography> | ||
</CardContent> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.tt}> | ||
<Typography variant="h5" align="left" className={classes.tt}> | ||
Topics: | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
UI/UX | ||
</Button> | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Graphic Design | ||
</Button> | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Web Design | ||
</Button> | ||
</Typography> | ||
</Typography> | ||
<Typography className={classes.tt}> | ||
<Typography variant="h5" align="left" className={classes.tt}> | ||
Technology required: | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Adobe Illustrator | ||
</Button> | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Figma | ||
</Button> | ||
</Typography> | ||
</Typography> | ||
</CardContent> | ||
</div> | ||
); | ||
}; | ||
|
||
export default LeftPane; |
38 changes: 38 additions & 0 deletions
38
client/src/Components/Organization/OrganizationDetail/ProjectDetails/ProjectDescStyling.jsx
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,38 @@ | ||
import { makeStyles } from "@material-ui/core/styles"; | ||
|
||
const useStyles = makeStyles({ | ||
root: { | ||
marginTop: 50, | ||
marginLeft: 50, | ||
marginRight: 50, | ||
}, | ||
pos1: { | ||
marginTop: 140, | ||
}, | ||
buttonspacing: { | ||
marginLeft: 195, | ||
}, | ||
head: { | ||
fontSize: 18, | ||
marginTop: 40, | ||
}, | ||
text: { | ||
marginLeft: 10, | ||
fontSize: 17, | ||
}, | ||
listSection: { | ||
backgroundColor: "inherit", | ||
}, | ||
ul: { | ||
backgroundColor: "inherit", | ||
padding: 0, | ||
}, | ||
tasks: { | ||
marginLeft: -10, | ||
}, | ||
github: { | ||
fontSize: 15, | ||
}, | ||
}); | ||
|
||
export default useStyles; |
Oops, something went wrong.