summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-07-25 19:17:40 +0200
committerAki <please@ignore.pl>2021-07-25 19:17:40 +0200
commitad76e9b885c9b9692074cf5b8b880cb79f8a48e0 (patch)
tree603ebe1a1dbcd9251c84c1c954b7b4dc5b986cc3 /style.css
downloadignore.pl-ad76e9b885c9b9692074cf5b8b880cb79f8a48e0.zip
ignore.pl-ad76e9b885c9b9692074cf5b8b880cb79f8a48e0.tar.gz
ignore.pl-ad76e9b885c9b9692074cf5b8b880cb79f8a48e0.tar.bz2
Initialized website as git repository
Diffstat (limited to 'style.css')
-rw-r--r--style.css68
1 files changed, 68 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..53bd3a0
--- /dev/null
+++ b/style.css
@@ -0,0 +1,68 @@
+body {
+ max-width: 43em;
+ margin: 1em auto;
+ padding: 0 1em 22vh 1em;
+}
+
+p, dd, pre {
+ line-height: 129%;
+ text-align: justify;
+ margin-bottom: 1em;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #3482a5;
+ margin-bottom: 0.2em;
+}
+
+.subtitle {
+ color: #999;
+ margin-top: 0.2em;
+ font-size: 90%;
+ text-align: center;
+}
+
+pre {
+ background-color: #f0f0f0;
+ padding: 1em;
+ overflow-x: auto;
+}
+
+code {
+ font-weight: bold;
+}
+
+img {
+ max-width: 100%;
+}
+
+article > img {
+ display: block;
+ margin: 1em auto;
+}
+
+article > header > *, article > h1 {
+ text-align: center;
+}
+
+a:link {
+ color: #0e42ef;
+}
+
+a:link:hover {
+ background: #0e42ef36;
+}
+
+a:visited {
+ color: #6f0eef;
+}
+
+a:visited:hover {
+ background: #6f0eef36;
+}
+
+a:active,
+a:active:hover {
+ color: #e0083b;
+ background: #e0083b36;
+}