From 5ca14fcf3e949308eb0b2d636169e6601df1908d Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Wed, 28 Apr 2021 16:19:00 +0530 Subject: New Feature: Ability to register new items in the database --- src/components/Form/Form.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'src/components/Form/Form.css') diff --git a/src/components/Form/Form.css b/src/components/Form/Form.css index def42e5..ce94de4 100644 --- a/src/components/Form/Form.css +++ b/src/components/Form/Form.css @@ -1,3 +1,10 @@ +/* + * OpenBills - Self hosted browser app to generate and keep track of simple invoices + * Version - 0 + * Licensed under the MIT license - https://opensource.org/licenses/MIT + * + * Copyright (c) 2021 Vidhu Kant Sharma +*/ @import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap"); /* Experimental color scheme */ /* light theme */ @@ -82,6 +89,27 @@ input[type=number] { padding: 0.8rem 0; border-bottom: 1px dotted lightblue; } +.RegisterItemFormContainer { + /*display: none;*/ + position: fixed; + width: 95%; + height: 70vh; + left: 0; + right: 0; + margin: auto; + top: 15vh; + background-color: #383A59; } + +.RegisterItemForm .textInputs, +.RegisterItemForm .numericInputs { + width: 40%; } + +.RegisterItemForm { + width: 95%; + height: 60vh; + margin: 1rem auto; + justify-content: space-around; } + .MetaInfoForm { width: 60%; } -- cgit v1.2.3