1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /**
- * GitHub theme
- *
- * @author Craig Campbell
- * @version 1.0.4
- */
- pre {
- border: 1px solid #ccc;
- word-wrap: break-word;
- padding: 6px 10px;
- line-height: 19px;
- margin-bottom: 20px;
- }
- code {
- border: 1px solid #eaeaea;
- margin: 0 2px;
- padding: 0 5px;
- font-size: 12px;
- }
- pre code {
- border: 0;
- padding: 0;
- margin: 0;
- -moz-border-radius: 0;
- -webkit-border-radius: 0;
- border-radius: 0;
- }
- pre, code {
- font-family: Consolas, 'Liberation Mono', Courier, monospace;
- color: #333;
- background: #f8f8f8;
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- }
- pre, pre code {
- font-size: 13px;
- }
- pre .comment {
- color: #998;
- }
- pre .support {
- color: #0086B3;
- }
- pre .tag, pre .tag-name {
- color: navy;
- }
- pre .keyword, pre .css-property, pre .vendor-prefix, pre .sass, pre .class, pre .id, pre .css-value, pre .entity.function, pre .storage.function {
- font-weight: bold;
- }
- pre .css-property, pre .css-value, pre .vendor-prefix, pre .support.namespace {
- color: #333;
- }
- pre .constant.numeric, pre .keyword.unit, pre .hex-color {
- font-weight: normal;
- color: #099;
- }
- pre .entity.class {
- color: #458;
- }
- pre .entity.id, pre .entity.function {
- color: #900;
- }
- pre .attribute, pre .variable {
- color: teal;
- }
- pre .string, pre .support.value {
- font-weight: normal;
- color: #d14;
- }
- pre .regexp {
- color: #009926;
- }
|