-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (92 loc) · 1.85 KB
/
styles.css
File metadata and controls
110 lines (92 loc) · 1.85 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
body {
font-family: Courier New, sans-serif;
background-color: #f6f8fa;
line-height: 1.3;
padding: 20px;
font-weight: 400;
}
.container {
max-width: 600px;
margin: 0 auto;
}
.post {
display: flex;
align-items: flex-start;
background-color: #ffffff;
border: 1px solid #e1e8ed;
/* padding: 10px; */
border-radius: 5px;
margin-bottom: 20px;
overflow: hidden;
}
.post .content {
padding: 10px;
width: 100%;
}
.avatar {
padding: 10px;
}
.avatar img {
width: 64px;
height: 64px;
display: block;
border-radius: 5px;
/* margin-right: 10px; */
}
.username {
font-size: 16px;
font-weight: 500;
margin: 0;
color: #1da1f2;
}
.message {
margin: 5px 0 0;
color: #14171a;
margin-bottom: 1em;
}
.interactions {
margin-top: 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
.retweets {
display: flex;
align-items: center;
}
.retweet-icon {
margin-right: 5px;
}
.retweet-count {
font-size: 14px;
color: #657786;
}
.comments {
display: flex;
align-items: center;
margin-left: 15px; /* Add some space between retweets and comments indicators */
}
.comment-icon {
margin-right: 5px;
}
.comment-count {
font-size: 14px;
color: #657786;
}
.post-link {
margin-left: 15px; /* Add some space between the previous interaction and this one */
}
.post-link-icon {
color: #1da1f2; /* Twitter's blue color for links */
text-decoration: none; /* Remove default underline from links */
}
.post-link-icon:hover {
text-decoration: underline; /* Add underline on hover for better user feedback */
}
.pixelated {
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -webkit-optimize-contrast; /* Safari */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: pixelated; /* Chrome */
-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}