colorbox.css
14 years ago
diff.css
14 years ago
dt_table.css
14 years ago
iptraf.css
14 years ago
main.css
14 years ago
phpinfo.css
14 years ago
diff.css
119 lines
| 1 | body { |
| 2 | background: #fff; |
| 3 | font-family: Arial; |
| 4 | font-size: 12px; |
| 5 | } |
| 6 | .Differences { |
| 7 | width: 100%; |
| 8 | border-collapse: collapse; |
| 9 | border-spacing: 0; |
| 10 | empty-cells: show; |
| 11 | } |
| 12 | |
| 13 | .Differences thead th { |
| 14 | text-align: left; |
| 15 | border-bottom: 1px solid #000; |
| 16 | background: #aaa; |
| 17 | color: #000; |
| 18 | padding: 4px; |
| 19 | } |
| 20 | .Differences tbody th { |
| 21 | text-align: right; |
| 22 | background: #ccc; |
| 23 | width: 4em; |
| 24 | padding: 1px 2px; |
| 25 | border-right: 1px solid #000; |
| 26 | vertical-align: top; |
| 27 | font-size: 13px; |
| 28 | } |
| 29 | |
| 30 | .Differences td { |
| 31 | padding: 1px 2px; |
| 32 | font-family: Consolas, monospace; |
| 33 | font-size: 13px; |
| 34 | } |
| 35 | |
| 36 | .DifferencesSideBySide .ChangeInsert td.Left { |
| 37 | background: #dfd; |
| 38 | } |
| 39 | |
| 40 | .DifferencesSideBySide .ChangeInsert td.Right { |
| 41 | background: #cfc; |
| 42 | } |
| 43 | |
| 44 | .DifferencesSideBySide .ChangeDelete td.Left { |
| 45 | background: #f88; |
| 46 | } |
| 47 | |
| 48 | .DifferencesSideBySide .ChangeDelete td.Right { |
| 49 | background: #faa; |
| 50 | } |
| 51 | |
| 52 | .DifferencesSideBySide .ChangeReplace .Left { |
| 53 | background: #fe9; |
| 54 | } |
| 55 | |
| 56 | .DifferencesSideBySide .ChangeReplace .Right { |
| 57 | background: #fd8; |
| 58 | } |
| 59 | |
| 60 | .Differences ins, .Differences del { |
| 61 | text-decoration: none; |
| 62 | } |
| 63 | |
| 64 | .DifferencesSideBySide .ChangeReplace ins, .DifferencesSideBySide .ChangeReplace del { |
| 65 | background: #fc0; |
| 66 | } |
| 67 | |
| 68 | .Differences .Skipped { |
| 69 | background: #f7f7f7; |
| 70 | } |
| 71 | |
| 72 | .DifferencesInline .ChangeReplace .Left, |
| 73 | .DifferencesInline .ChangeDelete .Left { |
| 74 | background: #fdd; |
| 75 | } |
| 76 | |
| 77 | .DifferencesInline .ChangeReplace .Right, |
| 78 | .DifferencesInline .ChangeInsert .Right { |
| 79 | background: #dfd; |
| 80 | } |
| 81 | |
| 82 | .DifferencesInline .ChangeReplace ins { |
| 83 | background: #9e9; |
| 84 | } |
| 85 | |
| 86 | .DifferencesInline .ChangeReplace del { |
| 87 | background: #e99; |
| 88 | } |
| 89 | |
| 90 | pre { |
| 91 | width: 100%; |
| 92 | overflow: auto; |
| 93 | } |
| 94 | h1 { |
| 95 | background: url(../images/wordfence-logo-64x64.png); |
| 96 | background-position: 0 0; |
| 97 | background-repeat: no-repeat; |
| 98 | height: 64px; |
| 99 | vertical-align: middle; |
| 100 | padding: 10px 0 0 70px; |
| 101 | margin: 20px 0 10px 0; |
| 102 | font-size: 34px; |
| 103 | color: #777; |
| 104 | } |
| 105 | table.summary { |
| 106 | font-weight: bold; |
| 107 | } |
| 108 | .diffFooter { |
| 109 | text-align: center; |
| 110 | font-size: 16px; |
| 111 | color: #999; |
| 112 | font-family: Verdana; |
| 113 | margin: 50px auto 50px auto; |
| 114 | } |
| 115 | .diffFooter a { |
| 116 | color: #999; |
| 117 | } |
| 118 | |
| 119 |