-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (59 loc) · 1.04 KB
/
style.css
File metadata and controls
70 lines (59 loc) · 1.04 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
#products-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.card {
display: flex;
justify-content: space-around;
align-items: center;
width: 400px;
margin: 1em;
padding: 1em;
}
.card-body{
flex: none !important;
display: flex;
flex-direction: column;
}
.card img {
width: 200px;
}
.dropdown-menu li{
cursor: pointer;
}
.details-card {
border: 1px solid rgba(148, 148, 148, 0.349);
border-radius: 1em;
padding: 4em;
}
.details-card img {
max-width: 250px;
}
.price::first-letter {
color: rgb(0, 107, 0);
font-size: 1.2em;
}
#cart {
color: rgb(49, 49, 49);
padding: 1em;
transform: scale(1.0);
transition: 0.3s;
}
#cart:hover{
cursor: pointer;
transform: scale(1.1);
transition: 0.3s;
}
#cart-products-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.full-height-centered {
height: 50vh;
display: flex;
justify-content: center;
align-items: center;
}