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
71 lines (57 loc) · 1020 Bytes
/
Copy pathstyle.css
File metadata and controls
71 lines (57 loc) · 1020 Bytes
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
body {
background-color: rgb(72, 69, 69);
}
.post {
margin: auto;
border-radius: 10px;
background-color: white;
width: 400px;
height: 650px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-self: center;
}
.post_header{
padding-bottom: 15px;
padding-top: 10px;
margin-left: 15px;
display: flex;
}
.post_img {
width: 100%;
height: 60%;
}
.icons{
height: 20%;
width: 0%;
display: flex;
justify-content: space-around;
width: 80%;
object-fit: contain;
padding-bottom: 10px;
}
.etiqueta{
margin-left: 280px;
}
.post_body {
width: 100%;
height: 350px;
padding: 10px;
box-sizing: border-box;
font-size: 14px
}
.puntos {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 3px;
height: 25px;
margin-left: 300px;
}
.dot {
width:7px;
height: 7px;
background-color: black;
border-radius: 50%;
}