Predefinição:Mapbanner/styles.css: mudanças entre as edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 1: | Linha 1: | ||
<syntaxhighlight lang="css" line="1"> | |||
<nowiki>#mainpage-searchinput .mw-ui-button[name="fulltext"] { display: none; } /* hide full text search box, which cannot currently be disabled */ | <nowiki>#mainpage-searchinput .mw-ui-button[name="fulltext"] { display: none; } /* hide full text search box, which cannot currently be disabled */ | ||
Linha 59: | Linha 60: | ||
} | } | ||
</nowiki> | </nowiki> | ||
</syntaxhighlight><syntaxhighlight lang="css"> | |||
<nowiki>#mainpage-searchinput .mw-ui-button[name="fulltext"] { display: none; } /* hide full text search box, which cannot currently be disabled */ | |||
#mainpage-map { | |||
background-color: #0B0A34; | |||
position: relative; | |||
overflow: hidden; | |||
height: auto; | |||
margin-bottom: .6em; | |||
max-width: 1125px; | |||
} | |||
#mainpage-maptext { | |||
position: absolute; | |||
top: 1em; | |||
left: 1em; | |||
width: 41%; /* 40% too small on some webkit browsers at 720p resolutions */ | |||
z-index: 2; | |||
text-align: center; | |||
padding: 0.5em 0.5em 0 0.5em; | |||
} | |||
#mainpage-tagline { | |||
margin: 0; | |||
} | |||
#mainpage-searchinput { | |||
padding:0; | |||
} | |||
#mainpage-searchinput label { | |||
font-size: 85%; | |||
font-style: italic; | |||
} | |||
#mainpage-searchinput input[type="text"] { | |||
margin-right: 0.5em; | |||
} | |||
#mainpage-maplinks { | |||
position:absolute; | |||
bottom: 0; | |||
left: 1em; | |||
color: white; | |||
padding:0 0.5em; | |||
} | |||
#mainpage-maplinks a { | |||
color: white; | |||
font-weight: bold; | |||
} | |||
#mainpage-maptext.mainpage-shadowbox { | |||
color: white; | |||
background: rgb(16,16,16); | |||
background: rgba(0,0,0,0.3); | |||
border-radius: 4px; | |||
} | |||
#mapbanner-container { width: 100%; } | |||
/* The following is mobile kludge code. It is temporary and to be removed */ | |||
#mobile-mapbanner { display: none; } | |||
@media (max-width: 720px) { | |||
#mainpage-map { display: none; } | |||
#mobile-mapbanner { display: block !important; } | |||
} | |||
</nowiki> | |||
</syntaxhighlight> |
Edição das 22h18min de 14 de julho de 2022
<nowiki>#mainpage-searchinput .mw-ui-button[name="fulltext"] { display: none; } /* hide full text search box, which cannot currently be disabled */ #mainpage-map { background-color: #0B0A34; position: relative; overflow: hidden; height: auto; margin-bottom: .6em; max-width: 1125px; } #mainpage-maptext { position: absolute; top: 1em; left: 1em; width: 41%; /* 40% too small on some webkit browsers at 720p resolutions */ z-index: 2; text-align: center; padding: 0.5em 0.5em 0 0.5em; } #mainpage-tagline { margin: 0; } #mainpage-searchinput { padding:0; } #mainpage-searchinput label { font-size: 85%; font-style: italic; } #mainpage-searchinput input[type="text"] { margin-right: 0.5em; } #mainpage-maplinks { position:absolute; bottom: 0; left: 1em; color: white; padding:0 0.5em; } #mainpage-maplinks a { color: white; font-weight: bold; } #mainpage-maptext.mainpage-shadowbox { color: white; background: rgb(16,16,16); background: rgba(0,0,0,0.3); border-radius: 4px; } #mapbanner-container { width: 100%; } /* The following is mobile kludge code. It is temporary and to be removed */ #mobile-mapbanner { display: none; } @media (max-width: 720px) { #mainpage-map { display: none; } #mobile-mapbanner { display: block !important; } } </nowiki>
<nowiki>#mainpage-searchinput .mw-ui-button[name="fulltext"] { display: none; } /* hide full text search box, which cannot currently be disabled */
- mainpage-map {
background-color: #0B0A34; position: relative; overflow: hidden; height: auto; margin-bottom: .6em; max-width: 1125px; }
- mainpage-maptext {
position: absolute; top: 1em; left: 1em; width: 41%; /* 40% too small on some webkit browsers at 720p resolutions */ z-index: 2; text-align: center; padding: 0.5em 0.5em 0 0.5em; }
- mainpage-tagline {
margin: 0; }
- mainpage-searchinput {
padding:0; }
- mainpage-searchinput label {
font-size: 85%; font-style: italic; }
- mainpage-searchinput input[type="text"] {
margin-right: 0.5em; }
- mainpage-maplinks {
position:absolute; bottom: 0; left: 1em; color: white; padding:0 0.5em; }
- mainpage-maplinks a {
color: white; font-weight: bold; }
- mainpage-maptext.mainpage-shadowbox {
color: white; background: rgb(16,16,16); background: rgba(0,0,0,0.3); border-radius: 4px; }
- mapbanner-container { width: 100%; }
/* The following is mobile kludge code. It is temporary and to be removed */
- mobile-mapbanner { display: none; }
@media (max-width: 720px) { #mainpage-map { display: none; } #mobile-mapbanner { display: block !important; } }
</nowiki>