print small font in black not red
This commit is contained in:
parent
ca8e543e05
commit
847710ded6
5 changed files with 43 additions and 6 deletions
9
_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/edit/baseof.html
generated
Normal file
9
_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/edit/baseof.html
generated
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-us{{ end }}">
|
||||||
|
<head>
|
||||||
|
<title>{{- .Title }} - {{ .Site.Title -}}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{{ block "edit" . }}{{ end }}
|
||||||
|
</body>
|
||||||
|
</html>
|
10
_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/edit/list.html
generated
Normal file
10
_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/edit/list.html
generated
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ define "edit" }}
|
||||||
|
{{ range (readDir ".") }}
|
||||||
|
{{ if .IsDir }}
|
||||||
|
<p>Dir: {{ .Name }}</p>
|
||||||
|
{{ partial "readdir.html" .Name }}
|
||||||
|
{{ else }}
|
||||||
|
<p>File: {{ .Name }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
10
_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/partials/readdir.html
generated
Normal file
10
_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/partials/readdir.html
generated
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ $parentName := . }}
|
||||||
|
{{ range (readDir .) }}
|
||||||
|
{{ $currentName := printf "%s/%s" $parentName .Name }}
|
||||||
|
{{ if .IsDir }}
|
||||||
|
<p>_Dir: {{ $currentName }}</p>
|
||||||
|
{{ partial "readdir.html" $currentName }}
|
||||||
|
{{ else }}
|
||||||
|
<p>_File: {{ $currentName }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
|
@ -6,8 +6,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@page:left {
|
@page:left {
|
||||||
margin-right: 0.6in;
|
margin-right: 0.8in;
|
||||||
margin-left: 1.1in;
|
margin-left: 0.9in;
|
||||||
@bottom-left-corner {
|
@bottom-left-corner {
|
||||||
content: counter(page);
|
content: counter(page);
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
@ -21,8 +21,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@page:right {
|
@page:right {
|
||||||
margin-left: 0.6in;
|
margin-left: 0.8in;
|
||||||
margin-right: 1.1in;
|
margin-right: 0.9in;
|
||||||
@bottom-right-corner {
|
@bottom-right-corner {
|
||||||
content: counter(page);
|
content: counter(page);
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
@ -57,6 +57,10 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sup,
|
||||||
|
.hassup {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
.grid {
|
.grid {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
@ -225,4 +229,8 @@
|
||||||
background: white;
|
background: white;
|
||||||
padding-left: 0.1rem;
|
padding-left: 0.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ol[data-split-from] {
|
||||||
|
padding-left: 0.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
# git.sandpoints.org/Drawwell/SandpointsTheme v0.0.0-20210219121445-3e058b4ebb35
|
# git.sandpoints.org/Drawwell/SandpointsTheme v0.0.0-20210314123921-28595383157a
|
||||||
|
|
Loading…
Add table
Reference in a new issue