-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-home.css
88 lines (70 loc) · 1.4 KB
/
style-home.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
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
83
84
85
86
87
88
body {
}
.principal {
background: #CCCCCC;
padding: 30px;
}
.titulo-principal{
position: relative;
padding-left: 0px;
top: 8px;
right: 15px;
left: 10px;
width: 940px;
}
.caixa-principal {
display: inline;
position: relative;
width: 940px; /* largura padrão usada na web */
margin: 0 0 50px auto; /* topo, direita, baixo, esquerda / auto significa automático */
}
nav {
position: absolute;
top: 18px;
right: 15px;
}
nav li {
display: inline;
margin: 0 0 0 15px; /* topo, direita, baixo, esquerda */
}
nav a {
text-transform: uppercase;
color: #000000;
font-weight: bold;
font-size: 18px;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
#banner { /* "#" utilizado para referenciar identificador */
width: 100%;
}
.titulo-centralizado {
text-align: center;
}
p {
text-align: center;
}
#missao {
font-size: 20px;
}
em strong {
color: #FF0000;
}
.itens { /* o "." é utilizado para referenciar classes*/
font-style: italic;
}
.beneficios {
background: #FFFFFF;
padding: 20px; /* espaçamento/margem interna */
}
.lista-itens {
display: inline-block; /* o display inline block ocupa apenas o tamanho do conteúdo permitindo que insira outros elementos próximos a ele */
vertical-align: top;
width: 20%; /* largura */
margin-right: 15%;
}
.imagembeneficios {
width: 50%;
}