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