Layout Preview

auri1

Author: aurirang83
Category: ******
Created: July 5, 2026
Downloads: 19
Log in to Apply

Live Preview

Comments (0)

No comments yet. Be the first!

Log in to leave a comment.

Layout CSS

<style>
/* --- CONFIGURACIÓN GENERAL DEL FONDO Y TEXTOS --- */
body {
    background-color: #1a002c; /* Violeta oscuro de fondo general */
    background-image: url('https://i.pinimg.com/1200x/2c/f5/4b/2cf54bc30cbb831447cd99d3d3427777.jpg'); /* Podés usar un patrón de animal print, estrellas o glitter */
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: 'Courier New', Courier, monospace, sans-serif; /* Tipografía retro */
    color: #fff0f5; /* Color de texto lavanda muy claro */
}

/* --- EL CONTENEDOR PRINCIPAL DE TU PERFIL --- */
.container, table, td {
    background-color: rgba(42, 9, 68, 0.85) !important; /* Violeta intermedio con transparencia */
    border: 3px double #ff66cc !important; /* Borde doble rosa Gyaru */
    border-radius: 12px;
}

/* --- ENLACES Y LINKS --- */
a:link, a:visited {
    color: #ff66cc !important; /* Rosa brillante para los links */
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0px 0px 5px #ff007f; /* Efecto neón rosa */
}

a:hover {
    color: #ffffff !important;
    text-decoration: underline overline; /* Efecto retro al pasar el mouse */
    cursor: crosshair; /* El cursor cambia a una cruz */
}

/* --- ENCABEZADOS Y TÍTULOS DE LAS SECCIONES --- */
h1, h2, h3, h4, .orange, .heading {
    color: #ffffff !important;
    background-color: #ff007f !important; /* Fondo rosa fuerte para los títulos */
    border: 2px dashed #ffb3ff !important; /* Borde de guiones rosa pastel */
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 5px;
}

/* --- CAJAS DE TEXTO (About Me, Who I'd Like to Meet, etc.) --- */
.blurbs, .friends, .comments {
    border: 2px solid #ff66cc !important;
    background: #3d0c5a !important;
    padding: 10px;
    margin-bottom: 15px;
}

/* --- DISEÑO DE LAS IMÁGENES --- */
img {
    border: 2px solid #ff007f !important; /* Bordes rosa fuerte para tus fotos */
    border-radius: 8px;
    filter: drop-shadow(0px 0px 5px rgba(255, 0, 127, 0.5));
}

img:hover {
    transform: scale(1.03); /* Hace un mini zoom sutil al pasar el mouse */
    transition: 0.3s;
}

/* --- DETALLE EXTRAS (Custom Scrollbar para navegadores basados en Chrome) --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a002c;
}
::-webkit-scrollbar-thumb {
    background: #ff007f;
    border-radius: 5px;
}
</style>