-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (40 loc) · 951 Bytes
/
style.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
.tituloprincipal{
padding-left: 30px;/* correrlo a la derecha */
}
#banner{
width: 100%;
/* height: 500px; */
/* margin:10px auto; /* centrar imagen */
/* display:block; */ /* centrar */
}
.principal{
background-color: #CCCCCC;
padding: 20px; /* le agrega espacio al rectangulo gris */
}
.titulo-centralizado{
text-align: center;
}
p{ /* sekectir */
text-align: center; /* para todas las etiquetas "P" alinear al centro */
/*background: #CCCCCC; pinta cada parrafo */
}
em strong{ /* no referimos especificamente a esa etiqueta */
color: red;
}
.diferenciales{
background-color: white;
padding: 20px;
}
.items{/* referenciando una clase */
font-style: italic;
}
ul{
display: inline-block; /* ocupar solo su espacio de contenido */
vertical-align: top;
width: 20%;
margin-right: 15%;
}
/* la clase permite diferenicar ese estilo */
.imagenDiferenciales{
width: 50%;
}