summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorAlejandro <alex.mac.fon@gmail.com>2024-07-25 11:59:10 -0600
committerAlejandro <alex.mac.fon@gmail.com>2024-07-25 11:59:10 -0600
commit87e12301de81d0506c9d0059f318b8b6c19caa3e (patch)
treea98c001e272bac1d53b9ea5223c4cad9dde7c3e3 /static
parentc502036854bb5af4cea82e7e85d4d7fb8455f1a5 (diff)
added: css file from lugo copied
Diffstat (limited to 'static')
-rw-r--r--static/style.css45
1 files changed, 45 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..d3b2088
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,45 @@
+body {
+ font-family: sans-serif ;
+ background: #110000 ;
+ color: #ccc ;
+}
+
+main {
+ max-width: 800px ;
+ margin: auto ;
+}
+
+img {
+ max-width: 100% ;
+}
+
+header h1 {
+ text-align: center ;
+}
+
+footer {
+ text-align: center ;
+ clear: both ;
+}
+
+/* For TAGLIST.HTML */
+.taglist {
+ text-align: center ;
+ clear: both ;
+}
+
+/* For NEXTPREV.HTML */
+#nextprev {
+ /* The container for both the previous and next articles. */
+}
+#prevart {
+ float: left ;
+ text-align: left ;
+}
+#nextart {
+ float: right ;
+ text-align: right ;
+}
+#nextart,#prevart {
+ max-width: 33% ;
+}