-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (71 loc) · 1.05 KB
/
style.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
font-family: "Open Sans", sans-serif;
}
.basketContainer {
background-color: lightgray;
height: 50px;
padding: 5px;
position: sticky;
top: 0;
}
header {
text-transform: uppercase;
}
.product-image {
height: 300px;
}
.product-image-tag {
height: 100%;
}
.variants-container {
display: flex;
}
.variant {
width: 70px;
border-radius: 5px;
padding-top: 10px;
text-align: center;
}
.variant:hover {
box-shadow: 2px 2px lightgray;
}
.variants-image {
max-height: 50px;
max-width: 50px;
border: solid black 1px;
}
figcaption {
text-align: center;
}
.variantSelected {
background-color: orange;
}
button {
width: 10rem;
height: 2rem;
border: none;
border-radius: 5px;
margin: 10px 0;
color: white;
}
.addBasket {
background-color: green;
}
.disabledButton {
background-color: lightgray;
}
.submitButton {
background-color: darkblue;
}
.removeBasket {
background-color: gray;
}
.reviewForm {
display: flex;
flex-direction: column;
margin: 30px 0;
width: 500px;
}
footer {
color: gray;
}