Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Message.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 2: Line 2:
   padding-left: 1rem;
   padding-left: 1rem;
   padding-right: 1rem;
   padding-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;


   border-width: 1px;
   border-width: 1px;

Revision as of 10:56, 23 October 2025

.message {
  padding-left: 1rem;
  padding-right: 1rem;

  border-width: 1px;
  border-style: solid;
  border-radius: 0.5rem;
}

.message-info {
  border-color: rgb(0, 0, 255);
  background: rgba(0, 0, 255, 0.15)
}

.message-warning {
  border-color: rgb(255, 255, 0);
  background: rgba(255, 255, 0, 0.15)
}

.message-danger {
  border-color: rgb(255, 0, 0);
  background: rgba(255, 0, 0, 0.15)
}

.message-success {
  border-color: rgb(0, 255, 0);
  background: rgba(0, 255, 0, 0.15)
}