ggdgsdbsdbbb / static / css / hl_table.scss
56 lines · 46 sloc · 736 bytes · 5d8107cb28727996daed016b0c79a9346f864d2b
Raw
1pre > * {
2 font-family: Roboto-Mono, Menlo;
3}
4
5pre {
6 overflow-y: hidden;
7 overflow-x: auto;
8}
9
10.hl_table a {
11 padding-right: 5px;
12 padding-left: 5px;
13 float: right;
14}
15
16.hl_table td {
17 padding: 0px;
18}
19
20.hl_table td:first-child {
21 width: 1%; // trick to make the numer row as small as possible
22 padding-right: 4px;
23
24 a {
25 font-family: SFMono-Regular, Consolas, Menlo, monospace;
26 color: $gray-dark;
27 opacity: 0.7;
28 cursor: pointer;
29 }
30
31 a:hover {
32 opacity: 1;
33 }
34}
35
36.hl_table tr {
37 height: 16px;
38}
39
40.hl_table b {
41 // keyword
42 color: rgb(74, 103, 154);
43 font-weight: normal;
44}
45
46.hl_table u {
47 // string
48 color: rgb(179, 58, 44);
49 text-decoration: none;
50}
51
52.hl_table i {
53 // comment
54 color: rgb(169, 169, 169);
55 font-style: normal;
56}
57