MediaWiki:Common.css: Difference between revisions
No edit summary Tag: Manual revert |
No edit summary |
||
| Line 2: | Line 2: | ||
#languageDropdown { | #languageDropdown { | ||
position: relative; /* fixed kaldırıldı */ | position: relative; /* fixed kaldırıldı */ | ||
top: auto; | top: auto; | ||
right: auto; | right: auto; | ||
margin: 20px auto; /* ortalanmış alt boşluk */ | margin: 20px auto; /* ortalanmış alt boşluk */ | ||
text-align: center; | text-align: center; | ||
z-index: 1000; | z-index: 1000; | ||
font-family: sans-serif; | font-family: sans-serif; | ||
| Line 25: | Line 25: | ||
#languageDropdownContent { | #languageDropdownContent { | ||
display: none; | display: none; | ||
position: relative; /* absolute | position: relative; /* absolute yok, flow içinde */ | ||
right: auto; | right: auto; | ||
background: white; | background: white; | ||
| Line 31: | Line 31: | ||
border-radius: 5px; | border-radius: 5px; | ||
min-width: 100px; | min-width: 100px; | ||
margin: 5px auto 0 auto; | margin: 5px auto 0 auto; | ||
box-shadow: 0 2px 5px rgba(0,0,0,0.2); | box-shadow: 0 2px 5px rgba(0,0,0,0.2); | ||
text-align: left; /* | text-align: left; | ||
} | |||
/* Hover ile açılan dropdown */ | |||
#languageDropdown:hover #languageDropdownContent { | |||
display: block; | |||
} | } | ||
| Line 45: | Line 50: | ||
#languageDropdownContent a:hover { | #languageDropdownContent a:hover { | ||
background: #f1f1f1; | background: #f1f1f1; | ||
} | |||
/* ========================= */ | |||
/* Tagline (MediaWiki:Tagline) */ | |||
/* ========================= */ | |||
#siteSub, | |||
.mw-tagline { | |||
display: block; | |||
margin-top: 6px; | |||
font-size: 0.85em; | |||
color: #54595d; | |||
font-weight: normal; | |||
} | |||
/* Başlıkla tagline yapışmasın */ | |||
#firstHeading { | |||
margin-bottom: 0; | |||
} | } | ||