OLD | NEW |
1 .todo, .comment { /* while we're working on doc, comment out display */ | 1 .todo, .comment { /* while we're working on doc, comment out display */ |
2 color: rgb(255, 0, 0); | 2 color: rgb(255, 0, 0); |
3 display: none; | 3 display: none; |
4 } | 4 } |
5 | 5 |
| 6 #devModeWarning { |
| 7 background-color: gray; |
| 8 color: #222222; |
| 9 font-size: 10px; |
| 10 padding: 8px 16px 8px 16px; |
| 11 display: none; |
| 12 border: 1px solid orange; |
| 13 } |
| 14 |
6 .tbd { /* style for comments that should be visible to all devs */ | 15 .tbd { /* style for comments that should be visible to all devs */ |
7 color: rgb(125, 125, 125); | 16 color: rgb(125, 125, 125); |
8 } | 17 } |
9 | 18 |
10 .pageData { | 19 .pageData { |
11 display: none; | 20 display: none; |
12 } | 21 } |
13 | 22 |
14 #header { | 23 #header { |
15 margin:1em 0; | 24 margin:1em 0; |
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1331 border-left:0px; | 1340 border-left:0px; |
1332 } | 1341 } |
1333 | 1342 |
1334 #codesiteContent.hideSideNav .g-tpl-170 .g-unit { | 1343 #codesiteContent.hideSideNav .g-tpl-170 .g-unit { |
1335 display:block; | 1344 display:block; |
1336 margin:0 0 0 0px; | 1345 margin:0 0 0 0px; |
1337 width:auto; | 1346 width:auto; |
1338 float:none | 1347 float:none |
1339 } | 1348 } |
1340 | 1349 |
OLD | NEW |