telehash
Version:
A telehash library for node and browserify
65 lines • 914 B
JavaScript
{
'#mount': {
height: '100%'
},
'html, body': {
margin: 0,
padding: 0,
height: '100%',
background: 'white',
fontFamily: 'arial,sans-serif',
fontSize: 'small',
color: '#666'
},
body: {
position: 'absolute',
top: 200,
right: 0,
bottom: 0,
left: 0,
display: 'flex'
},
main: {
flex: 5,
display: 'flex',
flexDirection: 'column'
},
content: {
flex: 1,
display: 'flex',
overflow: 'auto'
},
box: {
minHeight: '-webkit-min-content',
display: 'flex'
},
article: {
minHeight: 1000
},
nav: {
background: '#ccccff',
display: 'flex',
flexFlow: 'column',
alignItems: 'start'
},
crumbs: {
background: 'pink'
},
header: {
minHeight: 100
},
'header, footer': {
background: '#ffeebb'
},
mediaQueries: {
'all and (max-width: 640px)': {
body: {
flexFlow: 'column'
},
nav: {
flexFlow: 'row',
justifyContent: 'center'
}
}
}
}