-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservicos.css
More file actions
77 lines (63 loc) · 997 Bytes
/
servicos.css
File metadata and controls
77 lines (63 loc) · 997 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
71
72
73
74
75
76
77
header{
background: #e8e8e8;
}
.box {
width: 940px;
position: relative;
margin: 0 auto;
}
nav {
position: absolute;
top: 100px;
right: 0;
}
nav li{
display: inline-block;
margin: 0 0 0 25px;
font-size: 28px;
}
nav a {
color: #736b6b;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
}
nav a:hover {
color: #009e35;
text-decoration: underline;
}
.servicos {
width: 940px;
margin: 0 auto;
}
.servicos li {
display: inline-block;
text-align: center;
padding: 12px;
margin: 1.5%;
border: 2px solid #949494;
border-radius: 10px;
}
.servicos li:hover {
border-color: #009e35;
}
.servicos h2 {
font-size: 25px;
font-weight: bold;
margin-bottom: 5px;
}
.servicos h2:hover {
color: #009e35;
}
.servicos .descricao {
font-size: 18px;
margin-bottom: 5px;
}
.servicos .preco {
font-size: 25px;
}
footer {
background: #e8e8e8;
text-align: center;
padding: 50px;
}