Skip to content

Commit

Permalink
Fix responsive with colors
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanPerez9 committed Dec 3, 2023
1 parent 304027b commit c305ec4
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions assets/css/weekly.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ body {
margin: 0;
padding: 0;
color: #002765;
min-height: 100vh;
width: 100%;
background: linear-gradient(135deg, #153677, #4e085f);
}

Expand All @@ -27,15 +29,19 @@ body {

.burger-menu.show {
display: block;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 10px;
min-width: 40vh;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.meal-planner {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 540px;
margin: 5px auto 20px;
background: #fff;
border-radius: 10px;
padding: 40px 30px 70px;
}

h1 {
Expand Down Expand Up @@ -94,7 +100,7 @@ h1 {
/* Responsive Styles */
@media only screen and (max-width: 600px) {
.meal-input {
width: 100%;
width: 90%;
}

.burger-menu {
Expand Down

0 comments on commit c305ec4

Please sign in to comment.