MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Manual revert
No edit summary
Tag: Reverted
Line 6: Line 6:
     font-family: 'Orbitron', sans-serif;
     font-family: 'Orbitron', sans-serif;
     font-weight: bold;
     font-weight: bold;
}
/* Ensure the container for the tabs is a flex container */
#p-namespaces ul,
#p-views ul {
    display: flex;
    justify-content: flex-end; /* Aligns all items to the right */
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
/* Target the specific tabs to ensure they are positioned correctly */
#ca-nstab-main,
#ca-talk {
    margin-left: auto; /* Pushes the tabs to the right */
    order: 1; /* Ensure they appear at the end */
}
/* Optional: Adjust individual tab spacing */
#p-namespaces ul li,
#p-views ul li {
    margin-right: 10px; /* Adjust this value as needed */
}
}

Revision as of 05:42, 19 May 2024

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

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.sci-fi-font {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}



/* Ensure the container for the tabs is a flex container */
#p-namespaces ul,
#p-views ul {
    display: flex;
    justify-content: flex-end; /* Aligns all items to the right */
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Target the specific tabs to ensure they are positioned correctly */
#ca-nstab-main,
#ca-talk {
    margin-left: auto; /* Pushes the tabs to the right */
    order: 1; /* Ensure they appear at the end */
}

/* Optional: Adjust individual tab spacing */
#p-namespaces ul li,
#p-views ul li {
    margin-right: 10px; /* Adjust this value as needed */
}