Tod Naturlich/format classes.css: Difference between revisions
Jump to navigation
Jump to search
m Blanked the page Tag: Blanking |
m Reverted edits by Icy.horse (talk) to last revision by TodNaturlich Tag: Rollback |
||
Line 1: | Line 1: | ||
/***** Classes to give some effects *****/ | |||
/* Image with a description to the right, the image must be the first element on the div, the description must be a single element, can be wrapped in a div.*/ | |||
.mw-body-content .image-description { | |||
display: flex; | |||
} | |||
.mw-body-content .image-description img { | |||
margin: 0 1em 0 0; | |||
} | |||
.mw-body-content .image-description dl { | |||
flex-grow: 1; | |||
} | |||
/* A replacement for the "code" tag, so that format can be used inside it (but you have to use < and the like instead of simple copy/paste. */ | |||
.mw-body-content .code p { | |||
font-family: "Courier New", Courier, monospace; | |||
font-size: 1rem; | |||
color: #001f3f; /* Navy */ | |||
background-color: #DDDDDD; /* silver */ | |||
border-radius: 1em; | |||
padding: 1em; | |||
} | |||
.mw-body-content .code p .user-input { | |||
color: #ee2222; /* Red */ | |||
font-weight: bold; | |||
} | |||
/* A block for insets, like "code", but without changing the type face. */ | |||
.mw-body-content .text-inset { | |||
padding: .5em; | |||
border: .2em solid black; | |||
border-radius: 1em; | |||
background-color: rgb(235,235,235); | |||
} | |||
/* <noinclude>[[Category:StyleSheets|format_classes.css]]</noinclude> */ |
Latest revision as of 14:08, 26 January 2021
/***** Classes to give some effects *****/
/* Image with a description to the right, the image must be the first element on the div, the description must be a single element, can be wrapped in a div.*/
.mw-body-content .image-description {
display: flex;
}
.mw-body-content .image-description img {
margin: 0 1em 0 0;
}
.mw-body-content .image-description dl {
flex-grow: 1;
}
/* A replacement for the "code" tag, so that format can be used inside it (but you have to use < and the like instead of simple copy/paste. */
.mw-body-content .code p {
font-family: "Courier New", Courier, monospace; font-size: 1rem; color: #001f3f; /* Navy */ background-color: #DDDDDD; /* silver */ border-radius: 1em; padding: 1em;
}
.mw-body-content .code p .user-input {
color: #ee2222; /* Red */ font-weight: bold;
}
/* A block for insets, like "code", but without changing the type face. */
.mw-body-content .text-inset {
padding: .5em; border: .2em solid black; border-radius: 1em; background-color: rgb(235,235,235);
}
/* */