-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
131 lines (104 loc) · 1.96 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
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
/* Downloded and saved the ttf files in font folder
Load in the font faces and call them in repsetive selectors */
@font-face{
font-family: "Source Sans Pro bold";
src: url("../font/source-sans-pro.bold.ttf") format("truetype");
}
@font-face{
font-family: "Source Sans Pro regular";
src: url("../font/source-sans-proregular.ttf") format("truetype");
}
* { /* Universal selector */
margin: 0;
padding: 0;
box-sizing: border-box; /* Box width and height includes all except margin */
}
body {
display: flex;
justify-content: center;
background-color: #fef9ef;
font-family: "Source Sans Pro bold";
}
/* Layout */
.container {
width: 300px;
height: 617px;
margin: 10px;
}
header,
.header-post,
.footer-post {
padding: 10px;
display: flex;
}
.header {
justify-content: space-between;
height: 75px;
background-color: white;
border-bottom: solid 1px #c4c4c4;
margin: 0px;
padding: 0px;
}
.post {
margin: 2px auto;
background-color: white;
}
.header-post {
gap: 20px;
}
.post-info{
font-size: 13px;
margin-top: 5px;
}
.footer-post{
flex-direction: column;
gap: 8px;
font-size: 14px;
}
.icons{
display: flex;
gap: 10px;
margin-bottom: 10px;
}
.footer-post p {
margin-top: 5px;
margin-bottom: 50px
}
/* Images */
.main-logo {
width: 127px;
height: 55px;
}
.portrait-avatar,
.user-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
}
.main-logo,
.user-avatar {
margin: 10px;
}
.post-image{
width: 100%;
}
.icon {
width: 30px;
cursor: pointer;
}
/* Others */
.post-info,
.user-text {
font-family: "Source Sans Pro regular";
}
@media (hover: hover) {
.heart-icon:hover{
content: url('images/icon-heart-hover.png');
}
.share-icon:hover{
content: url('images/icon-dm-hover.png');
}
.comment-icon:hover{
content: url(images/icon-comment-hover.png);
}
}