-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (74 loc) · 1.14 KB
/
style.css
File metadata and controls
88 lines (74 loc) · 1.14 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.menu {
width:100%;
background: dimgray;
text-align: flex-start;
position: fixed;
top:0;
}
.menu ul {
display: inline-flex;
list-style: none;
}
.menu ul li {
width: 120px;
margin: 0px;
padding: 20px;
}
.menu ul li a {
text-decoration: none;
color: white;
}
.menu ul li:hover {
background: green;
}
.menu .fa {
margin-right: 5px;
}
.article {
padding: 10px;
margin: 100px;
border: 2px solid lightgrev;
}
.checkoutbox {
width:auto;
height:auto;
border: 2px solid lightgray;
display: flex;
flex-direction: row;
justify-content: space-around;
}
.col {
width: auto;
height: auto;
border: 2px solid lightgray;
display: flex;
flex-direction: row;
justify-content: space-around;
}
.col div {
display:column;
}
.shippingAddress {
width: auto;
height: auto;
border: 2px solid lightgray;
justify-content: center;
}
.next {
width: auto;
height: auto;
border: 2px solid lightgray;
display: flex;
justify-content: center;
background-color: lime;
}
.cart {
border: 2px solid lightgray;
flex-direction: column;
width:200px;
}