1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
html {
font-size: 100%;
}
body{
width: 90%;
margin: auto auto auto auto;
}
caption { caption-side:top; }
ul { list-style-type:circle; }
h1
{
font-size:3rem;
font-weight:bold;
text-align:left;
}
h2
{
font-size:2rem;
font-weight:bold;
text-align:center;
border-bottom-style:solid;
}
img
{
position:absolute;
right:0px;
top:0px;
z-index:-1;
}
#title
{
border-collapse:collapse;
width:100%;
empty-cells:hide;
}
#title td, #title th
{
border: 0px solid white;
padding: 3px 7px 2px 7px;
empty-cells:show;
}
#title td.left
{
font-weight:bold;
text-align:left;
}
#title td.value
{
font-weight:normal;
text-align:left;
}
#title td.right
{
font-weight:bold;
text-align:right;
}
#steps
{
border-collapse:collapse;
width:100%;
margin-right:auto;
}
#steps td, #steps th
{
border: 1px solid black;
padding: 3px 7px 2px 7px;
}
#steps th
{
text-align:left;
padding-top:5px;
padding-bottom:4px;
background-color:#d8d8d8;
}
#steps tr.alt td
{
color:black;
background-color:#e8e8e8;
}
#steps th.check
{
width:10%;
}
#steps td.check
{
width:10%;
font-size:3rem;
text-align:center;
}
#steps td.time
{
width:10%;
}
#notes
{
border-collapse:collapse;
width:100%;
}
#notes td, #notes th
{
border: 0px solid white;
padding: 30px 10px 20px 10px;
empty-cells:show;
}
#notes tr.alt
{
color:black;
background-color:#e8e8e8;
}
#notes td.left
{
width:20%;
font-weight:bold;
text-align:left;
}
#notes td.value
{
width:30%;
font-weight:normal;
text-align:left;
}
#notes td.right
{
width:20%;
font-weight:bold;
text-align:right;
}
#customNote
{
display:block;
white-space:pre-wrap;
}
|