From f86780d32da9f231695e91859c6cdd2545fdb86e Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Sun, 10 Sep 2017 23:25:32 +0100 Subject: [PATCH] . --- .config/index_page | 1 + .config/root | 1 + .config/uuid | 1 + Posts/Init | 7 +++ static/css/style.css | 133 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 143 insertions(+) create mode 100644 .config/index_page create mode 100644 .config/root create mode 100644 .config/uuid create mode 100644 Posts/Init create mode 100644 static/css/style.css diff --git a/.config/index_page b/.config/index_page new file mode 100644 index 0000000..7e0a7fb --- /dev/null +++ b/.config/index_page @@ -0,0 +1 @@ +Posts diff --git a/.config/root b/.config/root new file mode 100644 index 0000000..155e510 --- /dev/null +++ b/.config/root @@ -0,0 +1 @@ +http://198.167.222.215:8080/ diff --git a/.config/uuid b/.config/uuid new file mode 100644 index 0000000..92bd4a0 --- /dev/null +++ b/.config/uuid @@ -0,0 +1 @@ +8167ecfe-9676-11e7-8dc1-68f728e7bbbc diff --git a/Posts/Init b/Posts/Init new file mode 100644 index 0000000..cac322e --- /dev/null +++ b/Posts/Init @@ -0,0 +1,7 @@ +--- +title: What is this? +author: someone +abstract: some abstract +--- + +I'm not sure anymore \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..d276e04 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,133 @@ +html { + background-color: #fafafa; + font-family: medium-content-serif-font,Georgia,Cambria,"Times New Roman",Times,serif; + font-size: 21px; +} + +html a { + text-decoration: none; + color: black +} + +html a:visited { + color: black +} + +.navbar { + box-sizing: border-box; + box-shadow: 0 2px 2px -2px rgba(0,0,0,.15); + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; + background-color: white; +} + +.container { + margin: 0 auto; + max-width: 800px; +} + +blockquote { + font-style: italic; + padding: 0px 20px; + margin: 0 0 20px; + border-left: 5px solid #eee; +} + +main { + margin-top: 100px; +} + +.flex-container { + display: flex; + width: 100%; + justify-content: center; +} + +article { + margin-top: 30px; +} + +footer { + margin-top: 20px; +} + +pre { + padding: 0px; +} + +body h2 { + margin-bottom: 3px; + font-weight: 700; + font-size: 40px; + line-height: 1.04; + letter-spacing: -.028em; + font-family: medium-content-sans-serif-font,"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Arial,sans-serif; +} + +.post-title { +} +.author { + font-size: 13px; +} +.date { + font-size: 13px; +} +time { + font-size: 13px; +} +footer { + font-size: 13px; +} +.tags { + font-size: 13px; +} +.post, +.listing { + width: 90%; + max-width: 800px; +} +a.list-group-item { + border: 0; +} +.extract { + margin-top: 10px; +} +.tag { + font-size: 13px; + margin-right: 4px; +} + +.navbar-nav { + clear:both; + margin-left: 0px; + padding-left: 0px; + font-family: medium-content-sans-serif-font,"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Arial,sans-serif; + font-size: 15px; + padding: 0 0 0 0; +} + +.navbar-default li a, .navbar-default li a:visited { + color: #777; +} +.navbar-default li a:hover { + color: black; +} +.navbar-default li { + list-style-type: none; + font-family: medium-content-sans-serif-font,"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Arial,sans-serif; + font-size: 21px; + color: #777; +} + +.navbar-header { + background-color: rgba(255,255,128,1); +} +.navbar-brand { + font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; + font-weight: 700; + font-size: 40px; + background-color: rgba(255,255,128,1); +}