forked from 4GeeksAcademy/Post-de-Instagram-andres20-prog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (72 loc) · 1.13 KB
/
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
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background: #000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: "Montserrat", sans-serif;
}
.post {
width: 30%;
background: #fff;
color: #000;
cursor: pointer;
}
.heading {
display: flex;
align-items: center;
padding: 10px;
background: #fff;
}
.heading h1{
text-transform: uppercase;
}
.heading .user{
text-transform: capitalize;
font-size: 15px;
font-weight: 600;
}
.heading i {
font-size: 30px;
margin-right: 20px;
}
.heading-title {
display: flex;
flex-direction: column;
margin-right: auto;
padding-bottom: 5px;
}
.icono-derecho {
margin-left: auto;
}
img {
width: 100%;
display: block;
}
.content {
padding: 10px;
}
.icons {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
padding: 5px 0px;
}
.icons i {
font-size: 35px;
letter-spacing: 5px;
}
p {
margin: 15px 0;
text-align: justify;
font-size: 13px;
font-weight: 500;
}
span{
font-weight: 800;
}