-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
92 lines (88 loc) · 1.49 KB
/
index.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
:root{
--base-white: #F5F5F5;
--container-bg: #EDEDED;
--content-bg: #FFFFFF;
--border-gray: #C6C6C6;
--font-color: #000000;
}
html, body {
margin: 0;
padding: 0;
font-family: 'Source Sans Pro', sans-serif;
background-color: var(--base-white);
color: var(--font-color);
}
/* TYPOGRAPHY */
h5,p{
padding: 0;
margin: 0;
}
p{
font-size: 12px;
}
/* LAYOUT */
.container{
width: 375px;
height: auto;
margin: 0px auto;
background-color: var(--container-bg) ;
}
.logo{
width: 127px;
}
.icon{
width: 34px;
height: 34px;
border-radius: 50%;
}
.head-container,
.section-head,
.btn-container,
.comment-container{
display: flex;
}
.head-container{
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--border-gray);
padding: 5px 15px 10px 10px;
background-color: var(--content-bg);
}
section{
background-color:var(--content-bg) ;
margin-bottom: 20px;
}
.section-head{
padding: 10px;
align-items: center;
}
.section-head-details{
margin: 0px 10px;
}
.post{
width: 375px;
}
.btn-container{
align-items: center;
padding: 10px 0px 10px 5px;
}
.btn{
width: 23px;
padding: 5px;
}
#btn-heart{
cursor: pointer;
}
.section-details{
padding: 0px 10px 10px;
border-bottom: 20px solid var(--container-bg);
}
#like-count{
padding-bottom:10px ;
}
.comment-container{
padding-bottom: 15px;
}
.comment{
padding-left: 5px;
}