Layout Preview

test no.1

Author: TheRealAstonnn
Category: testerss
Created: June 24, 2026
Downloads: 3
.
Log in to Apply

Live Preview

Comments (0)

No comments yet. Be the first!

Log in to leave a comment.

Layout CSS

<div class="y2k-blog">
  <header class="y2k-header">
    <h1>Friend Rewind</h1>
    <p>Memories from another dimension</p>
  </header>

  <div class="post-grid">
    <article class="post-card">
      <img src="images/post1.jpg" alt="Post Image">
      <h2>Alien Denim Drop</h2>
      <p>Throwback to the cosmic Levi’s era.</p>
    </article>

    <article class="post-card">
      <img src="images/post2.jpg" alt="Post Image">
      <h2>Blue Nebula Nights</h2>
      <p>Captured in full Y2K glow.</p>
    </article>

    <article class="post-card">
      <img src="images/post3.jpg" alt="Post Image">
      <h2>Silver Signal</h2>
      <p>Broadcasting memories across galaxies.</p>
    </article>
  </div>
</div>

/* --- GLOBAL BACKGROUND --- */
body {
  background: linear-gradient(to bottom, #d9d9d9, #bfbfbf, #a6a6a6);
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: #e6f0ff;
  margin: 0;
  padding: 0;
}

/* --- HEADER --- */
.y2k-header {
  text-align: center;
  padding: 50px 20px;
  background: radial-gradient(circle at center, #4da6ff, #003366 70%);
  border-bottom: 3px solid #99ccff;
  box-shadow: 0 0 25px #66b3ff inset, 0 0 40px #99ccff;
}

.y2k-header h1 {
  font-size: 3.5rem;
  letter-spacing: 3px;
  color: #cce6ff;
  text-shadow: 
    0 0 6px #99ccff,
    0 0 12px #66b3ff,
    0 0 20px #ffffff;
  font-weight: 900;
}

.y2k-header p {
  font-size: 1.2rem;
  color: #e6f7ff;
  text-shadow: 0 0 8px #66ccff;
}

/* --- GRID LAYOUT --- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

/* --- POST CARDS --- */
.post-card {
  background: linear-gradient(145deg, #e6e6e6, #bfbfbf);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #99ccff;
  box-shadow:
    0 0 15px #99ccff,
    0 0 25px #66b3ff inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 25px #cce6ff,
    0 0 40px #66b3ff inset;
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(1.3) contrast(1.1);
}

/* --- TITLES --- */
.post-card h2 {
  margin: 16px;
  font-size: 1.4rem;
  color: #003366;
  text-shadow:
    0 0 4px #99ccff,
    0 0 10px #cce6ff;
  font-weight: bold;
}

/* --- TEXT --- */
.post-card p {
  margin: 0 16px 20px;
  color: #00334d;
  font-size: 1rem;
  text-shadow: 0 0 4px #b3e0ff;
}