aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/notes/static/css/custom.css
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-05-23 19:32:36 -0700
committerFranck Cuny <franck@fcuny.net>2022-05-23 19:32:36 -0700
commit69fb19cd967ac301efba635fea9f31bf203cf0cb (patch)
tree8423069a26e5c8c845b0bbe58d2c2ea59a7ac6eb /users/fcuny/notes/static/css/custom.css
parentref(blog): remove unneeded files for the blog (diff)
parentdelete Makefile (diff)
downloadinfra-69fb19cd967ac301efba635fea9f31bf203cf0cb.tar.gz
Merge remote-tracking branch 'notes/main'
Diffstat (limited to 'users/fcuny/notes/static/css/custom.css')
-rw-r--r--users/fcuny/notes/static/css/custom.css194
1 files changed, 194 insertions, 0 deletions
diff --git a/users/fcuny/notes/static/css/custom.css b/users/fcuny/notes/static/css/custom.css
new file mode 100644
index 0000000..e02631a
--- /dev/null
+++ b/users/fcuny/notes/static/css/custom.css
@@ -0,0 +1,194 @@
+html {
+ margin-left: 2em;
+ margin-right: 0em;
+ margin-top: 1em;
+}
+
+body {
+ font-family: monospace;
+ font-size: 1.15em;
+ line-height: 1.5em;
+ color: #0e0e0b;
+ padding: 0 0.55em;
+ max-width: 60rem;
+}
+
+h1 {
+ color: #0e0e0b;
+ font-size: 2rem;
+ margin-top: 1em;
+ margin-bottom: 0.34em;
+}
+
+h2, h3 {
+ border-bottom: 1px solid #eee;
+ font-style: italic;
+}
+h2 {
+ margin-top: 1.25em;
+ margin-bottom: 0.41em;
+ font-size: 1.4rem;
+}
+h3 {
+ margin-top: 1.5em;
+ margin-bottom: 0.5em;
+ font-size: 1.2rem;
+}
+
+hr{
+ color:#000111;
+ background-color:#000111;
+ border:none;
+ height:1px
+}
+
+a {
+ color:#047bc2;
+ transition:color .1s ease-in-out;
+}
+
+a:link,
+a:hover,
+a:focus,
+a:active {
+ color:#047bc2;
+ text-decoration: underline;
+ text-underline-offset:.2rem
+}
+
+span.published, span.updated {
+ display: center;
+ font-style: oblique;
+}
+
+code {
+ font-family: monospace;
+ padding-left: 0.2em;
+ padding-right: 0.2em;
+ border-radius: 4px;
+}
+
+p code {
+ color: black;
+ background-color: #eee;
+ padding: 0 0.2rem;
+ font-size: 1.1em;
+}
+
+pre {
+ font-family: monospace;
+ font-size: 1.1em;
+ margin: 0;
+ word-wrap: normal;
+ padding: 0.8em;
+ overflow-x: auto;
+ border: 1px solid #eee;
+ border-radius: 3px;
+ background-color: #fafafa;
+}
+
+#meta {
+ display: row;
+}
+
+#meta_tags {
+ padding: 0 .5rem;
+ font-size: 0.8rem;
+ border: 2px solid #eee;
+ background-color: #eee;
+}
+
+#meta_tags a {
+ text-decoration: none;
+ border-bottom: none;
+ color: #005a9c;
+}
+
+#meta_date {
+ font-style: italic;
+ font-size: 0.8rem;
+}
+
+table {
+ width: 100%;
+ border-spacing: px;
+ outline: none;
+}
+
+td{
+ padding-left: 0.4em;
+ padding-top: 0.4em;
+ padding-bottom: 0.4em;
+}
+thead {
+ color: #000;
+ font-style: bold;
+ text-align: left;
+}
+table, th, td {
+ font-family: monospace;
+ border: 1px solid;
+ border-collapse: collapse;
+ color: #000;
+}
+
+blockquote {
+ font-size: 0.95rem;
+ font-style: italic;
+ margin: 0 0 1.5em;
+ padding-left: 1em;
+ border-left: .2em solid #bdbdbd
+}
+
+nav {
+ padding-right: 10px;
+ font-size: 1.4em;
+ display: flex;
+ font-family: monospace;
+ justify-content: space-between;
+ align-items: center;
+ padding-top: 0.5rem;
+}
+
+.nav-links {
+ list-style: none;
+ display: flex;
+}
+
+.navbar a {
+ display: inline-block;
+ text-decoration: none;
+}
+
+.navbar a:hover {
+ background-color: #b72d2d;
+ color: #fafafa;
+ text-decoration: none;
+}
+
+.nav-bold {
+ font-weight: 700;
+ color: #b72d2d;
+ text-decoration: none;
+}
+
+article {
+ text-align: justify;
+ padding-top: 2em;
+}
+
+#post-permalink {
+ list-style-type: none;
+ padding-left: 0;
+}
+
+#post-permalink>li {
+ line-height:1.2rem;
+ margin:.6rem 0
+}
+
+.post-date {
+ font-family: monospace;
+ font-weight: 400;
+ font-size: 1.1em;
+}