-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
117 lines (98 loc) · 1.74 KB
/
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
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
@charset "UTF-8";
* {
font-family: sans-serif;
}
h1, h2 {
text-align: center;
}
main {
display: -ms-grid;
display: grid;
-ms-grid-columns: (1fr)[2];
grid-template-columns: repeat(2, 1fr);
grid-gap: 2em;
padding: 0 2em;
}
.comtodon .status {
position: relative;
}
.comtodon .status-content, .comtodon .reply-main {
margin-bottom: .5em;
}
.comtodon .status-content {
border-left: 2px solid #777;
}
.comtodon .status-content.sensitive {
content: 'Sensitive';
}
.comtodon .replies {
margin-left: 1em;
}
.comtodon p {
margin: .1em;
}
.comtodon a {
text-decoration: none;
color: #777;
}
.comtodon .emoji {
height: 1em;
}
.comtodon .author {
display: -ms-grid;
display: grid;
-ms-grid-columns: 3.3em auto;
grid-template-columns: 3.3em auto;
-ms-grid-rows: (1em)[3];
grid-template-rows: repeat(3, 1em);
grid-gap: .1em;
}
.comtodon .author .avatar {
border-radius: 20%;
-ms-grid-row: 1;
-ms-grid-row-span: 3;
-ms-grid-column: 1;
grid-area: 1 / 1 / 4 / 1;
height: 100%;
}
.comtodon .author .name {
color: black;
font-weight: bold;
}
.comtodon .author .acct:before {
content: '@';
}
.comtodon .date {
float: right;
}
.comtodon .reply-main {
display: inline-block;
color: white;
background-color: #777;
border-radius: .5em;
padding: .1em .3em;
}
.comtodon .reply-main:after {
content: '✉';
margin-left: .5em;
}
.comtodon .reply {
visibility: hidden;
position: absolute;
right: .1em;
top: 2em;
}
.comtodon .reply:after {
content: '✉';
visibility: visible;
display: block;
position: absolute;
right: 0;
bottom: 0;
color: white;
background-color: #777;
border-radius: .5em;
font-size: .8em;
padding: .1em .3em;
}
/*# sourceMappingURL=style.css.map */