-
Notifications
You must be signed in to change notification settings - Fork 3
/
default.style.css
83 lines (83 loc) · 1.71 KB
/
default.style.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
#my-mastodon-widget {
width: 100%;
height: 100%;
border: #eee 1px solid;
font-family: 'Latin Modern Roman', 'Times New Roman', serif, '宋体';
font-size: 13px;
color: #343434;
overflow: hidden;
box-sizing: border-box;
padding: 3px 0;
margin: 0;
background: #fcfcfc;
}
#my-mastodon-widget .main {
box-sizing: border-box;
padding: 3px 8px;
overflow-y: scroll;
height: 100%;
}
#my-mastodon-widget p {
margin: 0;
word-break: break-word;
}
#my-mastodon-widget a {
color: rgba(170, 0, 0, .5);
}
#my-mastodon-widget ::-webkit-scrollbar {
width: 7px;
height: 7px;
}
#my-mastodon-widget ::-webkit-scrollbar-thumb {
background: #eee;
}
#my-mastodon-widget .time {
color: #aaa;
}
#my-mastodon-widget .images .image-wrapper {
margin-left: 3px;
margin-top: 2px;
display: inline-block;
width: 60px;
height: 60px;
overflow: hidden;
}
#my-mastodon-widget .images img {
min-width: 100%;
min-height: 100%;
max-width: 100%;
object-fit: cover;
}
#my-mastodon-widget .emoji {
width: 18px;
}
#my-mastodon-widget .reply::before,
#my-mastodon-widget .reblog::before {
display: inline-block;
margin-bottom: 5px;
background-color: #f3f3f3;
padding: 3px 5px;
border-radius: 3px;
}
#my-mastodon-widget .reblog::before {
content: "🔁 Repost:";
}
#my-mastodon-widget .reply::before {
content: "↩️ Reply:";
}
#my-mastodon-widget .item {
padding-bottom: 5px;
margin-bottom: 8px;
border-bottom: 1px solid #efefef;
}
#my-mastodon-widget .content {
margin-bottom: 5px;
}
#my-mastodon-widget .images {
margin-top: 3px;
}
#my-mastodon-widget .hashtag {
padding: 2px 3px;
background-color: #f7f7f7;
border-radius: 3px;
}