-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (75 loc) · 1.17 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
html,
body {
margin: 0;
padding: 0;
font-family: "Source Sans Pro", sans-serif;
font-size: 12px;
}
.container {
width: 375px;
margin: 0 auto;
box-shadow: 0px 0px 15px #c6c6c6;
}
header {
display: flex;
justify-content: space-between;
height: 67px;
padding: 15px;
}
.avatar-img {
border-radius: 50%;
width: 46px;
height: 46px;
padding: 10px;
}
.person {
display: flex;
}
.person h4 {
margin-bottom: 0;
margin-top: 14px;
font-size: 13px;
}
.post-img {
width: 100%;
}
.icon {
width: 22px;
height: 22px;
padding: 10px 10px 0px 10px;
}
.threedots {
padding: 18px 10px 0px 10px;
width: 20px;
height: 20px;
margin-left: auto;
}
.likes-container {
margin: 10px 0px 20px 10px;
}
.likes-number,
.likes-username {
font-weight: bold;
}
.post-wrapper {
border-bottom: 30px solid #ededed;
}
.story {
border-radius: 50%;
width: 60px;
height: 60px;
margin: 0px 10px;
padding: 2px;
background: linear-gradient(white, white) padding-box,
linear-gradient(
to right,
#fdf497,
#f09433,
#dc2743,
#cc2366,
#bc1888,
#d6249f
)
border-box;
border: 3px solid transparent;
}