summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/components/Calendar/calendar-jss.js
diff options
context:
space:
mode:
Diffstat (limited to 'front/odiparpack/app/components/Calendar/calendar-jss.js')
-rw-r--r--front/odiparpack/app/components/Calendar/calendar-jss.js118
1 files changed, 118 insertions, 0 deletions
diff --git a/front/odiparpack/app/components/Calendar/calendar-jss.js b/front/odiparpack/app/components/Calendar/calendar-jss.js
new file mode 100644
index 0000000..36ed0a4
--- /dev/null
+++ b/front/odiparpack/app/components/Calendar/calendar-jss.js
@@ -0,0 +1,118 @@
+import {
+ pink as red,
+ lightGreen as green,
+ lightBlue as blue,
+ deepPurple as violet,
+ orange,
+} from '@material-ui/core/colors';
+
+const styles = theme => ({
+ root: {
+ padding: 20,
+ [theme.breakpoints.down('sm')]: {
+ padding: '20px 8px'
+ },
+ },
+ calendarWrap: {
+ minHeight: 600
+ },
+ addBtn: {
+ position: 'fixed',
+ bottom: 30,
+ right: 30,
+ zIndex: 100
+ },
+ typography: {
+ margin: theme.spacing(2),
+ },
+ divider: {
+ margin: '5px 0',
+ textAlign: 'center'
+ },
+ button: {
+ margin: theme.spacing(1),
+ },
+ eventName: {
+ padding: '50px 20px 10px 30px',
+ minWidth: 400,
+ color: 'rgba(0, 0, 0, 0.7)',
+ '& svg': {
+ top: -2,
+ position: 'relative'
+ }
+ },
+ time: {
+ padding: 20
+ },
+ moreOpt: {
+ position: 'absolute',
+ top: 10,
+ right: 10
+ },
+ field: {
+ width: '100%',
+ marginBottom: 20
+ },
+ fieldBasic: {
+ width: '100%',
+ marginBottom: 20,
+ marginTop: 10
+ },
+ inlineWrap: {
+ display: 'flex',
+ flexDirection: 'row'
+ },
+ redRadio: {
+ color: red[600],
+ '& svg': {
+ borderRadius: '50%',
+ background: red[100],
+ },
+ '&$checked': {
+ color: red[500],
+ },
+ },
+ greenRadio: {
+ color: green[600],
+ '& svg': {
+ borderRadius: '50%',
+ background: green[100],
+ },
+ '&$checked': {
+ color: green[500],
+ },
+ },
+ blueRadio: {
+ color: blue[600],
+ '& svg': {
+ borderRadius: '50%',
+ background: blue[100],
+ },
+ '&$checked': {
+ color: blue[500],
+ },
+ },
+ violetRadio: {
+ color: violet[600],
+ '& svg': {
+ borderRadius: '50%',
+ background: violet[100],
+ },
+ '&$checked': {
+ color: violet[500],
+ },
+ },
+ orangeRadio: {
+ color: orange[600],
+ '& svg': {
+ borderRadius: '50%',
+ background: orange[100],
+ },
+ '&$checked': {
+ color: orange[500],
+ },
+ },
+ checked: {},
+});
+
+export default styles;