blob: f7a2d2e17c02854a607892ab62f6da063042ec7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
/*
* 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 "../../styles/theme";
$inputBorders: 1px solid $altBorderColor;
/* hide arrows in numericInputs */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
.formContainer {
/*border: 1px solid pink;*/
/*padding: 2rem;*/
height: 50vh;
border-radius: 1rem;
padding: 1.5rem 0;
}
.addNewItemForm .textInputs,
.addNewItemForm .numericInputs
label {
font-size: 1.5rem;
}
.addNewItemForm {
display: flex;
flex-direction: row;
justify-content: space-between;
height: 100%;
}
.addNewItemForm .textInputs,
.addNewItemForm .numericInputs {
border: $inputBorders;
width: 30%;
justify-content: space-around;
}
.addNewItemForm .numericInputs input {
width: 5.5rem;
}
.addNewItemForm .menuButtons {
border: $inputBorders;
width: 15%;
justify-content: space-around;
}
.addNewItemForm .menuButtons * {
width: 100%;
}
.addNewItemForm div {
display: flex;
flex-direction: column;
/*border-radius: 1rem;*/
padding: 1.5rem;
overflow: scroll;
}
/* hide scrollbars */
.addNewItemForm div::-webkit-scrollbar {
display: none; /* Chrome/Safari/Opera */
}
.addNewItemForm div {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.addNewItemForm label {
display: flex;
justify-content: space-between;
padding: 0.8rem 0;
border-bottom: 1px dotted $labelUnderlineColor;
}
.RegisterItemFormContainer {
/*display: none;*/
position: fixed;
width: 95%;
height: 70vh;
left: 0;right: 0;
margin: auto;
top: 15vh;
background-color: $altBG;
}
.RegisterItemForm .textInputs,
.RegisterItemForm .numericInputs {
width: 40%;
}
.RegisterItemForm {
width: 95%;
height: 60vh;
margin: 1rem auto;
justify-content: space-around;
}
.MetaInfoForm {
width: 60%;
}
@media only screen and (max-device-width: 480px) {
.formContainer {
padding: 0.5rem;
height: auto;
}
.addNewItemForm {
flex-direction: column;
}
.addNewItemForm .textInputs,
.addNewItemForm .numericInputs,
.addNewItemForm .menuButtons {
width: 90%;
padding: 1rem;
margin: 1rem auto;
}
}
|