1/* 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style license that can be 4 * found in the LICENSE file. 5 */ 6 7/* 8 * croc.css - styles for croc HTML output 9 */ 10 11body { 12 font-family:arial; 13} 14 15table { 16 border-collapse:collapse; 17 border-width:0px; 18 border-style:solid; 19} 20 21thead { 22 background-color:#C0C0E0; 23 text-align:center; 24} 25 26td { 27 padding-right:10px; 28 padding-left:10px; 29 font-size:small; 30 border-width:1px; 31 border-style:solid; 32 border-color:black; 33} 34 35td.secdesc { 36 text-align:center; 37 font-size:medium; 38 font-weight:bold; 39 border-width:0px; 40 border-style:none; 41 padding-top:10px; 42 padding-bottom:5px; 43} 44 45td.section { 46 background-color:#D0D0F0; 47 text-align:center; 48} 49 50td.stat { 51 text-align:center; 52} 53 54td.number { 55 text-align:right; 56} 57 58td.graph { 59 /* Hide the dummy character */ 60 color:#FFFFFF; 61 padding-left:6px; 62} 63 64td.high_pct { 65 text-align:right; 66 background-color:#B0FFB0; 67} 68td.mid_pct { 69 text-align:right; 70 background-color:#FFFF90; 71} 72td.low_pct { 73 text-align:right; 74 background-color:#FFB0B0; 75} 76 77 78span.missing { 79 background-color:#FFB0B0; 80} 81span.instr { 82 background-color:#FFFF90; 83} 84span.covered { 85 background-color:#B0FFB0; 86} 87 88span.g_missing { 89 background-color:#FF4040; 90} 91span.g_instr { 92 background-color:#FFFF00; 93} 94span.g_covered { 95 background-color:#40FF40; 96} 97 98p.time { 99 padding-top:10px; 100 font-size:small; 101 font-style:italic; 102} 103