commit fc2fefaf288ce856e613b6918b04c7a052dcd00b
parent a31e4ccc37b53e695a57e608c67804e18e8ffe85
Author: sin <sin@2f30.org>
Date: Mon, 18 Sep 2017 20:13:53 +0100
Add style.css for stagit
Diffstat:
A | stagit/style.css | | | 64 | ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 64 insertions(+), 0 deletions(-)
diff --git a/stagit/style.css b/stagit/style.css
@@ -0,0 +1,64 @@
+*,
+*:after,
+*:before {
+ margin: 0;
+ padding: 0;
+}
+html {
+ background-color: #111;
+ color: #fff;
+ font-size: 12px;
+ font-weight: normal;
+ line-height: 16px;
+}
+body { margin: 16px; }
+h1,
+h2,
+h3,
+dl,
+ol,
+ul,
+p,
+table { margin-bottom: 16px; }
+a,
+a:link {
+ color: #8dc;
+ text-decoration: underline;
+}
+a:active,
+a:visited { color: #8fc; }
+a:focus { outline: 1px dotted; }
+a:hover { color: #8cd; }
+h1,
+h2,
+h3 {
+ font-weight: bold;
+ line-height: 32px;
+}
+h1 { font-size: 24px; }
+h2 { font-size: 20px; }
+h3 { font-size: 16px; }
+hr {
+ border: 0 none;
+ border-bottom: 1px dashed #fff;
+ margin-bottom: 15px;
+}
+td,
+th { padding: 0 4px; }
+thead { font-weight: bold; }
+pre { white-space: pre-wrap; }
+.url,
+#content { font-family: monospace; }
+.num { text-align: right; }
+#files tbody tr:hover,
+#index tbody tr:hover,
+#log tbody tr:hover { background-color: #1a1a1a; }
+#blob a { text-decoration: none; }
+#blob a:active,
+#blob a:visited { color: #8fc; }
+a.d,
+a.i,
+a.h { text-decoration: none; }
+a.d { color: #f20; }
+a.i { color: #0a4; }
+a.h { color: #a4c; }