-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
103 lines (92 loc) · 1.86 KB
/
Copy pathindex.css
File metadata and controls
103 lines (92 loc) · 1.86 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
html, body {
margin: 0;
padding: 0;
/* background-color: #e8e8e8; */
font-family: "Source Sans 3", sans-serif ;
}
.header-container {
background-color: white;
display: flex;
justify-content: space-between;
padding-top: 15px;
padding-bottom: 15px;
padding-left: 25px;
padding-right: 30px;
height: 110px;
border-bottom: 2px solid lightgray;
/* border: 1px solid gray; */
/* width: 375px; */
}
.oldagram-logo {
height: 95px;
align-self: center;
}
.user-avatar {
height: 65px;
border-radius: 50px;
align-self: center;
}
/* post content elements */
.user-info {
display: flex;
padding-left: 20px;
padding-top: 13px;
padding-bottom: 17px;
/* border: 1px solid red; */
/* background-color: aquamarine; */
}
.avatar {
border-radius: 50%;
margin-right: 20px;
width: 75px;
/* border: 2px solid salmon; */
}
.user-full-name {
font-weight: bold;
font-size: 22px;
margin: 0;
margin-bottom: -5px;
padding-top: 8px;
padding-bottom: 0px;
/* background-color: yellow; */
}
.location-text {
margin: 0;
padding: 0;
font-size: 20px;
/* background-color: red; */
}
.post-image {
background-image: url('./images/post-vangogh.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
/* width: 100%; */
height: 60%;
/* background-color: red; */
}
.body {
margin-top: 45px;
margin-left: 35px;
/* border: 2px solid blue; */
}
.icons {
/* border: 1px solid green; */
width: 29%;
display: flex;
justify-content: space-between;
}
.icons img {
width: 70px;
}
.like-count p {
font-weight: bold;
font-size: 26px;
/* background-color: blueviolet; */
}
.username-caption {
font-size: 26px;
}
.username-caption span {
font-weight: bold;
}