Skip to content

Commit 5619c60

Browse files
author
TechStack Global
committed
🔧 Refined structure: Favicon added, Sticky header disabled, Post cleanup
1 parent fb40a28 commit 5619c60

File tree

2 files changed

+54
-6
lines changed

2 files changed

+54
-6
lines changed

index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@
88
<meta name="description"
99
content="The elite B2B authority platform for business automation, high-ticket affiliate strategies, and enterprise scaling in 2026.">
1010
<link rel="stylesheet" href="style.css">
11+
<link rel="icon" type="image/png" href="favicon.png">
1112
</head>
1213

1314
<body>
1415
<header>
1516
<nav class="container">
1617
<div class="logo">
17-
<a href="index.html" style="text-decoration: none; color: inherit;">
18-
TechStack<span>Global</span>
19-
</a>
18+
<!-- Logo only on tab bar -->
2019
</div>
2120
<ul class="nav-links">
2221
<li><a href="index.html">Home</a></li>

style.css

Lines changed: 52 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ body {
5656
header {
5757
background: rgba(255, 255, 255, 0.85);
5858
backdrop-filter: blur(12px);
59-
position: fixed;
60-
top: 0;
59+
position: relative;
6160
width: 100%;
6261
z-index: 1000;
6362
border-bottom: 1px solid var(--border-color);
@@ -99,7 +98,7 @@ nav {
9998

10099
/* Hero Section */
101100
.hero {
102-
padding: clamp(4rem, 10vh, 8rem) 0 clamp(2.5rem, 6vh, 5rem);
101+
padding: clamp(2rem, 6vh, 4rem) 0 clamp(2.5rem, 6vh, 5rem);
103102
background: #0f172a;
104103
background-image:
105104
radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0, transparent 50%),
@@ -248,6 +247,56 @@ nav {
248247
margin-top: auto;
249248
}
250249

250+
/* Post Content Styling */
251+
.post-header {
252+
padding: 6rem 0 4rem;
253+
background: #0f172a;
254+
color: white;
255+
text-align: center;
256+
}
257+
258+
.post-header h1 {
259+
font-size: 3.5rem;
260+
font-weight: 800;
261+
letter-spacing: -0.04em;
262+
max-width: 900px;
263+
margin: 0 auto;
264+
}
265+
266+
.post-body {
267+
max-width: 800px;
268+
margin: 4rem auto 8rem;
269+
background: white;
270+
padding: 0;
271+
position: relative;
272+
z-index: 10;
273+
}
274+
275+
.post-body h1,
276+
.post-body h2,
277+
.post-body h3 {
278+
color: #0f172a;
279+
margin-top: 2.5rem;
280+
margin-bottom: 1rem;
281+
}
282+
283+
.post-body p {
284+
font-size: 1.1rem;
285+
color: #334155;
286+
margin-bottom: 1.5rem;
287+
line-height: 1.7;
288+
}
289+
290+
.post-body ul {
291+
margin-bottom: 2rem;
292+
padding-left: 1.5rem;
293+
}
294+
295+
.post-body li {
296+
margin-bottom: 0.5rem;
297+
color: #334155;
298+
}
299+
251300
/* Newsletter */
252301
.newsletter {
253302
padding: 6rem 0;

0 commit comments

Comments
 (0)