Fix style of proxy link at bottom of page
This commit is contained in:
parent
c96ae6b80f
commit
916bdc617d
1 changed files with 17 additions and 13 deletions
30
main.go
30
main.go
|
@ -246,6 +246,19 @@ li {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:before {
|
||||||
|
content: '⇒';
|
||||||
|
color: #999;
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: bold;
|
||||||
|
position: absolute;
|
||||||
|
left: -1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
margin: 0 -1rem;
|
margin: 0 -1rem;
|
||||||
|
@ -258,6 +271,10 @@ details:not([open]) summary a {
|
||||||
color: gray;
|
color: gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
details summary a:before {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
dl dt {
|
dl dt {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@ -265,19 +282,6 @@ dl dt {
|
||||||
dl dt:not(:first-child) {
|
dl dt:not(:first-child) {
|
||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:before {
|
|
||||||
content: '⇒';
|
|
||||||
color: #999;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold;
|
|
||||||
position: absolute;
|
|
||||||
left: -1.25rem;
|
|
||||||
}
|
|
||||||
`
|
`
|
||||||
|
|
||||||
type GemtextContext struct {
|
type GemtextContext struct {
|
||||||
|
|
Loading…
Reference in a new issue