summaryrefslogtreecommitdiff
path: root/output/style/generic.css
diff options
context:
space:
mode:
Diffstat (limited to 'output/style/generic.css')
-rw-r--r--output/style/generic.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/output/style/generic.css b/output/style/generic.css
new file mode 100644
index 0000000..bf4a85b
--- /dev/null
+++ b/output/style/generic.css
@@ -0,0 +1,50 @@
+/* Basic tags */
+a img {
+ border: 0px;
+}
+
+pre {
+ overflow: auto;
+}
+
+/* Anchors */
+a {
+ color: #3465a4;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+
+/* Basic classes */
+
+.none { /* to add paragraph spacing to various elements for ttys */
+ margin: 0px;
+ padding: 0px;
+}
+
+.invisible { /* stuff that should appear when this css isn't used */
+ margin: 0px;
+ border: 0px;
+ padding: 0px;
+ height: 0px;
+ visibility: hidden;
+}
+
+.left {
+ margin: 10px;
+ padding: 0px;
+ float: left;
+}
+
+.right {
+ margin: 10px;
+ padding: 0px;
+ float: right;
+}
+
+.center {
+ text-align: center;
+}