summary refs log tree commit diff
path: root/style.css
diff options
context:
space:
mode:
authorpniedzwiedzinski <pniedzwiedzinski19@gmail.com>2021-01-21 16:00:23 +0000
committerpniedzwiedzinski <pniedzwiedzinski19@gmail.com>2021-01-21 16:00:23 +0000
commite969625a693f195af938fec8a33db7f67c290385 (patch)
tree0cd4e9c938c9dc394640d81af906a8fb229a076e /style.css
parent89bfafea48d9b7eea867f5d8e9cd4434e4728dc4 (diff)
downloadlow-puszcza-e969625a693f195af938fec8a33db7f67c290385.tar.gz
low-puszcza-e969625a693f195af938fec8a33db7f67c290385.zip
Deploying to gh-pages from @ 8923d7659357930c44a881fae58c5f2cab6b635c 🚀
Diffstat (limited to 'style.css')
-rw-r--r--style.css97
1 files changed, 97 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..b610c71
--- /dev/null
+++ b/style.css
@@ -0,0 +1,97 @@
+html {
+  overflow-y: scroll;
+}
+* {
+  box-sizing: border-box;
+}
+body {
+  background-color: #fff;
+  color: #000;
+  font-family: sans-serif;
+  padding: 1ex;
+  /* center page */
+  margin: 0 auto;
+  max-width: 80ex;
+}
+/* HTML5 semantic tags: some (older) browsers display this inline by default */
+article, figcaption, figure, header, main, nav {
+  display: block;
+}
+table, img {
+  border: 0;
+}
+img { max-width: 80ex; }
+hr {
+  border: 0;
+  border-bottom: 3px solid #aaa;
+  height: 3px;
+}
+h1 {
+  font-size: 140%;
+}
+h2 {
+  font-size: 120%;
+}
+h3 {
+  font-size: 120%;
+}
+h1,
+h1 a,
+h1 a:visited,
+h2,
+h2 a,
+h2 a:visited,
+h3,
+h3 a,
+h3 a:visited,
+h1 a:hover,
+h2 a:hover,
+h3 a:hover {
+  color: inherit;
+  text-decoration: none;
+}
+table tr td {
+  padding: 2px 10px 2px 0px;
+}
+pre {
+  margin: 0;
+}
+code {
+  background-color: #eee;
+  border: 3px solid #aaa;
+  display: block;
+  font-family: monospace;
+  overflow-x: auto;
+  padding: 5px;
+  word-wrap: normal;
+}
+#menu td {
+  padding: 1ex 0;
+}
+#main {
+  border-top: 3px solid #aaa;
+  padding: 2ex 0;
+}
+#menu a {
+  font-weight: bold;
+  vertical-align: middle;
+}
+.hidden {
+  display: none;
+}
+footer {
+  padding: 10px;
+  text-align: center;
+  background-color:#507b34;
+  color: #fff;
+}
+
+.icon img {
+  width: 30px;
+  height: 30px;
+  margin: 0 5px;
+}
+a.icon {
+  text-decoration: none;
+  color: none;
+}