Template:Infobox/styles.css: Difference between revisions

From Ultimate Dragon Ball Online Wiki
Ollix (talk | contribs)
Created page with "→‎Infobox container: .infobox { border: 1px solid #ccc; width: 250px; background-color: #f9f9f9; font-family: Arial, sans-serif; margin: 0 auto; border-radius: 10px; } →‎Infobox title: .infobox-title { background-color: #2161c0; color: white; text-align: center; font-size: 1.25em; font-weight: bold; padding: 5px 0; border-top-left-radius: 10px; border-top-right-radius: 10px; } →‎Infobox image: .infobox-im..."
 
Ollix (talk | contribs)
No edit summary
Line 1: Line 1:
<include>
/* Infobox container */
/* Infobox container */
.infobox {
.infobox {
Line 53: Line 54:
     /* Add any specific styling for field values here */
     /* Add any specific styling for field values here */
}
}
</include>

Revision as of 17:44, 10 March 2025

<include> /* Infobox container */ .infobox {

   border: 1px solid #ccc;
   width: 250px;
   background-color: #f9f9f9;
   font-family: Arial, sans-serif;
   margin: 0 auto;
   border-radius: 10px;

}

/* Infobox title */ .infobox-title {

   background-color: #2161c0;
   color: white;
   text-align: center;
   font-size: 1.25em;
   font-weight: bold;
   padding: 5px 0;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;

}

/* Infobox image */ .infobox-image {

   text-align: center;
   padding: 5px;

}

/* Infobox caption */ .infobox-caption {

   text-align: center;
   font-size: 0.9em;
   color: #555;

}

/* General Information separator */ .infobox-general-info {

   background-color: #dcdcdc;
   color: black;
   text-align: center;
   font-size: 1.1em;
   font-weight: bold;
   padding: 5px;

}

/* Field titles */ .infobox-field-title {

   text-align: left;

}

/* Field values */ .infobox-field-value {

   /* Add any specific styling for field values here */

} </include>