MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 66: Line 66:


.static-button {
.static-button {
     width: 115px;
     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: 5px; /* Rounded corners */
     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 */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Slight drop shadow */
}
}