3 changed files with 97 additions and 0 deletions
@ -0,0 +1,48 @@ |
|||||||
|
/* For styling the entire Joplin app (except the rendered Markdown, which is defined in `userstyle.css`) */ |
||||||
|
|
||||||
|
.ace_heading { |
||||||
|
font-weight: bold; |
||||||
|
color: #5082be !important; |
||||||
|
} |
||||||
|
|
||||||
|
#note-editor{ |
||||||
|
color: black !important; |
||||||
|
} |
||||||
|
|
||||||
|
.ace_emphasis{ |
||||||
|
color: black !important; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
|
||||||
|
.ace_blockquote{ |
||||||
|
color: #797979 !important; |
||||||
|
} |
||||||
|
|
||||||
|
/* |
||||||
|
.ace_string{ |
||||||
|
color: #85b096 !important; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
|
||||||
|
.ace_support{ |
||||||
|
color: #298d56 !important; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
|
||||||
|
.ace_function{ |
||||||
|
margin-left: 5px; |
||||||
|
color: #85b096 !important; |
||||||
|
background-color: #f7f7f7; |
||||||
|
font-style: italic; |
||||||
|
} |
||||||
|
|
||||||
|
.ace_list{ |
||||||
|
color:#313131 !important; |
||||||
|
font-family: monospace; |
||||||
|
} |
||||||
|
|
||||||
|
.ace_strong { |
||||||
|
color: black !important; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
*/ |
@ -0,0 +1,47 @@ |
|||||||
|
h1, h2, h3, h4 { |
||||||
|
padding-left: 0.5em; |
||||||
|
padding-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
h1 { |
||||||
|
color: white; |
||||||
|
font-weight: 300; |
||||||
|
background-color: #414650; |
||||||
|
width: 100%; |
||||||
|
border: 3px solid #414650; |
||||||
|
} |
||||||
|
|
||||||
|
h2 { |
||||||
|
color: white; |
||||||
|
font-weight: 400; |
||||||
|
background-color: #414650; |
||||||
|
width: 100%; |
||||||
|
border: 2px solid #414650; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
h3 { |
||||||
|
color: white; |
||||||
|
font-weight: 150; |
||||||
|
background-color: #606776; |
||||||
|
} |
||||||
|
|
||||||
|
h4 { |
||||||
|
color: black; |
||||||
|
font-weight: 100; |
||||||
|
width: 100%; |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
|
||||||
|
mark { |
||||||
|
background: #aeefce; |
||||||
|
color: black; |
||||||
|
padding-left: 3px; |
||||||
|
padding-right: 3px; |
||||||
|
} |
||||||
|
|
||||||
|
a { |
||||||
|
color: #5082be; |
||||||
|
font-weight: bold; |
||||||
|
text-decoration: none; |
||||||
|
} |
Loading…
Reference in new issue