diff options
author | Edgar Zanella Alvarenga | 2018-06-19 16:03:32 +0200 |
---|---|---|
committer | Edgar Zanella Alvarenga | 2018-06-19 16:03:56 +0200 |
commit | a8b664fdb5b425625928d0ce6ae9cdbd78fb3833 (patch) | |
tree | 796556715b880d7d76f27bf3ad38e06fea3fd358 /public/css | |
parent | 82c7f9d07cfecfc110af8c8fc0e47edf070596b2 (diff) |
Add a toolbar to Codemirror editor
Signed-off-by: Edgar Zanella Alvarenga <e@vaz.io>
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/index.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css index 3f391e27..9cc1766e 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -20,6 +20,24 @@ body.night{ background: #333 !important; } +.toolbar { + background-color: #1c1c1e; + border: 1px solid #343434; +} + +.toolbar > .btn-toolbar > .btn-group > .btn { + background-color: #1c1c1e; + padding: 5px; + font-size: 1em; +} + +.toolbar > .btn-toolbar > .btn-group > .btn:hover { + background-color: #383a3e; + + padding: 5px; +} + + .CodeMirror { font-family: "Source Code Pro", Consolas, monaco, monospace; letter-spacing: 0.025em; |