Difference between revisions of "MediaWiki:Common.css"

(Created page with "→‎CSS placed here will be applied to all skins: :root { --trigger-color: #AC2424; --action-color: #1665B0; --constraint-color: green; }")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
  
:root {
+
.header-style {
   --trigger-color: #AC2424;
+
   background-color: #EEEEEE;
   --action-color: #1665B0;
+
  color: black;
   --constraint-color: green;
+
  border-radius: 10px;
 +
  padding: 10px;
 +
}
 +
 
 +
.trigger-style {
 +
  background-color: #AC2424;
 +
   color: white;
 +
  border-radius: 10px;
 +
  padding: 10px;
 +
}
 +
 
 +
.action-style {
 +
  background-color: #1665B0;
 +
   color: white;
 +
  border-radius: 10px;
 +
  padding: 10px;
 +
}
 +
 
 +
.constraint-style {
 +
  background-color: green;
 +
  color: white;
 +
  border-radius: 10px;
 +
  padding: 10px;
 
}
 
}

Latest revision as of 20:56, 10 June 2024

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

.header-style {
  background-color: #EEEEEE;
  color: black;
  border-radius: 10px;
  padding: 10px;
}

.trigger-style {
  background-color: #AC2424;
  color: white;
  border-radius: 10px;
  padding: 10px;
}

.action-style {
  background-color: #1665B0;
  color: white;
  border-radius: 10px;
  padding: 10px;
}

.constraint-style {
  background-color: green;
  color: white;
  border-radius: 10px;
  padding: 10px;
}