blob: 3403359d765f7455963673f3e2e77029a1de35dd (
plain)
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
|
/* Copyright (c) 2013-2014 Texas Instruments Incorporated. All rights reserved. */
/* Styling for the entire document. */
body
{
background-color: white;
color: black;
font-family: Ariel,Helvetica,sans-serif;
}
/* Styling for the heading div. */
#heading
{
clear: both;
margin-bottom: 10px;
}
#heading_h1
{
font-size: 2em;
font-weight: bold;
text-align: center;
}
#heading_h2
{
font-size: 1.25em;
font-weight: bold;
text-align: center;
}
#heading hr
{
border-bottom: 1px solid #ff0000;
border-top: 1px solid #ff0000;
}
#heading a img
{
border: 0;
}
/* Styling for the menu div. */
#menu
{
float: left;
margin-bottom: 10px;
width: 225px;
}
#menu ul
{
list-style-type: none;
margin: 0;
padding: 0;
}
#menu a:link, #menu a:visited
{
background-color: #ff0000;
color: #ffffff;
display: block;
font-weight: bold;
margin-bottom: 2px;
margin-top: 2px;
padding: 4px;
text-align: center;
text-decoration: none;
width: 200px;
}
#menu a:hover, #menu a:active
{
background-color: #bf0000;
}
/* Styling for the content div. */
#content
{
margin-bottom: 10px;
margin-left: 225px;
}
#content_heading
{
font-size: 1.5em;
font-weight: bold;
text-align: center;
}
/* Styling for the footing div. */
#footing
{
clear: both;
font-size: .75em;
font-style: italic;
text-align: right;
}
#footing hr
{
border-bottom: 1px solid #ff0000;
border-top: 1px solid #ff0000;
}
|