Home | History | Annotate | Download | only in opt-viewer
      1 .red {
      2   background-color: #ffd0d0;
      3 }
      4 .cyan {
      5   background-color: cyan;
      6 }
      7 body {
      8   font-family: -apple-system, sans-serif;
      9 }
     10 pre {
     11   margin-top: 0px !important;
     12   margin-bottom: 0px !important;
     13 }
     14 .source-name-title {
     15   padding: 5px 10px;
     16   border-bottom: 1px solid #dbdbdb;
     17   background-color: #eee;
     18   line-height: 35px;
     19 }
     20 .centered {
     21   display: table;
     22   margin-left: left;
     23   margin-right: auto;
     24   border: 1px solid #dbdbdb;
     25   border-radius: 3px;
     26 }
     27 .expansion-view {
     28   background-color: rgba(0, 0, 0, 0);
     29   margin-left: 0px;
     30   margin-top: 5px;
     31   margin-right: 5px;
     32   margin-bottom: 5px;
     33   border: 1px solid #dbdbdb;
     34   border-radius: 3px;
     35 }
     36 table {
     37   border-collapse: collapse;
     38 }
     39 .light-row {
     40   background: #ffffff;
     41   border: 1px solid #dbdbdb;
     42 }
     43 .column-entry {
     44   text-align: right;
     45 }
     46 .column-entry-left {
     47   text-align: left;
     48 }
     49 .column-entry-white {
     50   text-align: right;
     51   background-color: #ffffff;
     52 }
     53 .column-entry-red {
     54   text-align: right;
     55   background-color: #ffd0d0;
     56 }
     57 .column-entry-green {
     58   text-align: right;
     59   background-color: #d0ffd0;
     60 }
     61 .column-entry-yellow {
     62   text-align: left;
     63   background-color: #ffe1a6;
     64 }
     65 .column-entry-0 {
     66   background-color: #ffffff;
     67 }
     68 .column-entry-1 {
     69   background-color: #eeeeee;
     70 }
     71 .line-number {
     72   text-align: right;
     73   color: #aaa;
     74 }
     75 .covered-line {
     76   text-align: right;
     77   color: #0080ff;
     78 }
     79 .uncovered-line {
     80   text-align: right;
     81   color: #ff3300;
     82 }
     83 .tooltip {
     84   position: relative;
     85   display: inline;
     86   background-color: #b3e6ff;
     87   text-decoration: none;
     88 }
     89 .tooltip span.tooltip-content {
     90   position: absolute;
     91   width: 100px;
     92   margin-left: -50px;
     93   color: #FFFFFF;
     94   background: #000000;
     95   height: 30px;
     96   line-height: 30px;
     97   text-align: center;
     98   visibility: hidden;
     99   border-radius: 6px;
    100 }
    101 .tooltip span.tooltip-content:after {
    102   content: '';
    103   position: absolute;
    104   top: 100%;
    105   left: 50%;
    106   margin-left: -8px;
    107   width: 0; height: 0;
    108   border-top: 8px solid #000000;
    109   border-right: 8px solid transparent;
    110   border-left: 8px solid transparent;
    111 }
    112 :hover.tooltip span.tooltip-content {
    113   visibility: visible;
    114   opacity: 0.8;
    115   bottom: 30px;
    116   left: 50%;
    117   z-index: 999;
    118 }
    119 th, td {
    120   vertical-align: top;
    121   padding: 2px 5px;
    122   border-collapse: collapse;
    123   border-right: solid 1px #eee;
    124   border-left: solid 1px #eee;
    125 }
    126 td:first-child {
    127   border-left: none;
    128 }
    129 td:last-child {
    130   border-right: none;
    131 }
    132 
    133 /* Generated with pygmentize -S colorful -f html >> style.css */
    134 
    135 .hll { background-color: #ffffcc }
    136 .c { color: #888888 } /* Comment */
    137 .err { color: #FF0000; background-color: #FFAAAA } /* Error */
    138 .k { color: #008800; font-weight: bold } /* Keyword */
    139 .o { color: #333333 } /* Operator */
    140 .ch { color: #888888 } /* Comment.Hashbang */
    141 .cm { color: #888888 } /* Comment.Multiline */
    142 .cp { color: #557799 } /* Comment.Preproc */
    143 .cpf { color: #888888 } /* Comment.PreprocFile */
    144 .c1 { color: #888888 } /* Comment.Single */
    145 .cs { color: #cc0000; font-weight: bold } /* Comment.Special */
    146 .gd { color: #A00000 } /* Generic.Deleted */
    147 .ge { font-style: italic } /* Generic.Emph */
    148 .gr { color: #FF0000 } /* Generic.Error */
    149 .gh { color: #000080; font-weight: bold } /* Generic.Heading */
    150 .gi { color: #00A000 } /* Generic.Inserted */
    151 .go { color: #888888 } /* Generic.Output */
    152 .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
    153 .gs { font-weight: bold } /* Generic.Strong */
    154 .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
    155 .gt { color: #0044DD } /* Generic.Traceback */
    156 .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
    157 .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
    158 .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
    159 .kp { color: #003388; font-weight: bold } /* Keyword.Pseudo */
    160 .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
    161 .kt { color: #333399; font-weight: bold } /* Keyword.Type */
    162 .m { color: #6600EE; font-weight: bold } /* Literal.Number */
    163 .s { background-color: #fff0f0 } /* Literal.String */
    164 .na { color: #0000CC } /* Name.Attribute */
    165 .nb { color: #007020 } /* Name.Builtin */
    166 .nc { color: #BB0066; font-weight: bold } /* Name.Class */
    167 .no { color: #003366; font-weight: bold } /* Name.Constant */
    168 .nd { color: #555555; font-weight: bold } /* Name.Decorator */
    169 .ni { color: #880000; font-weight: bold } /* Name.Entity */
    170 .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
    171 .nf { color: #0066BB; font-weight: bold } /* Name.Function */
    172 .nl { color: #997700; font-weight: bold } /* Name.Label */
    173 .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
    174 .nt { color: #007700 } /* Name.Tag */
    175 .nv { color: #996633 } /* Name.Variable */
    176 .ow { color: #000000; font-weight: bold } /* Operator.Word */
    177 .w { color: #bbbbbb } /* Text.Whitespace */
    178 .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
    179 .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
    180 .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
    181 .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
    182 .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
    183 .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
    184 .sc { color: #0044DD } /* Literal.String.Char */
    185 .sd { color: #DD4422 } /* Literal.String.Doc */
    186 .s2 { background-color: #fff0f0 } /* Literal.String.Double */
    187 .se { color: #666666; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
    188 .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
    189 .si { background-color: #eeeeee } /* Literal.String.Interpol */
    190 .sx { color: #DD2200; background-color: #fff0f0 } /* Literal.String.Other */
    191 .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
    192 .s1 { background-color: #fff0f0 } /* Literal.String.Single */
    193 .ss { color: #AA6600 } /* Literal.String.Symbol */
    194 .bp { color: #007020 } /* Name.Builtin.Pseudo */
    195 .vc { color: #336699 } /* Name.Variable.Class */
    196 .vg { color: #dd7700; font-weight: bold } /* Name.Variable.Global */
    197 .vi { color: #3333BB } /* Name.Variable.Instance */
    198 .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
    199