Settings
Available symbols:
All characters: !"#%&'()*+,-./{|}<>_~ (= 21, 3 already used, 18 free to modify)
Categories:
Interpunction: , . !
Brackets: ( ) { } < >
Ligatures: &
Dashes: _
Quotation marks: " '
Other: # % | ~ / *
Already used: * / -
Colored starting page
code:style.css
background-color:#fafbe4 !important;
}
color: red;
}
To be changed
code:style.css
.deco-\< {
color: black;
background-color: azure;
display:inline-block;
width: 100%;
border-left: solid 4px blue;
padding-left: 4px
}
underlined text
code:style.css
.deco-\_ {
display:inline-block;
width: 100%;
border-bottom: solid 1px grey;
padding-left: 4px;
}
centered text
code:style.css
/* Centered text or image */
.deco-\% {
display:inline-block;
width: 100%;
text-align: center;
}
Red text
code:style.css
.deco-\! {
color: red;
}
Yellow block
code:style.css
.deco-\" {
display:inline-block;
width:100%;
padding-left: 5px;
padding-right: 5px;
margin-bottom: 5px;
}
Fixes
Fixing blockquote
code:style.css
/* Removes > from the beginning of blockquote */
display: none !important;
}