mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-16 02:08:47 +00:00
104 lines
1.9 KiB
JavaScript
104 lines
1.9 KiB
JavaScript
export default {
|
|
palette: {
|
|
primary: {
|
|
light: '#1da1f2',
|
|
main: '#1da1f2',
|
|
dark: '#008394',
|
|
contrastText: '#fff'
|
|
},
|
|
secondary: {
|
|
light: '#ff6333',
|
|
main: '#ff3d00',
|
|
dark: '#b22a00',
|
|
contrastText: '#fff'
|
|
}
|
|
},
|
|
typography: {
|
|
useNextVariants: true
|
|
},
|
|
form: {
|
|
textAlign: 'center'
|
|
},
|
|
image: {
|
|
margin: '20px auto 20px auto'
|
|
},
|
|
pageTitle: {
|
|
margin: '10px auto 10px auto'
|
|
},
|
|
textField: {
|
|
margin: '10px auto 10px auto'
|
|
},
|
|
button: {
|
|
marginTop: 20,
|
|
position: 'relative'
|
|
},
|
|
customError: {
|
|
color: 'red',
|
|
fontSize: '0.8rem',
|
|
marginTop: 10
|
|
},
|
|
progress: {
|
|
position: 'absolute'
|
|
},
|
|
invisibleSeparator: {
|
|
border: 'none',
|
|
margin: 4
|
|
},
|
|
visibleSeparator: {
|
|
width: '100%',
|
|
borderBottom: '1px solid rgba(0,0,0,0.1)',
|
|
marginBottom: 20
|
|
},
|
|
paper: {
|
|
padding: 10,
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
flexWrap: 'wrap'
|
|
},
|
|
chip: {
|
|
margin: 0.5,
|
|
},
|
|
profile: {
|
|
'& .image-wrapper': {
|
|
textAlign: 'center',
|
|
position: 'relative',
|
|
'& button': {
|
|
position: 'absolute',
|
|
top: '80%',
|
|
left: '70%'
|
|
}
|
|
},
|
|
'& .profile-image': {
|
|
width: 200,
|
|
height: 200,
|
|
objectFit: 'cover',
|
|
maxWidth: '100%',
|
|
borderRadius: '50%'
|
|
},
|
|
'& .profile-details': {
|
|
textAlign: 'center',
|
|
'& span, svg': {
|
|
verticalAlign: 'middle'
|
|
},
|
|
'& a': {
|
|
color: '#00bcd4'
|
|
}
|
|
},
|
|
'& hr': {
|
|
border: 'none',
|
|
margin: '0 0 10px 0'
|
|
},
|
|
'& svg.button': {
|
|
'&:hover': {
|
|
cursor: 'pointer'
|
|
}
|
|
}
|
|
},
|
|
buttons: {
|
|
textAlign: 'center',
|
|
'& a': {
|
|
margin: '20px 10px'
|
|
}
|
|
}
|
|
};
|