mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-29 13:58:02 +03:00
29 lines
472 B
JavaScript
29 lines
472 B
JavaScript
import base from './base'
|
|
|
|
const white = '#fff'
|
|
const black = '#000'
|
|
const red = '#f00'
|
|
|
|
export default {
|
|
...base,
|
|
font: '"Helvetica Neue", Helvetica, Arial, sans-serif',
|
|
colors: {
|
|
text: black,
|
|
background: white,
|
|
link: red,
|
|
},
|
|
css: {
|
|
textAlign: 'left',
|
|
fontSize: '1.5em',
|
|
'@media screen and (min-width:64em)': {
|
|
fontSize: '3em',
|
|
},
|
|
},
|
|
Slide: {
|
|
'& > div': {
|
|
minWidth: '80vw',
|
|
minHeight: '60vh',
|
|
},
|
|
},
|
|
}
|