OLD | NEW |
---|---|
(Empty) | |
1 .api { | |
2 | |
3 color: #333; | |
4 font-size: 14px; | |
5 | |
6 .apisummary { | |
not at google - send to devlin
2014/01/03 23:30:24
nit: style I usually see in chromium is for class
Renato Mangini (chromium)
2014/02/06 03:19:17
Done.
| |
7 td, th { | |
not at google - send to devlin
2014/01/03 23:30:24
nit: likewise chromium style usually to separate r
Renato Mangini (chromium)
2014/02/06 03:19:17
Done.
| |
8 padding: 5px 10px; | |
9 } | |
10 a { | |
11 color: inherit; | |
12 font-weight: normal; | |
13 } | |
14 td:hover a, td:hover a * { | |
15 cursor: pointer; | |
16 color: $link-color; | |
17 font-weight: bold; | |
18 } | |
19 } | |
20 .api_reference { | |
21 table.innerTable { | |
22 margin: 10px 0; | |
23 | |
24 td, th { | |
25 padding: 5px 10px; | |
26 border: 1px solid #eee; | |
27 } | |
28 th { | |
29 background: none; | |
30 } | |
31 } | |
32 | |
33 td, th { | |
34 border: 1px solid #eee; | |
35 } | |
36 th { | |
37 background: #fafafa; | |
38 } | |
39 | |
40 h2 { | |
41 background-color: darken($gray-light, 5%); | |
42 padding: $default-padding; | |
43 margin-left: $default-padding * -1; | |
44 margin-right: $default-padding * -1; | |
45 } | |
46 | |
47 h3 { | |
48 margin-top: rhythm(2); | |
49 } | |
50 | |
51 .description { | |
52 margin-left: 20px; | |
53 } | |
54 } | |
55 | |
56 | |
not at google - send to devlin
2014/01/03 23:30:24
nit: can the use of blank lines in this file be co
Renato Mangini (chromium)
2014/02/06 03:19:17
Done.
| |
57 } | |
OLD | NEW |