diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-09 22:20:34 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-09 22:20:34 +0200 |
commit | 31d7477b376501bd80fe635b91412bc7f6ae7ea7 (patch) | |
tree | b0fcc9b289cef86385805fe606b70d1ee14f1b25 /components/Sidebar/noteStyle.ts | |
parent | 9d1692fbcf322db2d95586b1ab6768ba9328e5df (diff) |
feat(preview): node history
Diffstat (limited to 'components/Sidebar/noteStyle.ts')
-rw-r--r-- | components/Sidebar/noteStyle.ts | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/components/Sidebar/noteStyle.ts b/components/Sidebar/noteStyle.ts index adf715d..42ecaf6 100644 --- a/components/Sidebar/noteStyle.ts +++ b/components/Sidebar/noteStyle.ts @@ -44,7 +44,7 @@ export const noteStyle = { fontWeight: 'bold', marginTop: 0, }, - '.todo': { fontFamily: 'monospace', color: 'red' }, + '.TODO': { color: 'red.500' }, '.equationContainer': { display: 'table', textAlign: 'center', @@ -71,7 +71,6 @@ export const noteStyle = { }, textarea: { overflowX: 'auto' }, '.linenr': { fontSize: 'smaller' }, - '.code-highlighted': { backgroundColor: '#ffff00' }, '.org-info-js_info-navigation': { borderStyle: 'none' }, '#org-info-js_console-label': { fontSize: '10px', @@ -84,10 +83,10 @@ export const noteStyle = { fontWeight: 'bold', }, '.org-svg': { width: '90%' }, - '.done': { fontFamily: 'monospace', color: 'green' }, + '.DONE': { color: 'green' }, '.priority': { fontFamily: 'monospace', color: 'orange' }, '.tag': { - backgroundColor: '#eee', + backgroundColor: 'white', fontFamily: 'monospace', padding: '2px', fontSize: '80%', @@ -103,9 +102,9 @@ export const noteStyle = { '#preamble p': { fontSize: '90%', margin: '.2em' }, 'p.verse': { marginLeft: '3%' }, pre: { - border: '1px solid #e6e6e6', + //border: '1px solid #e6e6e6', borderRadius: '3px', - backgroundColor: '#f2f2f2', + backgroundColor: 'white', padding: '8pt', fontFamily: 'monospace', overflow: 'auto', @@ -121,8 +120,8 @@ export const noteStyle = { top: '-8px', right: '12px', padding: '3px', - color: '#555', - backgroundColor: '#f2f2f299', + //color: '#555', + backgroundColor: 'white', }, 'caption.t-above': { captionSide: 'top' }, 'caption.t-bottom': { captionSide: 'bottom' }, |