-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystylesheet.css
107 lines (107 loc) · 1.3 KB
/
mystylesheet.css
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
/*External CSS to format the layout of my web site*/
#container
{
margin: 0 auto;
width: 70%;
background: #F8F8F8;
font-family: verdana, sans serif;
border-style: solid;
border-color: #9E9EAE;
}
#header
{
background:#FFF;
padding: 5px;
}
#header h1
{
margin: 0;
color: #008F6B;
font-size: 90%;
text-align: right;
}
#navigation
{
float: left;
width: 100%;
background:#9E9EAE;
}
#navigation ul
{
margin: 0;
padding: 0;
}
#navigation ul li {
list
-style
-type: none;
display: inline;
}
#navigation li a {
display: block;
float: left;
padding: 5px 10px;
color: #fff;
text
-decoration: none;
border
-right: 1px solid#fff;
}
#navigation li a:hover
{
background:#008F6B;
color: #fff
}
#content {
clear: left;
padding: 20px;
}
#content h2 {
color:#008F6B;
font
-size: 110%;
margin: 0 0 .5em;
}
#footer
{
background:#9E9EAE;
text-align: right;
padding: 20px;
height: 1%;
color: #fff;
}
a:link
{
color: #008F6B;
text-decoration: none;
}
a:active
{
color: #3366FF;
text-decoration: none;
}
a:visited
{
color: #3366FF;
text-decoration: none;
}
a:hover
{
color: #7A7ACC;
text-decoration: none;
}
table, th, td
{
border-collapse:collapse;
border: 3px solid #008F6B;
}
th
{
color:#008F6B;
}
td
{
padding:5px;
text-align:left;
color:#008F6B;
}