-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
55 lines (51 loc) · 873 Bytes
/
Style.css
File metadata and controls
55 lines (51 loc) · 873 Bytes
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
ORDER{
background-color: #cccccc;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
padding: 10px 20px;
line-height: 1.6;
}
CONTACT{
display: flex;
flex-direction: row;
}
CUSTOMER{
display: flex;
flex-direction: column;
flex-basis: 50%;
}
SHIPPING_ADRESS{
flex-basis: 50%;
flex-grow: 1;
}
ITEMS{
display: flex;
flex-direction: column;
margin-top: 30px;
border: 1px solid white;
}
PRODUCT{
display: flex;
flex-direction: row;
border: 1px solid white;
}
#product{
text-transform: uppercase;
font-weight: bold;
}
NAME{
flex-basis: 40%;
border-right: 1px solid white;
}
PRICE{
flex-basis: 20%;
border-right: 1px solid white;
display: flex;
justify-content: center;
}
QTY{
flex-grow: 1;
display: flex;
justify-content: center;
}