50 lines
912 B
JavaScript
50 lines
912 B
JavaScript
export default {
|
|
body: {
|
|
backgroundColor: 'white',
|
|
width: 'min-content',
|
|
},
|
|
|
|
parentElement: {
|
|
display: 'inline-block',
|
|
width: '300px',
|
|
border: '1px solid black',
|
|
borderRadius: '2px',
|
|
padding: '4px',
|
|
margin: '4px',
|
|
marginLeft: '4px',
|
|
backgroundColor: 'white',
|
|
},
|
|
|
|
parentElement_hover: {
|
|
marginLeft: '10px',
|
|
},
|
|
|
|
parentElement_active: {
|
|
textDecoration: 'none',
|
|
},
|
|
|
|
parentElement_selected: {
|
|
display: 'inline-block',
|
|
width: '300px',
|
|
border: '1px solid black',
|
|
borderRadius: '2px',
|
|
padding: '4px',
|
|
margin: '4px 0px 4px 4px',
|
|
marginLeft: '10px',
|
|
backgroundColor: 'white',
|
|
},
|
|
|
|
title: {
|
|
maxWidth: '70%',
|
|
display: 'inline-flex',
|
|
},
|
|
|
|
link: {
|
|
color: 'black',
|
|
textDecoration: 'none',
|
|
},
|
|
|
|
rightContainer: {
|
|
float: 'right',
|
|
},
|
|
} |