Skip to content

Commit 1c1298d

Browse files
committedMay 20, 2024·
added challenges
1 parent 170c292 commit 1c1298d

18 files changed

+679
-660
lines changed
 
Loading
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Front-end Style Guide
2+
3+
## Layout
4+
5+
The designs were created to the following widths:
6+
7+
- Mobile: 375px
8+
- Desktop: 1440px
9+
10+
> 💡 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.
11+
12+
## Colors
13+
14+
### Primary
15+
16+
- Red: hsl(0, 100%, 68%)
17+
18+
### Neutral
19+
20+
- Very Dark Blue: hsl(230, 29%, 20%)
21+
- Dark Grayish Blue: hsl(230, 11%, 40%)
22+
- Grayish Blue: hsl(231, 7%, 65%)
23+
- Light Grayish Blue: hsl(207, 33%, 95%)
24+
25+
## Typography
26+
27+
### Body Copy
28+
29+
- Font size: 18px
30+
31+
### Headings, Call-to-actions, Navigation
32+
33+
- Family: [Barlow Condensed](https://fonts.google.com/specimen/Barlow+Condensed)
34+
- Weights: 400, 700
35+
36+
### Body
37+
38+
- Family: [Barlow](https://fonts.google.com/specimen/Barlow)
39+
- Weights: 400
40+
41+
> 💎 [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.
Loading
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link
7+
rel="icon"
8+
type="image/png"
9+
sizes="32x32"
10+
href="./images/favicon-32x32.png"
11+
/>
12+
<title>Frontend Mentor | Project tracking intro component</title>
13+
<link rel="stylesheet" href="./src/output.css" />
14+
<link rel="preconnect" href="https://fonts.googleapis.com" />
15+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
16+
<link
17+
href="https://fonts.googleapis.com/css2?family=Barlow&family=Barlow+Condensed:wght@400;700&display=swap"
18+
rel="stylesheet"
19+
/>
20+
</head>
21+
<body class="font-body">
22+
Product Features Pricing Login New Monograph Dashboard Powerful insights
23+
into your team Project planning and time tracking for agile teams Schedule a
24+
demo to see a live preview
25+
<script src="./src/script.js"></script>
26+
</body>
27+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"scripts": {
3+
"start": "npx tailwindcss -i ./src/input.css -o ./src/output.css --watch"
4+
},
5+
"devDependencies": {
6+
"prettier": "^3.2.5",
7+
"prettier-plugin-tailwindcss": "^0.5.14",
8+
"tailwindcss": "^3.4.3"
9+
},
10+
"prettier": {
11+
"plugins": [
12+
"prettier-plugin-tailwindcss"
13+
]
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

0 commit comments

Comments
 (0)
Please sign in to comment.