-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
174 lines (150 loc) · 3.17 KB
/
Copy pathstyle.css
File metadata and controls
174 lines (150 loc) · 3.17 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
* {
margin: 0;
padding: 0;
font-family: 'Poppins';
box-sizing: border-box;
}
#adicionar-refeicao, #tabelaRefeicoes {
display: none;
}
.header {
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
background-color: white;
width: 100vw;
height: 10vh;
}
.meta-diaria {
border-left: 70px solid black;
display: flex;
align-items: center;
justify-content: space-evenly;
background-color: rgb(214, 214, 214);
height: 10vh;
width:100vw;
box-shadow: 0px 10px 15px -15px black;;
}
#confirmar-meta {
padding:0.5%;
margin-right:1%;
}
.header h1 {
font-size: 38px;
padding-left: 1%;
}
body {
background-image: repeating-linear-gradient(
45deg,
#ACE1AF,
#ACE1AF 90px,
#87d38b 90px,
#87d38b 180px
);
overflow-x: hidden;
}
.food-card {
transition: transform 1s;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: 10%;
background-color: #f1f1f1;
margin-left: 6%;
margin-right: 6%;
margin-top: 3%;
margin-bottom: 3%;
display: flex;
width: 36vw;
height: 40vh;
align-items: center;
}
.food-card:hover {
transform: scale(1.1);
}
.container {
justify-content: center;
flex-wrap: wrap;
padding: 1%;
display: flex;
}
.image-food {
border-top-left-radius: 10%;
border-bottom-left-radius: 10%;
width: 55%;
height: 100%;
}
.information-food {
display: flex;
flex-direction: column;
padding: 5px;
justify-content: flex-end;
}
.information-food h1 {
font-size:35px;
margin-bottom: 5%;
text-decoration: underline;
align-self: flex-start;
}
.input-food {
margin-top: 10%;
width: 150px;
}
.button-visu button {
padding: 10px 40px;
font-size: 20px;
}
/* #adicionar-refeicao {
display:none;
} */
.container-tabela {
display: flex;
justify-content: flex-end;
}
#tabelaRefeicoes {
/* display: none; */
width: 50%;
border-collapse: collapse;
background-color: #fff;
border-radius: 8px;
}
th, td {
padding: 12px;
text-align: center;
border: 1px solid black;
}
th {
background-color: #5bc0de;
font-size: 16px;
}
td {
font-size: 14px;
}
#button-return {
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: #3b853f; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding-left: 15px; /* Some padding */
padding-right: 15px; /* Some padding */
padding-top: 1px;
padding-bottom: 1px;
border-radius: 30px; /* Rounded corners */
font-size: 30px; /* Increase font size */
}
#button-return:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
footer {
background-color: #2d7030;
color: white;
text-align: center;
padding: 20px 0;
bottom: 0;
width: 100%;
font-size: 16px;
}