MediaWiki:Common.css: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 1: Line 1:
/* new style changes */
/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}
/* Links */
a {
    color: #7c25b8;
    text-decoration: none;
}
a:hover {
    color: #5a1d8a;
    text-decoration: underline;
}
/* Buttons */
.button, input[type="submit"], input[type="button"] {
    background-color: #7c25b8;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}
.button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #5a1d8a;
}
/* Forms */
input[type="text"], input[type="password"], textarea {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */