Layout Preview

gloomy coquette

Author: lotusangel
Category: pink
Created: August 3, 2026
Downloads: 37
not the best but it'll do
Log in to Apply

Live Preview

Comments (0)

No comments yet. Be the first!

Log in to leave a comment.

Layout CSS

/* ==========================================
   GLOOMY COQUETTE BLOG THEME
   ========================================== */

/* Page Background */
body {
  background-color: #f7f0f2 !important; 
  color: #5a4b51; 
}

/* Article Wrapper */
.row.article {
  padding: 20px 0;
}

/* Entire Blog Entry Container */
.blog-entry {
  background-color: #ffffff;
  border: 1px solid #f2d6df;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(186, 144, 158, 0.15);
  margin-bottom: 25px;
  font-family: 'Georgia', serif;
}

/* Blog Post Title */
.blog-entry .title {
  color: #c98ca7; 
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2rem;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #f2d6df;
  padding-bottom: 10px;
}

/* Blog Post Body Content */
.blog-entry .content {
  font-size: 1rem;
  line-height: 1.7;
  color: #6e5d65;
}

/* Paragraphs */
.blog-entry .content p {
  margin-bottom: 1.2em;
}

/* Links */
.blog-entry .content a {
  color: #d896b1;
  text-decoration: underline;
  text-decoration-style: dotted;
  transition: all 0.3s ease;
}

.blog-entry .content a:hover {
  color: #a36881;
  text-decoration: underline;
}

/* Blockquotes */
.blog-entry .content blockquote {
  background-color: #fcf4f7;
  border-left: 3px solid #e8b4c8;
  margin: 1.5em 0;
  padding: 12px 18px;
  font-style: italic;
  color: #826c76;
  border-radius: 0 8px 8px 0;
}

/* Images in Content */
.blog-entry .content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #f2d6df;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  filter: contrast(95%) brightness(98%); /* Subtle gloomy soft focus */
}

/* Author Details Sidebar & Profile Pic */
.blog-entry .author-details {
  font-size: 0.85rem;
  color: #9c8490;
  border-right: 1px dotted #f2d6df;
  padding-right: 15px;
}

.blog-entry .profile-pic {
  border-radius: 50%;
  border: 2px solid #f2d6df;
  padding: 3px;
  background-color: #ffffff;
}

/* Date Published */
.blog-entry .publish-date {
  font-size: 0.8rem;
  color: #b59ca8;
  font-style: italic;
  margin-top: 5px;
}

/* Kudos Section */
.blog-entry .kudos-container {
  background-color: #fbf0f4;
  border: 1px solid #f2d6df;
  border-radius: 20px;
  padding: 8px 15px;
  display: inline-block;
  margin-top: 15px;
  color: #c98ca7;
  font-size: 0.9rem;
}

/* ==========================================
   COMMENTS SECTION - GLOOMY COQUETTE OVERRIDE
   ========================================== */

/* Main Comments Table Styling */
.comments-table {
  width: 100%;
  background-color: #ffffff !important;
  border: 1px solid #f2d6df !important;
  border-radius: 12px !important;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

/* Headers & Table Cells */
.comments-table th,
.comments-table td {
  background-color: #ffffff !important;
  color: #6e5d65 !important;
  border-bottom: 1px solid #fcf0f4 !important;
  border-top: none !important;
  padding: 12px 15px;
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
}

/* Header Row Overrides (Fixes orange header backgrounds) */
.comments-table th,
.comments-table tr:first-child td {
  background-color: #fbf0f4 !important;
  color: #c98ca7 !important;
  font-weight: normal;
  font-style: italic;
}

/* Links Inside Comments (Fixes orange text links) */
.comments-table a,
.comments-table a:visited {
  color: #d896b1 !important;
  text-decoration: underline !important;
  text-decoration-style: dotted !important;
}

.comments-table a:hover {
  color: #a36881 !important;
}

/* Comment Buttons & Submit Inputs (Fixes orange buttons) */
.comments-table input[type="submit"],
.comments-table button,
.comments-table .btn {
  background-color: #f2d6df !important;
  color: #5a4b51 !important;
  border: 1px solid #e8b4c8 !important;
  border-radius: 15px !important;
  padding: 6px 14px;
  font-family: 'Georgia', serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comments-table input[type="submit"]:hover,
.comments-table button:hover,
.comments-table .btn:hover {
  background-color: #e8b4c8 !important;
  color: #ffffff !important;
}

/* Comment Text Box / Form Controls */
.comments-table textarea,
.comments-table input[type="text"] {
  background-color: #fcf4f7 !important;
  border: 1px solid #f2d6df !important;
  border-radius: 8px !important;
  color: #5a4b51 !important;
  padding: 8px;
  font-family: 'Georgia', serif;
  outline: none;
}

.comments-table textarea:focus,
.comments-table input[type="text"]:focus {
  border-color: #d896b1 !important;
  box-shadow: 0 0 5px rgba(216, 150, 177, 0.3);
}