-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroceryStyle.css
102 lines (88 loc) · 1.43 KB
/
groceryStyle.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body {
background-color: cadetblue;
}
.card-img-top {
width: 10vw;
height: 10vw;
object-fit: cover;
}
#inputs {
height: 100%;
}
#enterButton {
position: relative;
top: 50%;
right: 0;
cursor: pointer;
border-radius: 50%;
height: 30px;
width: 30px;
border-radius: 50%;
border: 1px solid blue;
outline: none;
background-color: lightseagreen;
color: darkblue;
}
#userInput {
width: 85%;
margin-right: 0;
margin-bottom: 5%;
}
.backToLists {
font-weight: 10em;
font-size: 1.2rem;
color: white;
}
a:hover {
text-decoration: none;
color: yellow;
}
.list-group {
max-height: 400px;
margin-bottom: 10px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
margin-left: 4%;
width: 85%;
}
.done {
text-decoration: line-through;
}
.listItem {
color: blue;
border: 1px solid lightblue;
border-color: teal;
margin-bottom: 2%;
border-radius: 5px;
transition: all 1s ease-out;
width: 100%;
}
.listItem:active {
background-color: cadetblue;
width: 0;
opacity: 1;
}
.doneList {
padding-top: 10px;
margin-top: 30px;
max-height: 400px;
margin-bottom: 10px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
margin-left: 4%;
width: 85%;
}
.completedList {
border-top: 3px solid cadetblue;
}
#deleteButton {
background: none;
border: none;
color: cadetblue;
font-weight: bold;
float: left;
margin-left: 4%;
padding: 0;
outline: none;
cursor: pointer;
}