summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2026-05-28 15:53:08 +0800
committerSadeep Madurange <sadeep@asciimx.com>2026-05-28 15:53:08 +0800
commit9d7d3a5e1849eb339690b072eb707e6bfe44e446 (patch)
tree3b3d60722bf0b42319c43223c2084feab146aad7
parent95428c41f0ee3ac108cf1a4acfaa67157ad954dc (diff)
downloadglacier-9d7d3a5e1849eb339690b072eb707e6bfe44e446.tar.gz
Default style sheet.
-rw-r--r--html.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/html.css b/html.css
new file mode 100644
index 0000000..abbe8e6
--- /dev/null
+++ b/html.css
@@ -0,0 +1,41 @@
+html, body, header, article, footer,
+h1, p, ul, li {
+ display: block;
+}
+
+a, time {
+ display: inline;
+}
+
+body {
+ margin: 8px;
+ font-family: sans-serif;
+ font-size: 16px;
+ color: #000000;
+ line-height: 1.5;
+}
+
+h1 {
+ font-size: 2em;
+ font-weight: bold;
+ margin: 0.67em 0;
+}
+
+p {
+ margin: 1em 0;
+}
+
+ul {
+ margin: 1em 0;
+ padding-left: 40px;
+ list-style-type: disc;
+}
+
+li {
+ display: list-item;
+}
+
+a {
+ color: #0000ee;
+ text-decoration: underline;
+}