Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions alphabetizer-lab.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tool Name</title>
<title>Alphabetizer Lab - Text-Kitchen</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="text-reverser.html">Text Reversal</a>
<a href="text-reverse-lab.html">Text Reversal</a>
<a href="line-break-lab.html">Line Break Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
<a href="eraser-lab.html">Eraser Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
<a href="markov-mashup-lab.html">Markov Mashup Lab</a>
</nav>

<!-- Tool content here -->
Expand Down
4 changes: 2 additions & 2 deletions eraser-lab.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tool Name</title>
<title>Eraser Lab - Text-Kitchen</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="text-reverser.html">Text Reversal</a>
<a href="text-reverse-lab.html">Text Reversal</a>
<a href="line-break-lab.html">Line Break Lab</a>
<a href="eraser-lab.html">Eraser Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tool Name</title>
<title>P.D.'s Text-Kitchen</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="text-reverser.html">Text Reversal</a>
<a href="text-reverse-lab.html">Text Reversal</a>
<a href="line-break-lab.html">Line Break Lab</a>
<a href="eraser-lab.html">Eraser Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
Expand All @@ -21,7 +21,7 @@ <h1>Welcome to P.D.'s Text-Kitchen!</h1>
<p class="subtitle">A suite of text mashup tools for creative writers</p>

<div class="tool-list">
<a href="text-reverser.html" class="tool-card">
<a href="text-reverse-lab.html" class="tool-card">
<h2>Text Reversal</h2>
<p>Upload a .txt file and experiment with reversing words and sentences.</p>
</a>
Expand Down
5 changes: 3 additions & 2 deletions line-break-lab.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tool Name</title>
<title>Line Break Lab - Text-Kitchen</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="text-reverser.html">Text Reversal</a>
<a href="text-reverse-lab.html">Text Reversal</a>
<a href="line-break-lab.html">Line Break Lab</a>
<a href="eraser-lab.html">Eraser Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
<a href="markov-mashup-lab.html">Markov Mashup Lab</a>
</nav>

<!-- Tool content here -->
Expand Down
4 changes: 2 additions & 2 deletions markov-mashup-lab.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="text-reverser.html">Text Reversal</a>
<a href="text-reverse-lab.html">Text Reversal</a>
<a href="line-break-lab.html">Line Break Lab</a>
<a href="eraser-lab.html">Eraser Lab</a>
<a href="markov-mashup-lab.html">Markov Mashup Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
<a href="markov-mashup-lab.html">Markov Mashup Lab</a>
</nav>

<!-- Tool content here -->
Expand Down
38 changes: 38 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,44 @@ h3 {
font-size: 1.1em;
}

/* Tool List - Homepage Grid */
.tool-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 40px;
}

.tool-list .tool-card {
background: #ffffff;
border: 2px solid #4a4a4a;
padding: 25px;
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
display: block;
}

.tool-list .tool-card:hover {
border-color: #c41e3a;
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

.tool-list .tool-card h2 {
color: #1a1a1a;
font-size: 1.5em;
margin-bottom: 12px;
border-bottom: 2px solid #e8e8e8;
padding-bottom: 8px;
}

.tool-list .tool-card p {
color: #4a4a4a;
line-height: 1.6;
font-size: 0.95em;
}

/* Header Section */
.header {
background: #1a1a1a;
Expand Down
4 changes: 2 additions & 2 deletions text-reverse-lab.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tool Name</title>
<title>Text Reversal Lab - Text-Kitchen</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="text-reverser.html">Text Reversal</a>
<a href="text-reverse-lab.html">Text Reversal</a>
<a href="line-break-lab.html">Line Break Lab</a>
<a href="eraser-lab.html">Eraser Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
Expand Down