-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathestilo.css
More file actions
executable file
·70 lines (56 loc) · 806 Bytes
/
estilo.css
File metadata and controls
executable file
·70 lines (56 loc) · 806 Bytes
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
body div#vermelho.pequeno {
background-color: red;
}
body div#vermelho.pequeno {
background-color: black;
}
#azul {
background-color: blue;
}
#amarelo {
background-color: yellow;
}
#laranja {
background-color: orange;
}
#cinza {
background-color: grey;
}
#verde {
background-color: green;
}
.pequeno {
width: 300px;
}
.medio {
width: 500px;
}
.grande {
width: 700px;
}
.pequeno, .grande {
border: black 1px solid;
}
#verde p {
font-weight: bold;
}
#menu a {
padding: 0 20px;
height: 50px;
line-height: 50px;
background-color: black;
color: white;
text-align: center;
display: inline-block;
text-decoration: none;
margin: 0;
}
#menu a:hover {
text-decoration: underline;
background-color: #ccc;
color: black;
}
#menu a:visited {
background-color: #666;
color: #333;
}