LavishMade

lavishmade

celebrate your vibe

Classic Lavish

The default LavishMade theme with elegant gold accents and clean design

How to apply this layout:

✨ Make Your Profile Uniquely Yours

Join our community to unlock endless customization possibilities. This layout is just one of many ways to express your style.

Free to join • Customize your profile • Express your creativity

  1. 1. Sign up for a free account
  2. 2. Copy the CSS code from the right panel
  3. 3. Go to your profile settings
  4. 4. Paste the code into the "Custom CSS" field
  5. 5. Set your background image to:
    https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80 Click to copy

Custom CSS

:root {
  --primary-color: #B39B63;
  --secondary-color: #A08C5C;
  --text-color: #2d3748;
  --text-light: #4a5568;
  --background-color: #ffffff;
  --background-alt: #f8fafc;
  --border-color: rgba(179, 155, 99, 0.2);
  --border-radius: 12px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
body {
  background: var(--background-color);
  color: var(--text-color);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
}

/* Header & Navigation */
.profile-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.profile-header h1 {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.profile-nav {
  background: white;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
}

.profile-nav a {
  color: var(--text-color);
  font-weight: 500;
}

.profile-nav a:hover {
  color: var(--primary-color);
}

/* Content Areas */
.bg-white, .content-box {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Buttons */
.btn, .bg-[#B39B63] {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover, .bg-[#B39B63]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(179, 155, 99, 0.2);
}

/* Comments Section */
.comments-section {
  background: var(--background-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.comment {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.comment:last-child {
  border-bottom: none;
}

/* Blog Posts */
.blog-post {
  background: var(--background-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Profile Elements */
.profile-card {
  background: var(--background-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.profile-avatar {
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

/* Form Elements */
input, textarea, select {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  color: var(--text-color);
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(179, 155, 99, 0.1);
}

label {
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* Status Indicators */
.status-indicator {
  background: rgba(179, 155, 99, 0.1);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  color: var(--primary-color);
}

/* Tables */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
}

th, td {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

th {
  background: rgba(179, 155, 99, 0.1);
  font-weight: 600;
}

/* Code Blocks */
pre, code {
  background: var(--background-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1rem;
  color: var(--text-color);
  font-family: monospace;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1rem;
  margin: 1rem 0;
  background: var(--background-alt);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Images */
img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Text Colors */
.text-gray-500, .text-gray-600 {
  color: var(--text-light) !important;
}

.text-gray-900 {
  color: var(--text-color) !important;
}

Copied to clipboard! ✨

Comments for "Classic Lavish" (11)

View all comments

Please log in to leave a comment.

Strange

11 months ago 2 replies
reload page comment

Strange

11 months ago
test

Strange

11 months ago
testing this out

Strange

11 months ago
test

Strange

11 months ago
test relaod on profile layout

Strange

11 months ago
why doesn't this work?

Strange

11 months ago
testing this out

Strange

11 months ago
testing out the comments again

Strange

11 months ago
the testing of the comments in the profile view

Strange

11 months ago
test this out again

Strange

11 months ago
test

Join LavishMade to find your community and make friends.

NOTIFICATIONS

Loading...