Difference between revisions of "MediaWiki:Common.css"
Line 117: | Line 117: | ||
display: none; | display: none; | ||
} | } | ||
+ | |||
+ | /* BEGIN Main Page carousel code */ | ||
+ | |||
+ | .jcarousel { | ||
+ | position: relative; | ||
+ | overflow: hidden; | ||
+ | } | ||
+ | |||
+ | .jcarousel-wrapper { | ||
+ | max-width: 1125px; | ||
+ | margin: 0; | ||
+ | position: relative; | ||
+ | } | ||
+ | |||
+ | .jcarousel .jcarousel-list { | ||
+ | position: relative; | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | } | ||
+ | |||
+ | .jcarousel .jcarousel-item { | ||
+ | float: left; | ||
+ | } | ||
+ | |||
+ | .jcarousel-item img { | ||
+ | display: block; | ||
+ | max-width: 100%; | ||
+ | height: auto !important; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev, | ||
+ | .jcarousel-control-next { | ||
+ | position: absolute; | ||
+ | top: 45%; | ||
+ | width: 30px; | ||
+ | height: 30px; | ||
+ | text-align: center; | ||
+ | background: #fff; | ||
+ | color: #fff; | ||
+ | text-decoration: none; | ||
+ | text-shadow: 0 0 1px #000; | ||
+ | font: 24px/27px Arial, sans-serif; | ||
+ | -webkit-border-radius: 30px; | ||
+ | -moz-border-radius: 30px; | ||
+ | border-radius: 30px; | ||
+ | -webkit-box-shadow: 0 0 2px #999; | ||
+ | -moz-box-shadow: 0 0 2px #999; | ||
+ | box-shadow: 0 0 2px #999; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev { | ||
+ | left: -15px; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-next { | ||
+ | right: -15px; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev:hover span, | ||
+ | .jcarousel-control-next:hover span { | ||
+ | display: block; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev.inactive, | ||
+ | .jcarousel-control-next.inactive { | ||
+ | opacity: .5; | ||
+ | cursor: default; | ||
+ | } | ||
+ | |||
+ | .jcarousel-pagination { | ||
+ | position: absolute; | ||
+ | bottom: 10px; | ||
+ | left: 15px; | ||
+ | } | ||
+ | |||
+ | .jcarousel-pagination a { | ||
+ | text-decoration: none; | ||
+ | display: inline-block; | ||
+ | font-size: 11px; | ||
+ | line-height: 14px; | ||
+ | min-width: 14px; | ||
+ | background: #fff; | ||
+ | color: #4E443C; | ||
+ | border-radius: 14px; | ||
+ | padding: 3px; | ||
+ | text-align: center; | ||
+ | margin-right: 2px; | ||
+ | opacity: .75; | ||
+ | } | ||
+ | |||
+ | .jcarousel-pagination a.active { | ||
+ | background: #4E443C; | ||
+ | color: #fff; | ||
+ | opacity: 1; | ||
+ | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75); | ||
+ | } | ||
+ | |||
+ | /* END Main Page carousel code */ |
Revision as of 05:43, 19 July 2018
body.page-Main_Page h1 { display: none; }
.externalimage-holder {
position: relative;
}
.externalimage-holder img {
width: 100%;
height: auto;
}
.image100px img { width: 100px; }
/* BEGIN: Main Page CSS */
.banner-image {
position: relative;
overflow: hidden;
max-width: 1125px;
height: auto;
margin-bottom: .6em;
}
.banner-image img {
max-width: 100%;
height: auto;
width: auto\9;
}
.banner-box-wide {
width: 80%
}
.banner-box-left,
.banner-box-right {
padding: 8px 7px;
background: rgb(16,16,16);
background: rgba(0,0,0,0.3);
border-radius: 4px;
width: 40%;
}
.banner-box-left {
left: 3%;
text-align: left;
}
.banner-box-right {
right: 3%;
text-align: right;
}
#mainpage-map {
position: relative;
overflow: hidden;
height: auto;
margin-bottom: .6em;
max-width: 1125px;
}
#mainpage-maptext {
position: absolute;
top: 1.5em;
left: 1em;
z-index: 2;
text-align: center;
white-space: nowrap;
padding: 0.5em 0.5em 0 0.5em;
}
#mainpage-tagline {
margin: 0;
}
#mainpage-searchinput {
padding:0.5em 0 0.7em;
}
#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-shadowbox {
color: white;
background: rgb(16,16,16);
background: rgba(0,0,0,0.3);
border-radius: 4px;
}
.mainpage-shadowbox h2, .mainpage-shadowbox h3 {
color: white;
border:none;
font-family: sans-serif;
line-height: 1.2em;
margin:0;
}
.mainpage-shadowbox h2 {
font-size: 190%;
}
.mainpage-shadowbox h3 {
font-size: 150%;
padding: 0;
}
#mainpage-maplinks a, .mainpage-shadowbox a {
color: white;
font-weight: bold;
}
.banner-box-2 {
position: absolute;
z-index: 2;
margin-top: 2em;
min-width: 20em;
}
.banner-box-2 .quote {
font-size: 80%;
line-height: 1.2em;
}
/* END: Main Page CSS */
.mf-mobile-only {
display: none;
}
/* BEGIN Main Page carousel code */
.jcarousel {
position: relative;
overflow: hidden;
}
.jcarousel-wrapper {
max-width: 1125px;
margin: 0;
position: relative;
}
.jcarousel .jcarousel-list {
position: relative;
margin: 0;
padding: 0;
}
.jcarousel .jcarousel-item {
float: left;
}
.jcarousel-item img {
display: block;
max-width: 100%;
height: auto !important;
}
.jcarousel-control-prev,
.jcarousel-control-next {
position: absolute;
top: 45%;
width: 30px;
height: 30px;
text-align: center;
background: #fff;
color: #fff;
text-decoration: none;
text-shadow: 0 0 1px #000;
font: 24px/27px Arial, sans-serif;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
-webkit-box-shadow: 0 0 2px #999;
-moz-box-shadow: 0 0 2px #999;
box-shadow: 0 0 2px #999;
}
.jcarousel-control-prev {
left: -15px;
}
.jcarousel-control-next {
right: -15px;
}
.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
display: block;
}
.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
opacity: .5;
cursor: default;
}
.jcarousel-pagination {
position: absolute;
bottom: 10px;
left: 15px;
}
.jcarousel-pagination a {
text-decoration: none;
display: inline-block;
font-size: 11px;
line-height: 14px;
min-width: 14px;
background: #fff;
color: #4E443C;
border-radius: 14px;
padding: 3px;
text-align: center;
margin-right: 2px;
opacity: .75;
}
.jcarousel-pagination a.active {
background: #4E443C;
color: #fff;
opacity: 1;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}
/* END Main Page carousel code */