MediaWiki:Common.css: Difference between revisions

From Makerpedia

Chetitac (talk | contribs)
No edit summary
GiseleN (talk | contribs)
No edit summary
Tag: Reverted
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* trying to center the title on the home page, 9:55p - sameer*/
.mw-displaytitle {
    text-align: center;
}


.minerva-header .branding-box a {
.minerva-header .branding-box a {

Revision as of 03:55, 25 January 2025

/* CSS placed here will be applied to all skins */
/* trying to center the title on the home page, 9:55p - sameer*/
.mw-displaytitle {
    text-align: center;
}

.minerva-header .branding-box a {
  height: 3em !important;
}


.cautionBox {
  border: 1px solid #ddcc55;
  background-color: #ffedaa;
  padding: 1em;
  border-radius: .5vmin;
}

.warningBox {
  border: 1px solid #dd5555;
  background-color: #ffaaaa;
  padding: 1em;
  border-radius: .5vmin;
}

.introBox {
  border: 2px solid #f505f5;
  background-color: #c2cbde;
  border-radius: .5vmin;
  padding: 1em;
  padding-top: .25em;
}

.ytplayer {
  max-width: 90vw;
}


/* Style for the grey bubbles */
.grey-bubble {
  background-color: #ECECEC;  
  border-radius: 8px;         
  padding: 10px;              /* Padding inside the bubble */
  width: 320px;               /* Fixed width for the bubbles */
  height: 150px;               /* Fixed height for the bubbles */
  display: inline-block;      /* Ensure bubbles are side by side */
  margin-right: 300px;         /* Space between the bubbles */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)
}

.bubble-container {
  display:flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}