Jump to content
This site is currently in alpha, so you will run into rough edges.

MediaWiki:Common.css: Difference between revisions

From The Deep Tech Wiki
Added ambox-maintenance
 
No edit summary
Line 11: Line 11:
   border-left: 10px solid #f28500; /* Orange */
   border-left: 10px solid #f28500; /* Orange */
   border-radius: 4px;
   border-radius: 4px;
}
.create-button a {
    display: inline-block;
    padding: 10px 18px;
    background-color: #3366ff;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.create-button a:hover {
    background-color: #1f4fe0;
    transform: translateY(-1px);
}
.create-button a:active {
    background-color: #183fb8;
    transform: translateY(0);
}
}

Revision as of 12:28, 13 November 2025

/* CSS placed here will be applied to all skins */

/* --- Article Maintenance Box (Ambox) Styling --- */
.ambox-maintenance {
  width: 80%;
  margin: 1em auto;
  padding: 0.5em 1em;
  background-color: #f8f9fa;
  /* This is the border */
  border: 1px solid #aaa;
  border-left: 10px solid #f28500; /* Orange */
  border-radius: 4px;
}


.create-button a {
    display: inline-block;
    padding: 10px 18px;
    background-color: #3366ff;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.create-button a:hover {
    background-color: #1f4fe0;
    transform: translateY(-1px);
}

.create-button a:active {
    background-color: #183fb8;
    transform: translateY(0);
}