forked from 3r1s-s/meo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compact.css
46 lines (37 loc) · 803 Bytes
/
compact.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
.post, .skeleton-post {
background-color: transparent;
margin-bottom: 0;
}
.post:hover {
background-color: var(--accent-color);
}
.post:hover .buttonContainer {
background-color: transparent;
}
.reply {
background-color: var(--dark-accent);
border: 3px solid var(--dark-down);
}
@media screen and (max-width: 720px) {
.post:hover .buttonContainer, .post:hover {
background-color: transparent;
}
}
.pfp {
max-height: 80px;
}
.avatar {
width: 46px;
height: 46px;
}
.wrapper {
padding: 5px;
}
.message-container .button:first-child {
border-top-left-radius: var(--br);
border-bottom-left-radius: var(--br);
}
.message-container .button:last-child {
border-top-right-radius: var(--br);
border-bottom-right-radius: var(--br);
}