No edit summary |
No edit summary |
||
Line 28: | Line 28: | ||
background-color: #f8f9fa; | background-color: #f8f9fa; | ||
font-size: 94%; | font-size: 94%; | ||
} | |||
/* CSS Modal for Mediawiki | |||
* | |||
* @author: Keenan Payne | |||
* current version crafted together by [[User:Christharp]]. | |||
* Added scroll bar for inside div and changed some elements for better viewing inside a Mediawiki. | |||
*/ | |||
.modalDialog { | |||
position: fixed; | |||
font-family: Arial, Helvetica, sans-serif; | |||
top: 0; | |||
right: 0; | |||
bottom: 0; | |||
left: 0; | |||
background: rgba(0,0,0,0.8); | |||
z-index: 99999; | |||
opacity:0; | |||
transition: opacity 400ms ease-in; | |||
pointer-events: none; | |||
} | |||
.modalDialog:target { | |||
opacity:1; | |||
pointer-events: auto; | |||
} | |||
.modalDialog > div { | |||
position: relative; | |||
width: 50%; | |||
height:auto; | |||
margin: 10% auto; | |||
padding: 5px 20px 13px 20px; | |||
border-radius: 10px; | |||
background: #fff; | |||
background: linear-gradient(#fff, #999); | |||
} | |||
.modalDialog img { | |||
width:100%; | |||
height:auto; | |||
} | |||
.close { | |||
background: #606061; | |||
color: #fff; | |||
line-height: 25px; | |||
position: absolute; | |||
right: -12px; | |||
text-align: center; | |||
top: -10px; | |||
width: 24px; | |||
text-decoration: none; | |||
font-weight: bold; | |||
border-radius: 12px; | |||
box-shadow: 1px 1px 3px #000; | |||
} | |||
.close:hover { | |||
background: #00d9ff; | |||
} | } |
Revision as of 19:54, 5 January 2023
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ .infobox { background: #eee; border: 1px solid #aaa; float: right; margin: 0 0 1em 1em; padding: 1em; width: 400px; } .infobox-title { font-size: 2em; text-align: center; } .infobox-image { text-align: center; } .infobox th { text-align: right; vertical-align: top; width: 120px; } .infobox td { vertical-align: top; } div.thumbinner { border: 1px solid #c8ccd1; background-color: #f8f9fa; font-size: 94%; } /* CSS Modal for Mediawiki * * @author: Keenan Payne * current version crafted together by [[User:Christharp]]. * Added scroll bar for inside div and changed some elements for better viewing inside a Mediawiki. */ .modalDialog { position: fixed; font-family: Arial, Helvetica, sans-serif; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.8); z-index: 99999; opacity:0; transition: opacity 400ms ease-in; pointer-events: none; } .modalDialog:target { opacity:1; pointer-events: auto; } .modalDialog > div { position: relative; width: 50%; height:auto; margin: 10% auto; padding: 5px 20px 13px 20px; border-radius: 10px; background: #fff; background: linear-gradient(#fff, #999); } .modalDialog img { width:100%; height:auto; } .close { background: #606061; color: #fff; line-height: 25px; position: absolute; right: -12px; text-align: center; top: -10px; width: 24px; text-decoration: none; font-weight: bold; border-radius: 12px; box-shadow: 1px 1px 3px #000; } .close:hover { background: #00d9ff; }