MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 66: | Line 66: | ||
.static-button { | .static-button { | ||
width: | width: 120px; | ||
display: inline-block; /* Makes the button behave like a block */ | display: inline-block; /* Makes the button behave like a block */ | ||
padding: 5px 5px; /* Adds spacing inside the button */ | padding: 5px 5px; /* Adds spacing inside the button */ | ||
| Line 73: | Line 73: | ||
background-color: #007bff; /* Blue background */ | background-color: #007bff; /* Blue background */ | ||
border: 1px solid black; /* Black border */ | border: 1px solid black; /* Black border */ | ||
border-radius: | border-radius: 2px; /* Rounded corners */ | ||
text-decoration: none; /* Removes underline from link */ | text-decoration: none; /* Removes underline from link */ | ||
text-align: center; /* Centers text inside the button */ | text-align: center; /* Centers text inside the button */ | ||
cursor: pointer; /* Pointer cursor on hover */ | cursor: pointer; /* Pointer cursor on hover */ | ||
} | } | ||