wolegca.github.io/css/highlight.css

50 lines
732 B
CSS
Raw Permalink Normal View History

2019-09-15 14:27:21 +08:00
.css-keyword{
color:#ff7800!important
}
.css-value{
color:#090!important
2022-09-24 17:28:04 +08:00
}
pre {
background-color: #252525;
color:whitesmoke;
padding: 5px 15px;
font-size: medium;
2022-09-24 22:32:41 +08:00
border-radius: 5px;
2022-09-24 17:28:04 +08:00
}
code {
2022-09-24 22:32:41 +08:00
font-family: 'Menlo', 'Monaco', 'Consolas';
padding-right: 15px;
}
2022-09-25 00:33:28 +08:00
code li {
2022-09-24 22:32:41 +08:00
padding-left: 15px;
padding-right: 15px;
border-left: 1px solid grey;
line-height: 1.5em;
}
b.name {
color: orange;
font-size: larger;
2022-09-25 17:16:12 +08:00
}
ol {
overflow: auto;
}
ol::-webkit-scrollbar {
height: 17px;
background-color: transparent;
}
ol::-webkit-scrollbar-thumb {
height: 13px;
background-color: rgba(0,0,0,.3);
border-radius: 5px;
}
ol::-webkit-scrollbar-thumb:hover {
background-color: rgba(0,0,0,.5);
}
code ol {
margin-bottom: 0px;
2019-09-15 14:27:21 +08:00
}