-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (90 loc) · 1.6 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
body {
font-weight: lighter;
font-family: avenir;
color: white;
background-color: rgb(29,185,84);
margin: 0;
}
h1 {
text-align: center;
}
.upload-help {
font-weight: lighter;
text-align: center;
}
.upload {
background-color: white; /* Green */
border: none;
color: rgb(29,185,84);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
margin: 4px 2px;
border-top-style: dotted;
border-right-style: solid;
border-bottom-style: dotted;
border-left-style: solid;
cursor: pointer;
}
.upload-container {
min-height: 50px;
/*padding: 35px 18px;*/
position: relative;
/*border: 3px solid white; */
/*border-top-style: dotted;
border-right-style: solid;
border-bottom-style: dotted;
border-left-style: solid;*/
text-align: center;
}
.receipt {
display: block;
max-width: 100%;
margin: 0 auto;
max-height: 500px;
}
.receipt[hidden] {
display: none !important;
}
.receipt-container {
position: relative;
}
.food {
list-style: none;
padding: 0;
color: white;
background-color: rgba(24,24,24,0.25);
}
.food > li {
padding: 1rem .5rem;
border-bottom: 1px solid rgba(240,240,240,0.25);
}
.food > li:last-child {
border-bottom: none;
}
.food-name {
font-weight: bold;
}
.food-name, .food-expiration {
display: block;
}
.container {
max-width: 90vw;
margin-left: auto;
margin-right: auto;
}
.loading-container {
margin-top: -270px;
margin-bottom: 130px;
}
.loading-text {
margin-top: -15px;
}
.loading {
max-width: 50%;
}
.loading-shield {
background-color: rgba(0,0,0,0.5);
}