mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-29 13:58:02 +03:00
30 lines
528 B
JavaScript
30 lines
528 B
JavaScript
import base from './base'
|
|
|
|
const white = '#fffceb'
|
|
const black = '#11111f'
|
|
const blue = '#2d5dd7'
|
|
|
|
export default {
|
|
...base,
|
|
font: '"Crimson Text", serif',
|
|
googleFont: 'https://fonts.googleapis.com/css?family=Crimson+Text',
|
|
colors: {
|
|
text: black,
|
|
background: white,
|
|
link: blue,
|
|
},
|
|
css: {
|
|
textAlign: 'left',
|
|
fontSize: '1.5em',
|
|
'@media screen and (min-width:64em)': {
|
|
fontSize: '3em',
|
|
},
|
|
},
|
|
Slide: {
|
|
'& > div': {
|
|
minWidth: '80vw',
|
|
minHeight: '60vh',
|
|
},
|
|
},
|
|
}
|