forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (80 loc) · 1.38 KB
/
style.css
File metadata and controls
86 lines (80 loc) · 1.38 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
83
84
85
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
color: #222;
background: #000;
min-height: 100vh;
}
.Pagina{
background: #e9e9e9;
max-width: 1500px;
min-height: 100vh;
margin: 0 auto;
display: flex;
flex-direction: column;
}
.Titulo{
background-color:white;
text-align: center;
padding: 20px 0;
color: black;
width: 100%;
}
.Titulo h1{
font-size: 28px;
}
.Wrapper{
display: flex;
flex-direction: column;
align-items: center;
gap: 36px;
padding: 30px 0;
}
.Post{
display: flex;
flex-direction: column;
width: 90%;
max-width: 640px;
overflow: hidden;
background: #fff;
border-radius: 6px;
border: 1px solid #ddd;
}
.post-header{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 10px 15px;
border-bottom: 1px solid #eee;
}
.Titulopost {
color: black;
font-size: 25px;
font-weight: bold;
}
.postfecha{
font-size: 18px;
color: darkgray;
}
.Foto{
display: block;
width: 100%;
height:auto;
object-fit: cover;
object-position: center;
}
.Descripcion {
padding: 12px 15px 16px 20px;
font-size: 14px;
line-height: 1.5;
color: #333;
}
.Hagstag {
color: black;
font-weight: bold;
}