covid19-dashboard
Version:
Dashboard App displaying COVID-19 numbers by country
120 lines (102 loc) • 1.75 kB
CSS
/**
* based on highlight/styles/darcula.css
* and highlight-line-numbers.css
*/
pre.hljs {
margin : 0;
padding: 0;
}
code,
.hljs {
font-family: Menlo, monospace;
}
.hljs {
background: #2b2b2b;
display : block;
font-size : 12px;
overflow-x: auto;
padding : 0.5em;
}
.hljs,
.hljs-selector-tag {
color: #a9b7c6;
}
.hljs-strong,
.hljs-emphasis {
color: #a8a8a2;
}
.hljs-bullet,
.hljs-quote,
.hljs-link,
.hljs-number,
.hljs-regexp,
.hljs-literal {
color: #6897bb;
}
.hljs-code,
.hljs-selector-class {
color: #ffc66d;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-keyword,
.hljs-section,
.hljs-attribute,
.hljs-name,
.hljs-variable {
color: #cc7832;
}
.hljs-params {
color: #b9b9b9;
}
.hljs-string {
color: #6a8759;
}
.hljs-subst,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-symbol,
.hljs-selector-id,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-template-tag,
.hljs-template-variable,
.hljs-addition {
color: #ffc66d;
}
.hljs-comment,
.hljs-deletion,
.hljs-meta {
color: #808080;
}
.hljs-comment {
font-weight: 200;
}
/*line number styles*/
.hljs-ln {
border-right: 1px solid #3c3f41;
}
.hljs-ln-numbers {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #303335;
text-align: right;
color: #606366;
border-right: 1px solid #555;
vertical-align: top;
padding-left: 5px ;
padding-right: 5px ;
}
.hljs-ln-code {
padding-left : 20px ;
padding-right: 20px ;
}
.neo-highlighted-line {
background-color: #3c3f41 ;
}