commit 8e688aa595af0a29e66fd816c7acc31bc11cd49c
parent da547f74c3ca7001128e510b09003982ecff4a79
Author: simplicialcomplex <simplicialcomplex@tilde.club>
Date: Mon, 23 Aug 2021 21:55:04 +0300
added (copied) style for git
Diffstat:
3 files changed, 214 insertions(+), 0 deletions(-)
diff --git a/git/favicon.png b/git/favicon.png
Binary files differ.
diff --git a/git/logo.png b/git/logo.png
Binary files differ.
diff --git a/git/style.css b/git/style.css
@@ -0,0 +1,214 @@
+@font-face {
+ font-family: "k.iosevka";
+ font-style: normal;
+ font-weight: normal;
+ src: url(k.iosevka.woff2) format("woff2");
+ font-display: swap;
+}
+
+@font-face {
+ font-family: "k.iosevka";
+ font-style: normal;
+ font-weight: bold;
+ src: url(k.iosevka.bold.woff2) format("woff2");
+ font-display: swap;
+}
+
+html {
+ height: 100%;
+ font-size: 16px;
+}
+
+html, pre, code {
+ font-family: "k.iosevka", monospace;
+}
+
+@media all and (min-width: 900px) {
+ html {
+ font-size: 17px;
+ }
+}
+
+::selection {
+ background-color: #c1feae;
+}
+
+body {
+ color: #000;
+ background-color: #fff;
+ max-width: 60rem;
+ padding: 1rem 1rem;
+ margin: auto;
+}
+
+@media all and (max-width: 500px) {
+ body {
+ padding: 1rem 0;
+ }
+}
+
+#content {
+ line-height: 1.45;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ font-size: 1em;
+ margin: 0;
+}
+
+img, h1, h2 {
+ vertical-align: middle;
+}
+
+img {
+ border: 0;
+}
+
+a {
+ color: #1d8240;
+ text-decoration: none;
+}
+
+a:hover,
+#header a:hover {
+ font-weight: bold;
+ text-decoration: underline;
+}
+
+a.h:hover,
+a.i:hover,
+a.d:hover {
+ font-weight: normal;
+ text-decoration: none;
+}
+
+a:focus {
+ outline-width: 2px;
+ outline-style: dashed;
+ outline-color: #00b374;
+}
+
+a:target {
+ font-weight: bold;
+ background-color: #e6f6e6;
+}
+
+.url a {
+ word-break: break-all;
+}
+
+#blob a {
+ color: #777;
+ margin-right: 0.5em;
+}
+
+#blob a:hover {
+ color: #1d8240;
+ font-weight: bold;
+ text-decoration: none;
+}
+
+table thead td {
+ font-weight: bold;
+}
+
+table td {
+ padding: 0 0.4em;
+}
+
+#content table td {
+ vertical-align: top;
+ white-space: nowrap;
+}
+
+#branches tr:hover td,
+#tags tr:hover td,
+#index tr:hover td,
+#log tr:hover td,
+#files tr:hover td {
+ background-color: #f0fff0;
+}
+
+/* description */
+#index tr td:nth-child(2),
+#tags tr td:nth-child(3),
+#branches tr td:nth-child(3),
+#log tr td:nth-child(2) {
+ white-space: normal;
+ max-width: 60ch;
+ min-width: 25ch;
+ -webkit-hyphens: auto;
+ -ms-hyphens: auto;
+ hyphens: auto;
+}
+
+td.num {
+ text-align: right;
+}
+
+.desc {
+ color: #777;
+}
+
+hr {
+ border: 0;
+ border-top: 1px dashed #444;
+ height: 1px;
+}
+
+p {
+ margin: 0 0.5em;
+}
+
+#content,
+pre {
+ overflow-x: auto;
+ padding-bottom: 0.5em;
+}
+
+pre {
+ overflow-y: hidden;
+ line-height: 1.23;
+ -moz-tab-size: 2;
+ tab-size: 2;
+}
+
+pre a.h {
+ color: #00a;
+}
+
+.A,
+span.i,
+pre a.i {
+ color: #070;
+}
+
+.D,
+span.d,
+pre a.d {
+ color: #e00;
+}
+
+a.line,
+.prompt {
+ user-select: none;
+}
+
+footer,
+footer a {
+ color: #444;
+}
+
+footer a {
+ text-decoration: underline;
+}
+
+footer pre {
+ margin-left: 0.5em;
+}
+
+@media all and (max-width: 810px) {
+ footer {
+ display: none;
+ }
+}