-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProdutos.css
56 lines (45 loc) · 935 Bytes
/
Produtos.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
/* Configurações do Conteúdo */
.pacotes {
width: 940px;
margin: 0 auto 0 auto;
padding: 50px 0;
}
.pacotes li {
display: inline-block;
text-align: center;
width: 30%;
vertical-align: top;
/*background: lightgray;*/
margin: 0 1.5%;
padding: 30px 20px;
box-sizing: border-box;
border: black 3px solid;
border-radius: 10px;
}
.pacotes h2 {
font-size: 30px;
font-weight: bold;
}
.descrição { font-size: 15px; }
.preço {
font-size: 22px;
font-weight: bold;
margin-top: 10px;
}
/* Configurações do Mouse */
.pacotes li:hover {
border-color: darkgreen;
color: darkgreen;
}
.pacotes li:active {
border-color: blueviolet;
color: blueviolet;
}
.pacotes li:hover h2 {
font-size: 35px;
color: darkgreen;
}
.pacotes li:active h2 {
font-size: 35px;
color: blueviolet;
}