Skip to content

Commit 144cc60

Browse files
authored
Starting on here...
1 parent 48cb8c3 commit 144cc60

627 files changed

Lines changed: 63929 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

css/style.css

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
/* Reset */
2+
* {
3+
margin: 0;
4+
padding: 0;
5+
box-sizing: border-box;
6+
font-family: Arial, sans-serif;
7+
}
8+
9+
body {
10+
background: #f9f9f9;
11+
color: #333;
12+
line-height: 1.6;
13+
display: flex;
14+
flex-direction: column;
15+
min-height: 100vh;
16+
}
17+
18+
header {
19+
text-align: center;
20+
padding: 2rem 1rem;
21+
background: #4f46e5;
22+
color: white;
23+
}
24+
25+
header h1 {
26+
font-size: 2.5rem;
27+
margin-bottom: 0.5rem;
28+
}
29+
30+
header p {
31+
opacity: 0.9;
32+
}
33+
34+
main.tool-grid {
35+
display: grid;
36+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
37+
gap: 1.5rem;
38+
padding: 2rem;
39+
flex-grow: 1;
40+
}
41+
42+
.tool-card {
43+
background: white;
44+
padding: 1.5rem;
45+
border-radius: 12px;
46+
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
47+
text-align: center;
48+
transition: transform 0.2s ease;
49+
}
50+
51+
.tool-card:hover {
52+
transform: translateY(-5px);
53+
}
54+
55+
.tool-card h2 {
56+
margin-bottom: 0.5rem;
57+
color: #4f46e5;
58+
}
59+
60+
.tool-card p {
61+
font-size: 0.9rem;
62+
margin-bottom: 1rem;
63+
}
64+
65+
.btn {
66+
display: inline-block;
67+
padding: 0.6rem 1.2rem;
68+
background: #4f46e5;
69+
color: white;
70+
text-decoration: none;
71+
border-radius: 8px;
72+
transition: background 0.2s;
73+
}
74+
75+
.btn:hover {
76+
background: #4338ca;
77+
}
78+
79+
footer {
80+
text-align: center;
81+
padding: 1rem;
82+
background: #eee;
83+
font-size: 0.8rem;
84+
}

index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
<title>All-in-One Tools</title>
7+
<link rel="stylesheet" href="css/style.css">
8+
</head>
9+
<body>
10+
<header>
11+
<h1>All-in-One Tools</h1>
12+
<p>A collection of useful tools, all in one place.</p>
13+
</header>
14+
15+
<main class="tool-grid">
16+
<!-- First tool will appear here soon -->
17+
<div class="tool-card">
18+
<h2>Calculator</h2>
19+
<p>Perform quick calculations.</p>
20+
<a href="tools/calculator.html" class="btn">Open</a>
21+
</div>
22+
</main>
23+
24+
<footer>
25+
<p>Made with ❤️ by LCS</p>
26+
</footer>
27+
</body>
28+
</html>

js/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// For future interactivity (theme switch, search, etc.)
2+
console.log("All-in-One Tools loaded.");

node_modules/accepts/HISTORY.md

Lines changed: 250 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/accepts/LICENSE

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)