Spaces:
Running
Running
File size: 2,324 Bytes
76d104c |
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 |
body /* initialize default text parameters
and set the background colour of the page
beyond the 960px wrapper. */
{
font-family: Georgia, Times, "Times New Roman", serif;
font-size: 1.2em;
text-align: left;
color: black;
background: #003; /* very dark blue */
line-height: 1.3em;
}
#wrapper /* fix the page width to 960px.
This declaration must always come second */
{
margin: 0 auto; /* centre wrapper */
border: 1px solid black;
width: 1870px;
}
/* banner styles */
header
{
background: #ffc; /* conditioner yellow */
text-align: center;
height: 172px;
border-bottom: 1px solid black;
padding: 10px;
}
/* <h1> and <h2> margin-top indirectly
affects vertical position of the navbar */
header h1
{
font-size: 1.6em;
font-weight: bold;
margin-top: 45px;
}
/* header <h2> is used for the slogan or
theme to improve accessibility. We switch
from Georgia to Times New Roman here,
which I prefer for italics */
header h2
{
font-family: "Times New Roman", Times, Georgia, serif;
font-size: 1.05em;
line-height: 1.5em;
margin-top: 30px;
}
img
{
background: black;
box-shadow: 0.2px 0.2px 4px black;
margin-top: 6px;
padding: 1px 2px 2px 1.5px;
height: 256px;
width: 256px;
}
/* table styles
Switch to Times New Roman to improve
numerical display */
table
{
font-family: "Times New Roman", Times, Georgia, serif;
background: #ffc; /* conditioner yellow */
border: 1px solid black;
margin: 8px 0px 6px 0px;
padding: 8px;
}
#titles
{
font-weight: bold;
height: 80px;
text-align: center;
}
th
{
font-weight: bold;
padding: 5px;
text-align: center;
width: 80px;
}
tr
{
background: #9ff; /* light cyan */
}
td
{
padding: 2px;
}
.blank
{
padding: 3px;
}
.image
{
width: 256px;
}
.prompt
{
padding: 10px;
width: 310px;
}
/* footer styles
Times New Roman harmonizes with Georgia,
but gives uniform display of numbers */
footer
{
font-family: "Times New Roman", Times, Georgia, serif;
font-size: 1em;
color: white;
background: #069; /* Baltic blue */
border: 1px solid black;
padding: 25px;
line-height: 1em;
text-align: center;
}
|