-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (55 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
* {
box-sizing: border-box;
}
body {
background-image: url("./assets/images/supermarket.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
height: 100vh;
}
.main {
width: 500px;
height: 600px;
background-color: #d49202;
text-align: center;
border: 3px solid #000;
padding: 50px;
margin: 20px;
}
.marketListField {
height: 29px;
border-radius: 5px;
background-color: #faebd7;
}
.marketListContainer {
margin: 20px auto;
/* border: 3px solid red; */
width: 80%;
}
.list-item {
/* list-style: none; */
text-align: left;
margin-left: 15px;
padding: 0 20px;
font-size: 1.3rem;
}
.done {
text-decoration: line-through;
background-color: #faebd7;
}
.btn {
width: 100px;
height: 30px;
border-radius: 10px;
background-color: #faebd7;
cursor: pointer;
}
.btn:hover {
background-color: #f5f5dc;
}