diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-28 16:19:00 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-28 16:19:00 +0530 |
commit | 5ca14fcf3e949308eb0b2d636169e6601df1908d (patch) | |
tree | 9edcbc4163f81d8b52861a2c9e991423764e3e43 /src/components/Form/Form.css | |
parent | 60f5d0cf22adc77b236f6c5a6e6aa2c7ff39ed77 (diff) |
New Feature: Ability to register new items in the database
Diffstat (limited to 'src/components/Form/Form.css')
-rw-r--r-- | src/components/Form/Form.css | 28 |
1 files changed, 28 insertions, 0 deletions
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%; } |