Cookbook App Demo

This commit is contained in:
2025-11-15 22:05:55 -05:00
parent 9dbae9a7b2
commit 73fa621400
3 changed files with 188 additions and 0 deletions

58
cookbook.css Normal file
View File

@@ -0,0 +1,58 @@
#background-container {
background: $background;
}
#header {
width: 100%;
background: $warning;
border: thick $warning-darken-1;
padding: 0 0;
}
#header-components {
width: auto;
height: auto;
}
#search-input {
width: 50;
}
#recipe-list {
layout: grid;
grid-size: 3;
grid-gutter: 1;
grid-rows: 15;
margin: 1 0;
}
RecipeCard {
height: 100%;
width: 100%;
border: thick $accent;
background: $primary-background;
margin: 0 1;
}
.invisible {
visibility: hidden;
}
.recipecard-label {
text-style: bold italic underline;
padding: 0 0 1 1;
}
.rule-color {
color: $accent;
}
.card {
padding: 0 2;
}
.recipe-highlighted {
background: $primary-background-lighten-2;
}