80 lines
1.4 KiB
JavaScript
80 lines
1.4 KiB
JavaScript
|
|
export default {
|
|
|
|
submit: {
|
|
color: '#e9a131',
|
|
marginRight: '10px',
|
|
backgroundColor: 'white',
|
|
border: '#e9a131 2px solid',
|
|
borderColor: '#e9a131',
|
|
borderRadius: '4px',
|
|
textAlign: 'center',
|
|
padding: '10px',
|
|
minWidth: '100px',
|
|
float: 'left',
|
|
fontSize: '13px',
|
|
fontWeight: '800',
|
|
cursor: 'pointer',
|
|
},
|
|
|
|
submit_hover: {
|
|
backgroundColor: '#e9a131',
|
|
color: 'white',
|
|
},
|
|
|
|
info: {
|
|
color: '#00d17c',
|
|
marginRight: '10px',
|
|
backgroundColor: 'white',
|
|
border: '#00d17c 2px solid',
|
|
borderRadius: '4px',
|
|
textAlign: 'center',
|
|
padding: '10px',
|
|
minWidth: '100px',
|
|
float: 'left',
|
|
fontSize: '13px',
|
|
fontWeight: '800',
|
|
cursor: 'pointer',
|
|
},
|
|
|
|
info_hover: {
|
|
backgroundColor: '#00d17c',
|
|
color: 'white',
|
|
},
|
|
|
|
edit: {
|
|
color: '#4a95da',
|
|
marginRight: '10px',
|
|
backgroundColor: 'white',
|
|
border: '#4a95da 2px solid',
|
|
borderRadius: '4px',
|
|
textAlign: 'center',
|
|
padding: '10px',
|
|
minWidth: '100px',
|
|
float: 'left',
|
|
fontSize: '13px',
|
|
fontWeight: '800',
|
|
cursor: 'pointer',
|
|
},
|
|
|
|
edit_small: {
|
|
color: '#4a95da',
|
|
marginRight: '10px',
|
|
backgroundColor: 'white',
|
|
border: '#4a95da 2px solid',
|
|
borderRadius: '4px',
|
|
textAlign: 'center',
|
|
padding: '4px',
|
|
minWidth: '50px',
|
|
float: 'left',
|
|
fontSize: '13px',
|
|
fontWeight: '800',
|
|
cursor: 'pointer',
|
|
},
|
|
|
|
edit_hover: {
|
|
backgroundColor: '#4a95da',
|
|
color: 'white',
|
|
},
|
|
|
|
} |