-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (45 loc) · 870 Bytes
/
style.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
*{
margin: 0;
padding: 0;
}
#cabecalho {
height: 100px;
background-color: rgb(218, 32, 146);
margin: 0 auto;
}
#menu {
width: 20%;
height: 600px;
background-color: rgba(164,229,231, 0.863);
float: left;
margin-top: 10px;
}
#menu > a{
text-decoration: none;
text-align: center;
display: block;
}
#principal {
width: 80%;
height: 600px;
background-color: azure;
float: left;
margin-top: 10px;
margin-bottom: 10px;
}
h5{
font-family: 'Times New Roman', Times, serif;
text-align: center;
}
#rodape {
background-color: aquamarine(212, 212, 192);
}
p {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
color:black(43, 226, 156);
}
#clear{
clear: both;
}