-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (68 loc) · 1.27 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (68 loc) · 1.27 KB
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
78
79
80
81
82
*{
margin: 0;
font-family: Helverica, Arial, sans-serif;
font-size: 18px
}
.cabecalho{
padding: 10px 0;
text-align: center;
}
.chamada {
background-color: #2283c9;
padding: 60px 15px;
}
h1 {
margin: 0;
color: #ffffff;
font-size: 36px;
text-align: center;
}
.imoveis {
margin: auto;
max-width: 1100px;
text-align: center;
}
.imoveis article {
padding: 0 15px;
margin: 30px 5px;
}
.imoveis article img {
max-width: 100%;
}
.imoveis article h2 {
margin: 25px 1px;
color: #686868;
font-size: 20px;
}
button {
/*largura*/
width: 100%;
/*espacamentos*/
margin-bottom: 4px;
/*corrigindo comportamento padrao css*/
box-sizing: border-box;
/*preenchimento*/
padding: 8px 16px;
/*bordas*/
border-radius: 4px;
border: 1px red solid;
background-color: #127d00;
}
.imoveis a {
background-color: #127d00;
color: #fff;
box-sizing: border-box;
text-decoration: none;
}
@media (min-width: 600px) {
.chamada {
padding: 120px 15px;
font-size: 54px;
}
.chamada h1 {
font-size: 54px;
}
.imoveis article {
float: left;
}
}