-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathestilo.css
58 lines (57 loc) · 979 Bytes
/
estilo.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
body{
font-family: Arial, sans-serif;
font-size: 14px;
background-color: #cccccc;
}
#site{
position: relative;
width: 1000px;
margin: 0 auto;
}
#topo{
position: relative;
float: left;
width: 100%;
height: 150px;
background-color: #9999ff;
color: #fff;
}
#menu{
position: relative;
float: left;
width: 200px;
background-color: #000;
}
#menu ul, #menu li{
padding: 0;
margin: 0;
list-style: none;
}
#menu li a{
display: block;
border-bottom: 1px solid #fff;
padding: 8px 0px;
text-align: center;
width: 200px;
text-decoration: none;
color: #fff;
}
#menu li a:hover{
background-color: #9999ff;
}
#conteudo{
position: relative;
float: left;
width: 780px;
padding: 10px;
background-color: #fff;
}
#rodape{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 10px 0px;
text-align: center;
background-color: #ccffcc;
}