Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | toc { |
michael@0 | 6 | position:fixed; |
michael@0 | 7 | top:0; |
michael@0 | 8 | left:0; |
michael@0 | 9 | width:12em; |
michael@0 | 10 | height:100%; |
michael@0 | 11 | border-right: 1px solid black; |
michael@0 | 12 | background-color: #CCE6F3; |
michael@0 | 13 | font-family: Arial; |
michael@0 | 14 | overflow:auto; |
michael@0 | 15 | color: darkblue; |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | toc > title { |
michael@0 | 19 | display: block; |
michael@0 | 20 | font-size:12pt; |
michael@0 | 21 | font-weight: bold; |
michael@0 | 22 | background-color: black; |
michael@0 | 23 | color:white; |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | toclink:visited { |
michael@0 | 27 | color: purple; |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | toclink:active { |
michael@0 | 31 | color: red; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | level1 { |
michael@0 | 35 | display: block; |
michael@0 | 36 | font-weight:bold; |
michael@0 | 37 | font-size:12pt; |
michael@0 | 38 | margin-left: 4px; |
michael@0 | 39 | margin-bottom: 2px; |
michael@0 | 40 | } |
michael@0 | 41 | |
michael@0 | 42 | level1 > toclink { |
michael@0 | 43 | list-style-position: inside; |
michael@0 | 44 | text-decoration: none; |
michael@0 | 45 | color: darkblue; |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | level2 { |
michael@0 | 49 | display: block; |
michael@0 | 50 | font-size:11pt; |
michael@0 | 51 | margin-left: 8px; |
michael@0 | 52 | margin-bottom: 2px; |
michael@0 | 53 | } |
michael@0 | 54 | |
michael@0 | 55 | level2 > toclink { |
michael@0 | 56 | list-style-position: inside; |
michael@0 | 57 | text-decoration: none; |
michael@0 | 58 | color: darkblue; |
michael@0 | 59 | } |
michael@0 | 60 | |
michael@0 | 61 | level3 { |
michael@0 | 62 | display: list-item; |
michael@0 | 63 | font-size: 8pt; |
michael@0 | 64 | margin-left: 12px; |
michael@0 | 65 | margin-bottom: 2px; |
michael@0 | 66 | } |
michael@0 | 67 | |
michael@0 | 68 | level3 > toclink { |
michael@0 | 69 | list-style-position: inside; |
michael@0 | 70 | text-decoration: none; |
michael@0 | 71 | color: darkblue; |
michael@0 | 72 | } |
michael@0 | 73 | |
michael@0 | 74 | toc img { |
michael@0 | 75 | margin-right: 1em; |
michael@0 | 76 | } |
michael@0 | 77 |