-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (76 loc) · 1.43 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
89
90
91
92
93
94
95
body {
background-color: gray;
}
/* Header */
h1 {
color: white;
background-color: black;
text-align: center;
font-family: 'Arial Narrow Bold', sans-serif;
}
/* Secondary Headers */
h2 {
border: 2px solid #000;
background-color: #f2f2f2;
padding: 5px;
text-align: center;
border-radius: 5px;
width: 80%;
margin: 10px left;
color: black;
}
/* aligns the containers */
.container {
display: flex;
justify-content: start;
width: 100%;
}
/* Box Styling */
.canned-box {
width: 300px;
height: 300px;
border: 2px solid black;
padding: 10px;
background-color: lightcoral;
}
.dry-box {
width: 300px;
height: 300px;
border: 2px solid black;
padding: 10px;
background-color: lightblue;
}
.empty-box {
width: 300px;
height: 300px;
border: 2px solid black;
display: flex;
justify-content: center;
align-items: center;
}
.veggie-box {
width: 300px;
height: 300px;
border: 2px solid black;
padding: 10px;
background-color: green;
}
.snack-box {
width: 300px;
height: 300px;
border: 2px solid black;
padding: 10px;
background-color: darkorange;
}
.text-list{
font-size: larger;
}
.empty-box {
max-width: 280px;
max-height: 280px;
border: 2px solid black;
display: flex;
overflow: hidden;
padding-right: 50px;
margin-right: 10px;
}