aboutsummaryrefslogtreecommitdiff
path: root/minimal.css
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-04-03 00:37:03 +0200
committerMateja <mail@matejamaric.com>2021-04-03 00:37:03 +0200
commita945feb02f6d64df2219ea1044251a7fe2ea98fc (patch)
treefe0242495eb35317fd5358e403a047657dfa04b5 /minimal.css
downloadmisc-a945feb02f6d64df2219ea1044251a7fe2ea98fc.tar.gz
misc-a945feb02f6d64df2219ea1044251a7fe2ea98fc.zip
Initial commit.
Diffstat (limited to 'minimal.css')
-rw-r--r--minimal.css46
1 files changed, 46 insertions, 0 deletions
diff --git a/minimal.css b/minimal.css
new file mode 100644
index 0000000..b16353e
--- /dev/null
+++ b/minimal.css
@@ -0,0 +1,46 @@
+/*
+a:link {
+ color: #0077AA;
+}
+a:visited {
+ color: #941352;
+}
+*/
+.code, pre, code { font-family: Consolas, Monaco, monospace; }
+.sans-serif { font-family: "Noto Sans", sans-serif; }
+.serif { font-family: "Noto Serif", Georgia, Times, serif; }
+body {
+ margin: 40px auto;
+ max-width: 650px;
+
+ line-height: 1.6em;
+ font-size: 1.125em;
+ font-family: sans-serif;
+
+ color: #444;
+ background-color: #EEE;
+
+ padding: 0 10px;
+}
+h1,h2,h3 {
+ line-height: 1.2;
+}
+a {
+ color: #0077AA;
+}
+.veral {
+ vertical-align: bottom;
+}
+#contact {
+ margin-top: 40px;
+ border: 2px solid #444;
+ border-radius: 15px;
+ padding-left: 1em;
+ padding-right: 1em;
+}
+@media only screen and (max-width: 650px) {
+ body {
+ margin: 20px auto;
+ font-size: 1em;
+ }
+}