-
Notifications
You must be signed in to change notification settings - Fork 1
/
details.css
110 lines (98 loc) · 2.35 KB
/
details.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* First div */
.post-details-container {
display: flex;
justify-content: space-between;
margin: 0 30px;
}
.post-details-container > .left {
margin-left: 120px;
margin-right: 10px;
display: flex;
flex-direction: column;
}
.post-details-container > .left > .details-container {
height: 210px;
width: 300px;
background-color: #262D34;
border-radius: 10px;
padding: 6px;
padding-right: 10px;
display: inline-flex;
flex-direction: column;
justify-content: space-between;
margin-top: 15px;
gap: 4px;
}
.details-row {
display: flex;
align-items: center;
justify-content: space-between;
flex: 1;
}
.details-row img {
width: 28px;
height: 28px;
object-fit: contain;
}
.details-row span {
color: white;
font-family: "Source Sans Pro";
font-size: 16px;
font-weight: 500;
line-height: 24px;
text-align: left;
}
/* Second div */
.post-details-container > .center {
margin-right: 10px;
}
.post-details-container > .center > .image-container {
background-color: #262D34;
width: 785px;
height: 797px;
display: flex;
justify-content: center;
align-items: center;
margin: 15px 0 30px;
margin-left: 30px;
margin-right: 30px;
}
.post-details-container > .center > .image-container img {
width: 785px;
height: 273px;
object-fit: contain;
}
.post-details-container > .center > h1 {
color: white;
font-family: "Source Sans Pro";
font-size: 24px;
font-weight: 600;
line-height: 28px;
text-align: left;
margin-left: 30px;
margin-right: 30px;
margin-bottom: 10px;
}
.post-details-container > .center > p {
color: #97989D;
font-family: "Source Sans Pro";
font-size: 16px;
font-weight: 400;
line-height: 24px;
text-align: left;
margin-left: 30px;
margin-right: 30px;
}
/* Third and Fourth div */
.post-details-container > .right {
display: flex;
flex-direction: column;
}
.post-details-container > .right > .third-div,
.post-details-container > .right > .fourth-div {
background-color: #262D34;
width: 325px;
height: 354px;
margin-top: 15px;
margin-right: 30px;
}