mirror of
https://github.com/codex-team/editor.js
synced 2026-03-16 07:35:48 +01:00
23 lines
444 B
CSS
23 lines
444 B
CSS
/**
|
|
* Styles for the Term tool
|
|
*
|
|
* CodeX Editor Inline Toolbar plugin
|
|
*/
|
|
.ce-term-tool__icon {
|
|
background: url('term.svg') no-repeat center center;
|
|
}
|
|
|
|
.ce-term-tool__icon--active {
|
|
background-image: url('term-blue.svg');
|
|
}
|
|
|
|
|
|
.marked {
|
|
background: rgba(251,241,241,0.78);
|
|
color: #C44545;
|
|
padding: 4px 6px;
|
|
border-radius: 2px;
|
|
margin: 0 2px;
|
|
font-family: Menlo, Monaco, Consolas, Courier New, monospace;
|
|
font-size: 0.9em;
|
|
}
|