Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
epwinchell committed Sep 22, 2022
1 parent fa12df8 commit 57f3275
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
2 changes: 2 additions & 0 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
--white: hsla(var(--hue), 0%, 98%, 1);
--white-dark: hsla(var(--hue), 0%, 95%, 1);

--orange: hsla(30, 96%, 52%, 1.0);

--outline-color: var(--primary-transparent);

--global-padding-x: 16px;
Expand Down
3 changes: 1 addition & 2 deletions src/lib/card/Card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

<style>
.card {
background-color: #fff;
/*border: 1px solid var(--primary-light);*/
background-color: var(--white);
border-radius: var(--global-border-radius);
}
</style>
6 changes: 3 additions & 3 deletions src/lib/header/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
display: grid;
grid-template-columns: 1fr 1fr 1fr;
align-items: center;
background-color: var(--base);
padding: 12px 12px 0 12px;
background-color: var(--white);
padding: 12px 12px 6px 12px;
}
.brand {
Expand Down Expand Up @@ -61,7 +61,7 @@
content: '';
width: 95%;
height: 2px;
background-color: var(--accent);
background-color: var(--orange);
display: block;
}
Expand Down
3 changes: 2 additions & 1 deletion src/lib/logo/Logo.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap');
.logo {
color: var(--orange);
font-family: 'Nanum Pen Script', cursive;
font-size: 1.5rem;
font-size: 2.5rem;
text-transform: lowercase;
}
</style>
7 changes: 4 additions & 3 deletions src/lib/recipes/Recipe.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
.layout {
display: flex;
background: #fff;
background: var(--white);
}
.layout > div {
width: 50%;
Expand Down Expand Up @@ -159,7 +159,7 @@
.recipe_author,
.recipe_category,
.recipe_author a {
color: #fff;
color: var(--white);
}
.recipe_author,
.recipe_category {
Expand Down Expand Up @@ -206,7 +206,8 @@
border-radius: 100%;
color: #fff;
text-align: center;
box-shadow: 0 0 0 3px #fff;
box-shadow: 0 0 0 3px var(--white);
z-index: 2;
}
/* Vertical Line */
Expand Down

0 comments on commit 57f3275

Please sign in to comment.