From 2069f30adf66109072fc61eab7a043ea359ad189 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 12 Oct 2017 23:36:45 -0400 Subject: [PATCH] Add some basic css --- css/common.css | 4 ++++ css/editor.css | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 css/common.css create mode 100644 css/editor.css diff --git a/css/common.css b/css/common.css new file mode 100644 index 0000000..9b0b6cc --- /dev/null +++ b/css/common.css @@ -0,0 +1,4 @@ +body { + background-color: #eee; + color: #444; +} diff --git a/css/editor.css b/css/editor.css new file mode 100644 index 0000000..789d5fd --- /dev/null +++ b/css/editor.css @@ -0,0 +1,8 @@ +#cardEditor { + position: fixed; + top: 0; + right: 0; + background-color: gray; + padding: 10px; + border-radius: 3px; +}