blob: 4419918df33395be871ecaf72479611c1baee7cf (
plain)
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
|
.twitter {
position: relative;
}
.twitter_header {
font-size: 16px;
text-align: left;
margin-bottom: 55px;
padding: 10px 8px;
}
.twitter_id {
position: absolute;
}
.twitter_image_frame {
display: block;
width: 40px;
height: 40px;
overflow: hidden;
position: absolute;
left: 0;
top: 0;
// background-image: url(/Avatar_Pic.png);
}
.twitter_image_frame > img {
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 30;
width: 100%;
margin: auto;
}
.twitter_name {
padding-left: 55px;
line-height: 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 16px;
}
// Body = displays tweets
.twitter_list {
box-sizing: border-box;
}
.tweet {
border-top-style: solid;
border-color: lightgrey;
padding: 10px 8px;
}
.tweet_text {
box-sizing: border-box;
}
.tweet_text_date {
text-align: right;
padding-top: 4px;
font-size: 12px ;
}
.twitter_footer {
border-top-style: solid;
border-color: lightgrey;
padding: 10px 8px;
font-style: italic;
font-size: 12px;
}
.more_tweets_link {
text-align: right;
font-size: 12px;
}
|