-
Notifications
You must be signed in to change notification settings - Fork 0
/
myCSS.css
56 lines (55 loc) · 837 Bytes
/
myCSS.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
@charset "UTF-8";
/* This is a comment! Text here will be ignored by the browser. */
body {
margin: 0 auto;
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
}
.homePage {
background: #000000;
}
.container {
width: 960px;
margin: 0 auto;
}
.header {
background: #E69B00;
text-align: center;
margin: 0px;
padding: 5;
float: left;
width: 100%;
height: 80px;
}
.nav {
background: #0058E6;
margin: 0px;
padding: 5;
float: left;
width: 100%;
height: 60px;
text-align: center;
}
.content {
background: #EEEEEE;
margin: 0px;
float: left;
width: 100%;
text-align: center;
}
.footer {
background: #777777;
margin: 0px;
float: left;
width: 100%;
height: 50px;
text-align: center;
}
a:link {
color: #000000;
}
a:visited {
color: #000;
}
a:hover, a:active, a:focus {
text-decoration: underline;
}