Skip to content

Commit

Permalink
change background
Browse files Browse the repository at this point in the history
  • Loading branch information
AmiltonCabral committed Aug 14, 2024
1 parent ff69d8b commit d81597b
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 5 deletions.
9 changes: 9 additions & 0 deletions public/favo-bottom-left.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/favo-top-right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion public/next.svg

This file was deleted.

9 changes: 9 additions & 0 deletions public/one-bee.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/two-bees.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion public/vercel.svg

This file was deleted.

Binary file modified src/app/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

--font-color-secondary: #4a4545;

--background-primary: #ffffee;
--background-primary: #fffce0;
--background-secondary: #ffffff;
--background-tertiary: #e7e7e7;
}
Expand Down
14 changes: 13 additions & 1 deletion src/app/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 6rem;
min-height: 100vh;

background: url("/favo-top-right.svg") top right,
url("/favo-bottom-left.svg") bottom left,
url("/two-bees.svg") top 30% right 25%,
url("/one-bee.svg") bottom 40% left 30%,
url("/one-bee.svg") bottom 15% right 15%,
linear-gradient(
to bottom,
var(--background-primary) 50%,
var(--background-secondary) 50%
);

background-repeat: no-repeat;
}
12 changes: 11 additions & 1 deletion src/components/Title/title.module.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
.title {
text-align: center;
padding: 2rem 0;
}

.titleText {
font-family: var(--font-primary);
font-size: 48px;
font-weight: 400;
line-height: 2;
letter-spacing: 0.02em;
}

.subTitleText {
color: var(--font-color-secondary);
font-size: 24px;
font-weight: 200;
margin-top: 0.8rem;
}

@media (max-width: 768px) {
.titleText {
font-size: 32px;
}
.subTitleText {
font-size: 20px;
}
}

1 comment on commit d81597b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for bookhive-web ready!

✅ Preview
https://bookhive-fzjrjs6gn-amiltoncabrals-projects.vercel.app

Built with commit d81597b.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.