Module:NavboxMobile/styles.css: Difference between revisions

From Ikwipedia
No edit summary
No edit summary
Tag: Reverted
Line 55: Line 55:
/* Group Content */
/* Group Content */
.navboxMobile-group-content {
.navboxMobile-group-content {
    padding: 0.5em 1em;
     line-height: 1.5em;
     line-height: 1.5em;
     text-align: center; /* Centered text */
     text-align: center; /* Centered text */
Line 65: Line 64:
.navboxMobile-group-level1 {
.navboxMobile-group-level1 {
     background-color: #ddf; /* Level 1 color */
     background-color: #ddf; /* Level 1 color */
    margin-top: 0.25em; /* Add spacing above for separation */
    margin-left: 0; /* No indentation for top-level headings */
    margin-right: 0; /* Ensure alignment with the title */
}
}


Line 70: Line 72:
.navboxMobile-group-level2 {
.navboxMobile-group-level2 {
     background-color: #e6e6ff; /* Level 2 color */
     background-color: #e6e6ff; /* Level 2 color */
     padding-left: 0; /* No indentation */
     padding-left: 1em; /* Indent slightly on the left */
    padding-right: 1em; /* Indent slightly on the right */
    margin-top: 0.25em; /* Add spacing above for separation */
}
}


Line 76: Line 80:
.navboxMobile-group-level3 {
.navboxMobile-group-level3 {
     background-color: #e6e6ff; /* Level 3 color */
     background-color: #e6e6ff; /* Level 3 color */
     padding-left: 1em; /* Indentation for subgroups */
     padding-left: 2em; /* Indent more compared to level 2 */
     margin-bottom: 0.5em; /* Consistent spacing */
     margin-top: 0.25em; /* Add spacing above for separation */
}
}



Revision as of 23:59, 24 November 2024

/* Container Styles */
.navboxMobile {
    box-sizing: border-box;
    border: 1px solid #a2a9b1;
    width: 100%;
    clear: both;
    font-size: 100%;
    text-align: left;
    padding: 1px;
    margin: 0.5em 0 0; /* Reduced top margin */
    background-color: #fdfdfd;
}

/* Inner and Subgroup Tables */
.navboxMobile-inner,
.navboxMobile-subgroup {
    width: 100%;
}

/* Title Row */
.navboxMobile-title {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the title */
    position: relative; /* Allows for absolute positioning of navbar */
    padding: 0.25em 1em; /* Reduced padding */
    line-height: 1.5em;
    text-align: center;
    background-color: #ccf;
    font-size: 1.2em;
}

.navboxMobile-title-content {
    font-size: 1.1em;
    margin: 0.5em 0;
}

/* Navbar Container */
.navboxMobile-title .navbar-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Above and Below Content */
.navboxMobile-abovebelow-content,
.navboxMobile-below-content {
    padding: 0.25em 1em;
    line-height: 1.5em;
    background-color: #ddf;
    font-size: 1em;
}

/* Group Content */
.navboxMobile-group-content {
    line-height: 1.5em;
    text-align: center; /* Centered text */
    font-size: 1em;
    padding: 0.5em 1em; /* Consistent padding */
}

/* Level 1: Top-level Groups */
.navboxMobile-group-level1 {
    background-color: #ddf; /* Level 1 color */
    margin-top: 0.25em; /* Add spacing above for separation */
    margin-left: 0; /* No indentation for top-level headings */
    margin-right: 0; /* Ensure alignment with the title */
}

/* Level 2: Main Groups */
.navboxMobile-group-level2 {
    background-color: #e6e6ff; /* Level 2 color */
    padding-left: 1em; /* Indent slightly on the left */
    padding-right: 1em; /* Indent slightly on the right */
    margin-top: 0.25em; /* Add spacing above for separation */
}

/* Level 3: Subgroups */
.navboxMobile-group-level3 {
    background-color: #e6e6ff; /* Level 3 color */
    padding-left: 2em; /* Indent more compared to level 2 */
    margin-top: 0.25em; /* Add spacing above for separation */
}

/* Odd and Even Rows with Increased Specificity */
.navboxMobile-list-content.navboxMobile-even {
    background-color: #f7f7f7;
}

.navboxMobile-list-content.navboxMobile-odd {
    background-color: transparent;
}

/* List Content */
.navboxMobile-list-content {
    line-height: 1.5em;
    padding: 0.25em 0;
    font-size: 1em;
    text-align: left; /* Align list items to the left */
}

/* List with Group */
.navboxMobile-list-with-group {
    text-align: left;
    border-left: 2px solid #fdfdfd;
}

/* Styles Container */
.navboxMobile-styles {
    /* Additional styles if necessary */
}

/* Container Padding */
.navboxMobile-container {
    padding: 3px;
}

/* Navbar Specific Styles */
.navboxMobile .navbar {
    display: block;
    font-size: 100%;
}

.navboxMobile-title .navbar {
    float: left;
    text-align: left;
    margin-right: 0.5em;
}

/* Responsive Adjustments */
@media all and (min-width: 720px) {
    .navboxMobile {
        /* Example: Adjustments for larger mobile screens */
    }
}

/* Hide on Print */
@media print {
    .navboxMobile {
        display: none !important;
    }
}