Template:Ambox

From SimRail Wiki
Revision as of 14:15, 17 April 2023 by Roman (talk | contribs)
Jump to navigation Jump to search

<ref>*/ /* === Template:Ambox designs === */

/* Ambox design */ .ambox {

   font-size: 95%;
   width: 80%; 
   margin: 0 auto;
   border: 1px #AAA solid;
   border-left: 10px solid #228b22;
   border-collapse: collapse;
   background-color: #EEE;

}

/* Ambox colours */ .ambox-blue {

   border-left: 10px solid #1e90ff;    /* Blue (notice) */

} .ambox-red {

   border-left: 10px solid #b22222;    /* Red (delete/serious) */

} .ambox-orange {

   border-left: 10px solid #f28500;    /* Orange (content) */

} .ambox-yellow {

   border-left: 10px solid #f4c430;    /* Yellow (style) */

} .ambox-purple {

   border-left: 10px solid #9932cc;    /* Purple (merge) */

} .ambox-gray {

   border-left: 10px solid #bba;        /* Gray (protection) */

} .ambox-green {

   border-left: 10px solid #228b22;    /* Green */

}

/* Ambox small text */ .ambox-smalltext {

   font-size: smaller;
   margin-top:0.5em;
   margin-left:0.8em;

}

/* Ambox image */ .ambox-image { /* The left image cell */

   width: 60px;
   padding: 2px 0px 2px 0.5em;        /* 0.5em left, 0px right */
   text-align: center;

}

@media print { .ambox { display: none; } } /* no ambox when printing */ /* </ref>