Template:Ambox: Difference between revisions
Blanked the page Tag: Blanking |
No edit summary |
||
Line 1: | Line 1: | ||
<nowiki>*/ | |||
/* === 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 */ | |||
/*</nowiki> |
Revision as of 15:15, 17 April 2023
*/ /* === 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 */ /*