softwarelivrenoestado.com.br

commit ac09394dbcc9336bde0a6ec83a2204033d0c35ae

Author: Pedro Lucas Porcellis <pedrolucasporcellis@gmail.com>

Add font and a basic style

 footer.html | 6 ++++++
 header.html | 5 +++++
 style.css | 16 ++++++++++++++++


diff --git a/footer.html b/footer.html
new file mode 100644
index 0000000000000000000000000000000000000000..62f2dfe18aa7604988d8b1cd412d31df30fe72c3
--- /dev/null
+++ b/footer.html
@@ -0,0 +1,6 @@
+<hr />
+<p>
+  <a href="https://git.sr.ht/~porcellis/softwarelivrenoestado.com.br">
+    código fonte desse site
+  </a>
+</p>




diff --git a/header.html b/header.html
new file mode 100644
index 0000000000000000000000000000000000000000..3ea25445d7298583afa7a84e80187cbf7a8ad60d
--- /dev/null
+++ b/header.html
@@ -0,0 +1,5 @@
+<title></title>
+<link rel="stylesheet" href="/style.css"></link>
+<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css"/>
+
+




diff --git a/style.css b/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..1f3433897f5d85d1e16ed338a3c1a3078386e210
--- /dev/null
+++ b/style.css
@@ -0,0 +1,16 @@
+body {
+    font-family: "Fira Sans","Helvetica Neue",Helvetica,Calibri,Verdana,sans-serif;
+    margin: 40px auto;
+    padding: 1em;
+    max-width: 44em;
+    line-height: 1.6;
+    font-size: 14pt;
+    color: #444;
+}
+
+h1 { text-align: center; }
+
+a { color: #0d98ba; }
+a:hover { color: #0c7090; }
+
+tt, pre, code, kbd { font-family: "Fira Mono", Inconsolata, monospace; }