MediaWiki:Common.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 368: Line 368:
/* End Style for article window<------ */
/* End Style for article window<------ */
.footer {
.footer {
     display: flex; /* Enables Flexbox */
     display: grid;  
     align-items: center; /* Vertically aligns items in the middle */
     grid-template-columns: 1fr auto 1fr;
     justify-content: space-between;
     align-items: center;  
     position: fixed;
     position: fixed;
     left: 0;
     left: 0;
Line 384: Line 384:


#simpleSearch {
#simpleSearch {
   margin-left: 10px; /* Adjust as needed */
   grid-column: 1 / 2; /* Position in the first column /
  flex-grow: 1; /* Allows the element to grow if necessary /
   margin-left: 10px; / Adjust as needed /
   margin-left: 10px; / Adjust as needed /
   text-align: left; / Aligns content to the left */
   text-align: left; / Aligns content to the left */
Line 423: Line 422:


.nrs {
.nrs {
     flex-grow: 1;
     grid-column: 2 / 3; /* Position in the center column */
    text-align: center;
text-align: center;  
}
}


Navigation menu