Guest User

Untitled

a guest
May 25th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.33 KB | None | 0 0
  1. .gist {
  2. color: #000;
  3. }
  4.  
  5. .gist div {
  6. padding: 0;
  7. margin: 0;
  8. }
  9.  
  10. .gist .gist-file {
  11. border: 1px solid #dedede; /* gray */
  12. font-family: Monaco, "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
  13. margin-bottom: 1em;
  14. }
  15.  
  16. .gist .gist-file .gist-meta {
  17. overflow: hidden;
  18. font-size: 85%;
  19. padding: .5em;
  20. color: #666;
  21. background-color: #eaeaea;
  22. }
  23.  
  24. .gist .gist-file .gist-meta a {
  25. color: #369;
  26. }
  27.  
  28. .gist .gist-file .gist-meta a:visited {
  29. color: #737;
  30. }
  31.  
  32. .gist .gist-file .gist-data {
  33. overflow: auto;
  34. word-wrap: normal;
  35. background-color: #f8f8ff;
  36. border-bottom: 1px solid #ddd;
  37. font-size: 100%;
  38. }
  39.  
  40. .gist .gist-file .gist-data pre {
  41. font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace;
  42. background: transparent !important;
  43. margin: 0 !important;
  44. border: none !important;
  45. padding: .25em .5em .5em .5em !important;
  46. }
  47.  
  48. .gist .gist-file .gist-data .gist-highlight {
  49. background: transparent !important;
  50. }
  51.  
  52. .gist .gist-file .gist-data .gist-line-numbers {
  53. background-color: #ececec;
  54. color: #aaa;
  55. border-right: 1px solid #ddd;
  56. text-align: right;
  57. }
  58.  
  59. .gist .gist-file .gist-data .gist-line-numbers span {
  60. clear: right;
  61. display: block;
  62. }
  63.  
  64. .gist-syntax { background: #ffffff; }
  65. .gist-syntax .c { color: #999988; font-style: italic } /* Comment */
  66. .gist-syntax .err { color: #a61717; background-color: #e3d2d2 } /* Error */
  67. .gist-syntax .k { color: #000000; font-weight: bold } /* Keyword */
  68. .gist-syntax .o { color: #000000; font-weight: bold } /* Operator */
  69. .gist-syntax .cm { color: #999988; font-style: italic } /* Comment.Multiline */
  70. .gist-syntax .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
  71. .gist-syntax .c1 { color: #999988; font-style: italic } /* Comment.Single */
  72. .gist-syntax .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
  73. .gist-syntax .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
  74. .gist-syntax .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
  75. .gist-syntax .ge { color: #000000; font-style: italic } /* Generic.Emph */
  76. .gist-syntax .gr { color: #aa0000 } /* Generic.Error */
  77. .gist-syntax .gh { color: #999999 } /* Generic.Heading */
  78. .gist-syntax .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
  79. .gist-syntax .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
  80. .gist-syntax .go { color: #888888 } /* Generic.Output */
  81. .gist-syntax .gp { color: #555555 } /* Generic.Prompt */
  82. .gist-syntax .gs { font-weight: bold } /* Generic.Strong */
  83. .gist-syntax .gu { color: #aaaaaa } /* Generic.Subheading */
  84. .gist-syntax .gt { color: #aa0000 } /* Generic.Traceback */
  85. .gist-syntax .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
  86. .gist-syntax .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
  87. .gist-syntax .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
  88. .gist-syntax .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
  89. .gist-syntax .kt { color: #445588; font-weight: bold } /* Keyword.Type */
  90. .gist-syntax .m { color: #009999 } /* Literal.Number */
  91. .gist-syntax .s { color: #d14 } /* Literal.String */
  92. .gist-syntax .na { color: #008080 } /* Name.Attribute */
  93. .gist-syntax .nb { color: #0086B3 } /* Name.Builtin */
  94. .gist-syntax .nc { color: #445588; font-weight: bold } /* Name.Class */
  95. .gist-syntax .no { color: #008080 } /* Name.Constant */
  96. .gist-syntax .ni { color: #800080 } /* Name.Entity */
  97. .gist-syntax .ne { color: #990000; font-weight: bold } /* Name.Exception */
  98. .gist-syntax .nf { color: #990000; font-weight: bold } /* Name.Function */
  99. .gist-syntax .nn { color: #555555 } /* Name.Namespace */
  100. .gist-syntax .nt { color: #000080 } /* Name.Tag */
  101. .gist-syntax .nv { color: #008080 } /* Name.Variable */
  102. .gist-syntax .ow { color: #000000; font-weight: bold } /* Operator.Word */
  103. .gist-syntax .w { color: #bbbbbb } /* Text.Whitespace */
  104. .gist-syntax .mf { color: #009999 } /* Literal.Number.Float */
  105. .gist-syntax .mh { color: #009999 } /* Literal.Number.Hex */
  106. .gist-syntax .mi { color: #009999 } /* Literal.Number.Integer */
  107. .gist-syntax .mo { color: #009999 } /* Literal.Number.Oct */
  108. .gist-syntax .sb { color: #d14 } /* Literal.String.Backtick */
  109. .gist-syntax .sc { color: #d14 } /* Literal.String.Char */
  110. .gist-syntax .sd { color: #d14 } /* Literal.String.Doc */
  111. .gist-syntax .s2 { color: #d14 } /* Literal.String.Double */
  112. .gist-syntax .se { color: #d14 } /* Literal.String.Escape */
  113. .gist-syntax .sh { color: #d14 } /* Literal.String.Heredoc */
  114. .gist-syntax .si { color: #d14 } /* Literal.String.Interpol */
  115. .gist-syntax .sx { color: #d14 } /* Literal.String.Other */
  116. .gist-syntax .sr { color: #009926 } /* Literal.String.Regex */
  117. .gist-syntax .s1 { color: #d14 } /* Literal.String.Single */
  118. .gist-syntax .ss { color: #990073 } /* Literal.String.Symbol */
  119. .gist-syntax .bp { color: #999999 } /* Name.Builtin.Pseudo */
  120. .gist-syntax .vc { color: #008080 } /* Name.Variable.Class */
  121. .gist-syntax .vg { color: #008080 } /* Name.Variable.Global */
  122. .gist-syntax .vi { color: #008080 } /* Name.Variable.Instance */
  123. .gist-syntax .il { color: #009999 } /* Literal.Number.Integer.Long */
Add Comment
Please, Sign In to add comment