MediaWiki:Common.css: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 184: | Line 184: | ||
margin: 0; | margin: 0; | ||
border: 0; | border: 0; | ||
} | |||
#back-to-top { | |||
position: fixed; | |||
bottom: 20px; | |||
left: 20px; | |||
background: linear-gradient(to bottom, #222, #111); | |||
border: 1px solid rgba(255, 215, 0, 0.3); | |||
color: #FFD700; | |||
font-family: 'Cinzel', serif; | |||
font-size: 13px; | |||
padding: 6px 12px; | |||
border-radius: 6px; | |||
cursor: pointer; | |||
display: none; | |||
z-index: 1000; | |||
transition: all 0.3s ease; | |||
box-shadow: 0 0 6px rgba(255, 215, 0, 0.1); | |||
} | |||
#back-to-top:hover { | |||
background: #1a1a1a; | |||
color: #fff; | |||
box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); | |||
} | } | ||