mirror of
https://github.com/naoufalzerai/zerai.xyz.git
synced 2025-11-09 23:15:53 +00:00
92 lines
1.2 KiB
CSS
92 lines
1.2 KiB
CSS
@import url(https://fonts.googleapis.com/css?family=Fira+Mono);
|
|
/*
|
|
* Hopscotch
|
|
* by Jan T. Sott
|
|
* https://github.com/idleberg/Hopscotch
|
|
*
|
|
* This work is licensed under the Creative Commons CC0 1.0 Universal License
|
|
*/
|
|
|
|
code[class*="language-"],
|
|
pre {
|
|
background-color: #322931;
|
|
color: #b9b5b8;
|
|
}
|
|
|
|
.token.comment,
|
|
.token.prolog,
|
|
.token.doctype,
|
|
.token.cdata {
|
|
color: #797379;
|
|
}
|
|
|
|
.token.punctuation {
|
|
color: #b9b5b8;
|
|
}
|
|
|
|
.namespace {
|
|
opacity: .7;
|
|
}
|
|
|
|
.token.null,
|
|
.token.operator,
|
|
.token.boolean,
|
|
.token.number {
|
|
color: #fd8b19;
|
|
}
|
|
.token.property {
|
|
color: #fdcc59;
|
|
}
|
|
.token.tag {
|
|
color: #1290bf;
|
|
}
|
|
.token.string {
|
|
color: #149b93;
|
|
}
|
|
.token.selector {
|
|
color: #c85e7c;
|
|
}
|
|
.token.attr-name {
|
|
color: #fd8b19;
|
|
}
|
|
.token.entity,
|
|
.token.url,
|
|
.language-css .token.string,
|
|
.style .token.string {
|
|
color: #149b93;
|
|
}
|
|
|
|
.token.attr-value,
|
|
.token.keyword,
|
|
.token.control,
|
|
.token.directive,
|
|
.token.unit {
|
|
color: #8fc13e;
|
|
}
|
|
|
|
.token.statement,
|
|
.token.regex,
|
|
.token.atrule {
|
|
color: #149b93;
|
|
}
|
|
|
|
.token.placeholder,
|
|
.token.variable {
|
|
color: #1290bf;
|
|
}
|
|
|
|
.token.important {
|
|
color: #dd464c;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.token.entity {
|
|
cursor: help;
|
|
}
|
|
|
|
pre > code.highlight {
|
|
outline: .4em solid red;
|
|
outline-offset: .4em;
|
|
}
|
|
|