mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-29 13:58:02 +03:00
39 lines
639 B
JavaScript
39 lines
639 B
JavaScript
export default {
|
|
font: 'system-ui, sans-serif',
|
|
monospace: 'Menlo, monospace',
|
|
|
|
colors: {
|
|
text: '#000',
|
|
background: 'white',
|
|
link: '#07c',
|
|
pre: '#f0f',
|
|
preBackground: '#333',
|
|
code: '#f0f',
|
|
},
|
|
css: {
|
|
fontSize: '16px',
|
|
textAlign: 'center',
|
|
'@media screen and (min-width:56em)': {
|
|
fontSize: '32px',
|
|
},
|
|
'@media screen and (min-width:64em)': {
|
|
fontSize: '48px',
|
|
},
|
|
'@media print': {
|
|
fontSize: '40px',
|
|
},
|
|
'li > p': {
|
|
margin: 0,
|
|
},
|
|
},
|
|
pre: {
|
|
textAlign: 'left',
|
|
},
|
|
ol: {
|
|
textAlign: 'left',
|
|
},
|
|
ul: {
|
|
textAlign: 'left',
|
|
},
|
|
}
|