css
This commit is contained in:
parent
608d3c611e
commit
a25b1701c5
|
@ -12,12 +12,8 @@ a
|
|||
&:hover
|
||||
color: $color-hover
|
||||
|
||||
// md > a
|
||||
p:not([class]), li:not([class])
|
||||
a:not([class])
|
||||
margin: 0 1px
|
||||
padding: 2px
|
||||
text-decoration: underline
|
||||
p:not([class])
|
||||
text-align: justify
|
||||
|
||||
hr
|
||||
color: var(--text-meta)
|
||||
|
|
|
@ -3,7 +3,6 @@ code
|
|||
-moz-osx-font-smoothing: auto
|
||||
color: var(--text-code)
|
||||
font-family: $ff-code
|
||||
word-break: break-all
|
||||
|
||||
p>code:not([class]),li>code:not([class])
|
||||
font-size: 85%
|
||||
|
|
|
@ -25,6 +25,8 @@ article.md.content
|
|||
>p:not([class])
|
||||
text-indent: 'calc(%s * 2)' % $fs-p
|
||||
text-align: justify
|
||||
a
|
||||
text-indent: 0
|
||||
h1,h2,h3,h4,h5,h6
|
||||
text-align: center
|
||||
>h2:not([class])
|
||||
|
@ -134,12 +136,15 @@ article.md
|
|||
p:not([class]), li:not([class])
|
||||
a:not([class])
|
||||
position: relative
|
||||
padding: 2px
|
||||
text-decoration: none
|
||||
display: inline-block
|
||||
line-height: 1.2
|
||||
&:after
|
||||
content: ''
|
||||
position: absolute
|
||||
border-radius: 2px
|
||||
bottom: 0
|
||||
bottom: 1px
|
||||
left: 2px
|
||||
right: 2px
|
||||
height: 1px
|
||||
|
|
|
@ -38,10 +38,3 @@
|
|||
a:not([class])
|
||||
text-decoration: underline
|
||||
font-weight: 500
|
||||
margin: inherit
|
||||
padding: inherit
|
||||
&:after
|
||||
display: none
|
||||
&:hover
|
||||
background: inherit
|
||||
color: $color-hover
|
||||
|
|
|
@ -82,3 +82,5 @@
|
|||
|
||||
.md.indent .tag-plugin.tabs .tab-content p:not([class])
|
||||
text-indent: 'calc(%s * 2)' % $fs-p
|
||||
a
|
||||
text-indent: 0
|
|
@ -88,7 +88,7 @@ const StellarTimeline = {
|
|||
}
|
||||
}
|
||||
}
|
||||
cell += '<a class="item comments" href="' + item.html_url + '">';
|
||||
cell += '<a class="item comments" href="' + item.html_url + '" target="_blank" rel="external nofollow noopener noreferrer">';
|
||||
cell += '<span class="key comments">💬</span>';
|
||||
cell += '<span class="value comments">' + item.comments + '</span>';
|
||||
cell += '</a>';
|
||||
|
|
Loading…
Reference in New Issue