-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate.css
64 lines (54 loc) · 779 Bytes
/
create.css
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
* {
margin: 0;
padding: 0;
}
.invoiseHeader ::after {
width: 90%;
}
.invoiceInput {
display: flex;
flex-wrap: wrap;
margin: 25px;
border: 2px solid #e4e6e9;
padding: 20px;
}
.createInvoice {
margin: 20px;
border: 2px solid #e4e6e9;
}
.input {
width: 99%;
height: 50px;
border: 2px solid #e4e6e9;
border-radius: 5px;
}
.inputNumber,
.inputInvoiceDate,
.inputSupplyDate {
width: 50%;
}
.inputComment {
width: 100%;
}
.comment {
width: 100%;
}
.button {
float: right;
}
.caption {
margin: 10px 0;
}
.button{
margin:30px 0;
}
@media screen and (max-width: 800px) {
.input {
width: 98%;
}
}
@media screen and (max-width: 600px) {
.input {
width: 97%;
}
}