-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
148 lines (125 loc) · 2.05 KB
/
index.css
File metadata and controls
148 lines (125 loc) · 2.05 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
html, body {
margin: 0;
padding: 0;
font-family: 'Source Sans Pro', 'Apple Color Emoji', sans-serif;
font-size: 13px;
background-color: #EDEDED;
}
p {
margin: 0px;
}
header {
height: 67px;
border-bottom: 1px #c6c6c6 solid;
background-color: #FFF;
position: fixed;
width: 100vw;
top: 0px;
z-index: 1;
}
main {
z-index: 0;
margin-top: 80px;
}
article {
margin-bottom: 20px;
background-color: #FFF;
border: 1px solid #c6c6c6;
border-radius: 6px;
}
.container {
display: block;
max-width: 375px;
min-height: 70px;
margin: 0 auto;
}
header .container {
max-width: 450px;
display: flex;
justify-content: space-between;
align-items: center;
height: 67px;
}
.app-logo {
margin-left: 15px;
width: 127px;
height: 47px;
}
.user-avatar {
margin-right: 15px;
width: 34px;
height: 34px;
border-radius: 20px;
}
section {
margin:0;
}
footer {
padding-top: 25px;
height: 70px;
text-align: center;
color: #EEE;
text-shadow: -.5px -.5px 0.1px #979797;
}
.user-topbar {
width: 348px;
height: 32px;
display: flex;
justify-content: left;
align-items: center;
padding: 10px 12px;
}
.poster-avatar {
margin-right: 10px;
width: 34px;
height: 34px;
border-radius: 20px;
}
.strong {
font-weight: bold;
}
.user-location {
font-size: 12px;
}
.interactions {
margin: 0;
padding: 10px 0px 20px 12px;
}
.like-btn,
.comment-btn,
.dm-btn {
width: 23px;
margin: 0px 7px 0px 0px;
opacity: 0.5;
}
.btn-row img:hover,
.btn-row img:focus {
opacity: 1;
}
.likes-number,
.comments {
margin-top: 11px;
}
a {
color: rgb(180, 180, 180);
text-shadow: none;
}
.user-post {
position: relative;
width: 100%;
}
.user-post span {
position: absolute;
font-size: 250px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0.75;
display: none;
}
.post-img {
width: 100%;
}
.user-post .justliked {
display: inline-block;
}