-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
170c292
commit 1c1298d
Showing
18 changed files
with
679 additions
and
660 deletions.
There are no files selected for viewing
Binary file added
BIN
+53.9 KB
FrontendMentor32—project-tracking-intro-component/design/active-states.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+53.3 KB
FrontendMentor32—project-tracking-intro-component/design/desktop-design.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33.4 KB
FrontendMentor32—project-tracking-intro-component/design/desktop-preview.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.7 KB
FrontendMentor32—project-tracking-intro-component/design/mobile-design.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+26.1 KB
FrontendMentor32—project-tracking-intro-component/design/mobile-navigation.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions
41
FrontendMentor32—project-tracking-intro-component/design/style-guide.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Front-end Style Guide | ||
|
||
## Layout | ||
|
||
The designs were created to the following widths: | ||
|
||
- Mobile: 375px | ||
- Desktop: 1440px | ||
|
||
> 💡 These are just the design sizes. Ensure content is responsive and meets WCAG requirements by testing the full range of screen sizes from 320px to large screens. | ||
## Colors | ||
|
||
### Primary | ||
|
||
- Red: hsl(0, 100%, 68%) | ||
|
||
### Neutral | ||
|
||
- Very Dark Blue: hsl(230, 29%, 20%) | ||
- Dark Grayish Blue: hsl(230, 11%, 40%) | ||
- Grayish Blue: hsl(231, 7%, 65%) | ||
- Light Grayish Blue: hsl(207, 33%, 95%) | ||
|
||
## Typography | ||
|
||
### Body Copy | ||
|
||
- Font size: 18px | ||
|
||
### Headings, Call-to-actions, Navigation | ||
|
||
- Family: [Barlow Condensed](https://fonts.google.com/specimen/Barlow+Condensed) | ||
- Weights: 400, 700 | ||
|
||
### Body | ||
|
||
- Family: [Barlow](https://fonts.google.com/specimen/Barlow) | ||
- Weights: 400 | ||
|
||
> 💎 [Upgrade to Pro](https://www.frontendmentor.io/pro?ref=style-guide) for design file access to see all design details and get hands-on experience using a professional workflow with tools like Figma. |
Binary file added
BIN
+1.04 KB
FrontendMentor32—project-tracking-intro-component/images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
FrontendMentor32—project-tracking-intro-component/images/icon-close.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: 1 addition & 0 deletions
1
FrontendMentor32—project-tracking-intro-component/images/icon-hamburger.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: 1 addition & 0 deletions
1
FrontendMentor32—project-tracking-intro-component/images/illustration-devices.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: 1 addition & 0 deletions
1
FrontendMentor32—project-tracking-intro-component/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions
27
FrontendMentor32—project-tracking-intro-component/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="32x32" | ||
href="./images/favicon-32x32.png" | ||
/> | ||
<title>Frontend Mentor | Project tracking intro component</title> | ||
<link rel="stylesheet" href="./src/output.css" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Barlow&family=Barlow+Condensed:wght@400;700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
<body class="font-body"> | ||
Product Features Pricing Login New Monograph Dashboard Powerful insights | ||
into your team Project planning and time tracking for agile teams Schedule a | ||
demo to see a live preview | ||
<script src="./src/script.js"></script> | ||
</body> | ||
</html> |
15 changes: 15 additions & 0 deletions
15
FrontendMentor32—project-tracking-intro-component/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"scripts": { | ||
"start": "npx tailwindcss -i ./src/input.css -o ./src/output.css --watch" | ||
}, | ||
"devDependencies": { | ||
"prettier": "^3.2.5", | ||
"prettier-plugin-tailwindcss": "^0.5.14", | ||
"tailwindcss": "^3.4.3" | ||
}, | ||
"prettier": { | ||
"plugins": [ | ||
"prettier-plugin-tailwindcss" | ||
] | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
FrontendMentor32—project-tracking-intro-component/src/input.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; |
Oops, something went wrong.