Added a separate stylesheet for our buttons.
This commit is contained in:
80
client/app/components/styles/buttons.jsx
Normal file
80
client/app/components/styles/buttons.jsx
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
|
||||||
|
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',
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user