generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (50 loc) · 1.01 KB
/
styles.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
/* Estilo para el cuerpo de la página */
body {
background: #bdbdbd;
margin: 0;
}
/* Estilo para todos los divs */
div {
box-sizing: border-box;
}
/* Estilo para el encabezado */
header {
background: white;
padding: 10px;
}
/* Estilo para el título en el encabezado */
header h1 {
margin: 0;
}
/* Estilo para los posts */
.post {
background: white;
margin-top: 10px;
}
/* Estilo para las imágenes dentro de los posts */
.post img {
width: 100%;
}
/* Estilo para el encabezado de los posts */
.post .post_header div:first-child {
display: inline-block;
width: 80%;
}
/* Estilo para la fecha en el encabezado de los posts */
.post .post_header div:last-child {
display: inline-block;
width: 20%;
text-align: right;
padding: 10px;
color: gray;
}
/* Estilo para los títulos y párrafos dentro de los posts */
.post h2, .post p {
padding: 10px;
margin: 0;
}
/* Estilo para el contenedor principal */
.container {
width: 50%;
margin: auto;
}