From ca5d35830ec1fb0b7176b101c9b56c48eeb1ea8f Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Wed, 23 Mar 2022 12:09:03 +0430 Subject: wip --- spring-front/src/index.css | 37 +++++++++++++++++++++++++++++++++++++ spring-front/src/index.js | 1 + 2 files changed, 38 insertions(+) create mode 100644 spring-front/src/index.css (limited to 'spring-front/src') diff --git a/spring-front/src/index.css b/spring-front/src/index.css new file mode 100644 index 0000000..c788cb4 --- /dev/null +++ b/spring-front/src/index.css @@ -0,0 +1,37 @@ +body { + color: #005f87; + background: #000000; + font-family: "DejaVuSansMono NF", Helvetica, monospace; + height: 95vh; + width: 95vw; +} + +a { + color: #005f87; + text-decoration: none; +} + +hr { + color: #005f87; +} + +.left-footer { + float: left; +} + +.right-footer { + float: right; +} + +.editor { + background: #000000; + color: #ffffff; + width: 40%; + max-width: 40%; + height: 90%; + max-height: 90%; +} + +div.code { + white-space: pre; +} diff --git a/spring-front/src/index.js b/spring-front/src/index.js index 1b3e051..2b3e29d 100644 --- a/spring-front/src/index.js +++ b/spring-front/src/index.js @@ -3,6 +3,7 @@ import ReactDOM from "react-dom"; import hljs from "highlight.js/lib/core"; import markdown from "highlight.js/lib/languages/markdown"; import "highlight.js/styles/devibeans.css"; +import "./index.css"; hljs.registerLanguage("markdown", markdown); -- cgit v1.2.3