123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- html, body {
- background-color: #131516;
- color: #ccccdd;
- font-size: 12pt;
- font-family: Sans-Serif;
- line-height: 1.6em;
- }
- body {
- margin-left: 50px;
- padding-bottom: 50px;
- }
- table, tr, td {
- border-collapse: collapse;
- border: none;
- text-align: left;
- padding: 0px;
- }
- hr {
- margin-top: 50px;
- margin-bottom: 50px;
- border: 2px solid #555588;
- }
- p {
- margin: 25px 0px;
- }
- a {
- color: #bada55;
- text-decoration: none;
- font-weight: bold;
- }
- a:hover {
- text-decoration: underline;
- }
- .project-title {
- font-size: 1.2em;
- margin-bottom: 10px;
- }
- .meta-links {
- margin-bottom: 10px;
- background-color: #333
- }
- .meta-links td {
- padding: 8px;
- }
- .dirlisting {
- margin-bottom: 30px;
- }
- .dirlisting tr {
- border-bottom: 1px solid silver;
- }
- .dirlisting td {
- padding: 2px 10px;
- }
- .dirlisting td:nth-child(1) {
- padding-right: 30px;
- }
- pre {
- margin: 0;
- padding: 0;
- }
- .fileview, .fileview tr {
- border-collapse: collapse;
- border: 1px solid #888;
- }
- .fileview th {
- background-color: #333;
- color: #fff;
- font-weight: bold;
- padding: 4px;
- }
- .fileview td {
- padding: 8px;
- min-width: 300px;
- }
- c, c span {
- font-family: 'Courier New', monospace;
- white-space: pre;
- tab-size: 8;
- -moz-tab-size: 8;
- }
- /* blame user */
- .codelisting tr td:nth-child(1) {
- padding: 0px 10px;
- background-color: #111;
- color: #aaa;
-
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .codelisting th {
- padding: 6px;
- border-bottom: 1px solid #888;
- }
- .codelisting tr:nth-child(2) td {
- padding-top: 4px;
- }
- .codelisting tr:last-child td {
- padding-bottom: 4px !important;
- }
- /* line numbers */
- .codelisting tr td:nth-child(2) {
- padding: 0px 0px;
- border-left: 1px solid #888;
- background-color: #1f1f1f;
-
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .codelisting tr td:nth-child(2) a {
- text-decoration: none;
- display: inline-block;
- width: 100%;
- color: #888;
- text-align: right;
- padding-right: 10px;
- padding-left: 5px;
- box-sizing: border-box;
- }
- /* code */
- .codelisting tr td:nth-child(3) {
- padding-left: 6px;
-
- }
- /* line hover */
- .codelisting tr:hover td:nth-child(1) {
- color: #ccc;
- }
- .codelisting tr:hover td:nth-child(2) a {
- color: #ccc;
- }
- .codelisting tr:hover td {
- background-color: #666;
- }
- /* highlighting colors */
- .lang-c .keyword { color: #A3CCF7; }
- .lang-c .punct{ color: #B1EDEC; }
- .lang-c .string, .lang-c .charlit { color: #55EB54; }
- .lang-c .number { color: #F7BA7E; }
- .lang-c .ident { color: #E0E0E0; }
- .lang-c .type { color: #A3CCF7; }
- .lang-c .preproc { color: #66aadd; }
- .lang-c .comment { color: #787D31; }
- .lang-asm .comment { color: #787D31; }
- .lang-asm .ident { color: #E0E0E0; }
- .lang-asm .keyword { color: #A3CCF7; }
- .lang-asm .string { color: #55EB54; }
- .lang-asm .number { color: #F7BA7E; }
- .lang-asm .punct{ color: #B1EDEC; }
- .lang-asm .directive { color: #EDED43; }
- .lang-asm .register{ color: #B1ED43; }
- .lang-asm .simd-register{ color: #43EDB1; }
- .lang-asm .label {color: #66aadd; }
- /* decent default values */
- .js-code-highlight-root, .codelisting {
- background-color: #26292a;
- border: 1px solid #888;
- font-size: .9em;
- tab-size: 4;
- -moz-tab-size: 4;
- }
- .multiline {
- margin: 10px 0px;
- }
- .inline{
- padding: 0px 5px;
- }
- .title {
- border-bottom: 1px solid black;
- background: linear-gradient(#999999, #666666);
- color: #000000;
- padding-left: 18px;
- font-weight: bold;
- }
- .line-nums {
- border-right: 1px solid black;
- background-color: #666666;
- color: #CCCCDD;
- text-align: right;
- padding: 5px 5px 5px 5px;
- }
- .code-block {
- padding: 5px 0 5px 5px;
- tab-size: 4;
- }
- .line {
- line-height: 1.3em;
- }
|