-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (72 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (72 loc) · 1.44 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
89
90
91
92
/* Bootstrap Icon */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");
/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
font-family: "Poppins", sans-serif;
align-items: center;
text-align: center;
justify-content: center;
}
/* .shopList__input {
margin-left: 10%;
margin-right: 10%;
} */
.container {
padding-left: 10%;
padding-right: 10%;
}
.form-control:focus {
border-color: #313741;
box-shadow: 0 0 0 0.05rem rgba(33, 37, 41, 0.5);
}
.btn-dark:focus,
.shopList__list:hover {
border-color: #313741;
box-shadow: 0 0 0 0.05rem rgba(33, 37, 41, 0.5);
}
.shopList__container {
display: flex;
}
.shopList__list {
min-width: 30%;
padding: 10px;
border-radius: 0.25rem;
border: 1px solid #ced4da;
}
.shopList__list:hover {
box-shadow: 0 0 0 0.05rem rgba(33, 37, 41, 0.5);
}
.shopList {
display: flex;
justify-content: space-between;
margin: 20px;
padding: 10px 20px;
border-bottom: 1px solid #ced4da;
border-radius: 0.25rem;
}
.shopList:hover {
background: #212529;
color: #fff;
}
.shopList__item {
padding: 0.5rem;
}
.shopList__item::marker {
padding: 0;
}
.trash__btn {
background: none;
color: #000;
border: none;
cursor: pointer;
padding: 6px 10px;
}
.trash__btn:hover {
background: #212529;
border-radius: 50px;
color: #fff;
}
.bi-trash {
pointer-events: none;
}