From 18774e2e797f64cf951b3ba1ea8051ea6ad525f4 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Sat, 1 Apr 2023 17:14:09 -0700 Subject: First commit --- frontend/style.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 frontend/style.css (limited to 'frontend/style.css') diff --git a/frontend/style.css b/frontend/style.css new file mode 100644 index 0000000..117e5f6 --- /dev/null +++ b/frontend/style.css @@ -0,0 +1,32 @@ +body { + margin: 0; +} + +input { + width: 100%; +} + +.docset-parent { + width: 100%; +} + +#docset-page { + border: solid; + flex-grow: 4; + max-height: 100vh; +} + +#header { + display: none; + text-align: center; +} + +#main-body { + display: flex; + height: 100vh; +} + +#searchbar { + border: solid; + display: inline-block; +} -- cgit