MediaWiki:Common.css: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 204: | Line 204: | ||
position: static !important; | position: static !important; | ||
height: auto !important; | height: auto !important; | ||
margin: 0px 0 5px 0 !important; | margin: 0px 0 5px 0 !important; | ||
padding: 0 !important; | padding: 0 !important; | ||
display: flex !important; | display: flex !important; | ||
justify-content: center; | justify-content: center; | ||
align-items: center; | align-items: center; | ||
} | |||
@keyframes logoPopIn { | |||
0% { | |||
opacity: 0; | |||
transform: scale(0.7); | |||
} | |||
60% { | |||
opacity: 1; | |||
transform: scale(1.1); | |||
} | |||
100% { | |||
transform: scale(1); | |||
} | |||
} | } | ||
.mw-wiki-logo { | .mw-wiki-logo { | ||
animation: logoPopIn 0.6s ease-out forwards; | |||
width: 170px !important; | width: 170px !important; | ||
height: 100px !important; | height: 100px !important; | ||
Line 219: | Line 234: | ||
background-size: contain !important; | background-size: contain !important; | ||
margin: 0 auto !important; | margin: 0 auto !important; | ||
} | |||
.mw-wiki-logo:hover { | |||
filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); | |||
transform: scale(1.03); | |||
transition: all 0.3s ease; | |||
cursor: pointer; | |||
} | |||
#footer, .mw-footer { | |||
background: #111; | |||
color: #bbb; | |||
font-family: 'Cinzel', serif; | |||
font-size: 12px; | |||
border-top: 1px solid rgba(255, 215, 0, 0.1); | |||
padding: 10px; | |||
} | |||
#footer a, .mw-footer a { | |||
color: #E5C07B; | |||
text-decoration: none; | |||
} | |||
#footer a:hover, .mw-footer a:hover { | |||
color: #FFD700; | |||
text-shadow: 0 0 5px rgba(255, 215, 0, 0.4); | |||
} | |||
#searchInput { | |||
background: #1a1a1a; | |||
color: #ddd; | |||
border: 1px solid rgba(255, 215, 0, 0.2); | |||
padding: 6px 8px; | |||
font-family: 'Cinzel', serif; | |||
border-radius: 4px; | |||
} | |||
#searchInput:focus { | |||
outline: none; | |||
border-color: #FFD700; | |||
box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); | |||
} | } |