mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
37 lines
1012 B
CSS
37 lines
1012 B
CSS
code { font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace !important }
|
|
|
|
pre {
|
|
font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace !important;
|
|
border: 1px dashed #ccc !important;
|
|
background-color: #ffffe0 !important;
|
|
}
|
|
|
|
pre.doxyrest-overview-code-block {
|
|
border: 1px solid #ccc !important;
|
|
background-color: #f8f8f8 !important;
|
|
}
|
|
|
|
pre.doxyrest-overview-inherited-code-block {
|
|
border: 1px solid #ccc !important;
|
|
background-color: #eee !important;
|
|
}
|
|
|
|
pre.doxyrest-title-code-block {
|
|
font-size: larger !important;
|
|
border: 1px solid #ccc !important;
|
|
background-color: #f8f8f8 !important;
|
|
}
|
|
|
|
code a { color: #333 !important }
|
|
|
|
.doxyrest-target-highlight {
|
|
animation-name: doxyrest-target-highlight-flash;
|
|
animation-duration: 2s;
|
|
}
|
|
|
|
@keyframes doxyrest-target-highlight-flash {
|
|
0% { box-shadow: none; }
|
|
25% { box-shadow: 0 0 8px 8px #fda, 0 0 8px 8px #fda inset; }
|
|
100% { box-shadow: none; }
|
|
}
|