m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css
new file mode 100644
index 0000000..70fc10b
--- /dev/null
+++ b/src/style.css
@@ -0,0 +1,67 @@
+body {
+ margin: 40px auto;
+ max-width: 800px;
+ line-height: 1.6;
+ font-size: 18px;
+ padding: 0 10px;
+}
+
+a {
+ color: darkblue;
+ text-decoration: none;
+}
+
+a:hover {
+ color: #55f;
+}
+
+ul {
+ list-style-type: '—';
+}
+
+li {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ text-indent: 0.7em;
+}
+
+h1, h2, h3 {
+ line-height: 1.2
+}
+
+ul.links {
+ list-style-type: none;
+ display: flex;
+ align-items: stretch;
+ justify-content: space-evenly;
+}
+
+.links li {
+ margin-top: 0px;
+ margin-bottom: 0px;
+}
+
+/* note stuff */
+.note {
+ position: relative;
+ vertical-align: baseline;
+}
+
+.note-content {
+ display: none;
+ position: absolute;
+ border: 1px solid black;
+ word-wrap: break-word;
+ background-color: white;
+ font-size: 14px;
+ min-width: 30em;
+ left: 1em;
+ bottom: 0px;
+}
+
+.foot-down a {
+ position: relative;
+ z-index: 1;
+ padding: 10px;
+ margin: -10px;
+}