aboutsummaryrefslogtreecommitdiff
path: root/editor/public/editor.css
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-11-06 18:24:26 -0800
committerFuwn <[email protected]>2020-11-06 18:24:26 -0800
commit9cdce4254700691301608c6f1d3081950023cc4f (patch)
tree9d24529acc19b354f80cb2d610aa1e7686f4d530 /editor/public/editor.css
downloadblog-9cdce4254700691301608c6f1d3081950023cc4f.tar.xz
blog-9cdce4254700691301608c6f1d3081950023cc4f.zip
repo: initial :star:
Diffstat (limited to 'editor/public/editor.css')
-rw-r--r--editor/public/editor.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/editor/public/editor.css b/editor/public/editor.css
new file mode 100644
index 0000000..5271e5c
--- /dev/null
+++ b/editor/public/editor.css
@@ -0,0 +1,30 @@
+.main {
+ margin: 0;
+}
+
+#editor {
+ font-size: 16px;
+ border-left: 1px solid black;
+ position: fixed;
+ top: 0; bottom: 0;
+ right: 0;
+ width: 500px;
+ padding: 10px;
+}
+
+#editor input,
+#editor textarea,
+#editor button,
+#editor select {
+ width: 100%;
+ font-family: "Inconsolata", monospace;
+ font-size: 16px;
+}
+
+#editor textarea {
+ height: 418px;
+}
+
+#editor-save-button {
+ height: 40px;
+}