summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--scss/man.scss51
2 files changed, 3 insertions, 54 deletions
diff --git a/Makefile b/Makefile
index d16d842..ca04d36 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ POSTS_HTML = $(POSTS_MD:.md=.html) $(POSTS_XML:.xml=.html)
SCSS = $(wildcard scss/_*.scss)
-site: index.html atom.xml style.css man.css
+site: index.html atom.xml style.css
index.html: templates/index.xml $(POSTS_HTML)
sblg -o $@ -t templates/index.xml $(POSTS_HTML)
@@ -22,9 +22,9 @@ atom.xml: templates/atom.xml $(POSTS_HTML)
sassc -t expanded $< >$@
clean:
- rm -f posts/*.html index.html atom.xml style.css man.css
+ rm -f posts/*.html index.html atom.xml style.css
deploy: site
- @rsync -avhR $(POSTS_HTML) posts/img fonts index.html style.css man.css logo.{svg,webp} atom.xml coleridge:www/oriole.systems/
+ @rsync -avhR $(POSTS_HTML) posts/img fonts index.html style.css logo.{svg,webp} atom.xml coleridge:www/oriole.systems/
.PHONY: clean deploy site
diff --git a/scss/man.scss b/scss/man.scss
deleted file mode 100644
index b5c40a6..0000000
--- a/scss/man.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-@import '_webfonts';
-@import '_responsive_fonts';
-@import '_vars';
-
-a {
- color: var(--fg-href);
-}
-
-a:visited {
- color: var(--fg-href-visited);
-}
-
-body {
- background-color: var(--bg-color);
- color: var(--fg-color);
-
- font-family: var(--font-sans);
- font-size: 1.3em;
- line-height: 1.6;
- margin: 1em auto;
- max-width: 1024px;
- padding: 0 1em;
-}
-
-table {
- border-collapse: collapse;
-}
-
-.tbl td:not(:last-child) {
- border-right: solid 1px;
-}
-
-.tbl td {
- padding: 0 5px;
-}
-
-table.foot {
- margin-top: 1em;
-}
-
-table.head, table.foot { width: 100%; }
-td.head-rtitle, td.foot-os { text-align: right; }
-td.head-vol { text-align: center; }
-div.Pp { margin: 1ex 0ex; }
-div.Nd, div.Bf, div.Op { display: inline; }
-span.Pa, span.Ad { font-style: italic; }
-span.Ms { font-weight: bold; }
-dl.Bl-diag > dt { font-weight: bold; }
-code.Nm, code.Fl, code.Cm, code.Ic, code.In, code.Fd, code.Fn,
-code.Cd { font-weight: bold; font-family: inherit; }
-div.Bd-indent pre { padding-left: 4em; }