-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (96 loc) · 1.73 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
padding: 0;
margin: 0;
background: gray;
}
* {
font-family: Helvetica;
}
.section {
display: flex;
flex-flow: column;
padding: 10px;
}
.section_header {
margin: 5px;
color: white;
}
.collection_row {
display: flex;
flex-flow: row;
}
.collection {
width: 150px;
padding: 10px;
margin: 5px;
display: flex;
flex-direction: column;
border-radius: 7px;
}
.collection_header {
margin: 3px;
}
.collection_content {
min-height: 130px;
margin: 3px;
padding: 3px;
display: flex;
flex-direction: column;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 7px;
}
.collection_content.mini {
min-height: 40px;
}
.item {
padding: 5px;
margin: 3px;
background-color: white;
border-style: solid;
border-color: darkgray;
border-width: 1px;
border-radius: 5px;
box-sizing: border-box;
}
.calendar {
background-color: lightgray;
}
.pantries {
background-color: gray;
}
.day {
background-color: darkgray;
}
.pantry {
background-color: beige;
}
.bin {
background-color: lightcoral;
}
.veg {
background-color: rgb(170, 214, 170);
}
.legumes {
background-color: rgb(248, 201, 139);
}
.cereal {
background-color: rgb(255, 239, 170);
}
.fruit {
background-color: rgb(252, 178, 194);
}
.seednuts {
background-color: rgb(235, 207, 152);
}
.dressing {
background-color: rgb(243, 243, 243);
}
.process {
background-color: rgb(222, 176, 236);
}
.misc {
background-color: rgb(224, 224, 224);
}
.selected {
border-color: black;
}