Module:NavboxMobile/styles.css

From Ikwipedia
/* 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 {
    padding: 0.5em 1em;
    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 */
    border-top: 1px solid white; /* White border at the top for separation */
}


/* Level 2: */
.navboxMobile-group-level2 {
    background-color: #e6e6ff; /* Level 2 color */
    box-shadow: inset 5px 0 #fff, inset -5px 0 #fff; /* Create shadow effect */
    margin-top: 0.25em; /* Add spacing above for separation */
    border-top: 1px solid white; /* White border at the top for separation */
    box-sizing: border-box;
}


/* Level 2 Content */
.navboxMobile-list-level2 {
    box-shadow: inset 5px 0 #fff, inset -5px 0 #fff; /* Shadow effect */
    box-sizing: border-box;
    margin: 0 auto; /* Center the content */
    border: none; /*need*/
    padding-left: 7px;
    padding-right: 7px;
}

/* Level 3: Subgroups */
.navboxMobile-group-level3 {
    background-color: #e6e6ff; /* Level 3 color */
    padding-left: 1em; /* Indentation for subgroups */
    margin-top: 0.25em; /* Add spacing above for separation */
    box-shadow: inset 10px 0 #fff, inset -10px 0 #fff; /* Create shadow effect */
    border-bottom: 1px solid white; /* White border at the top for separation */
    box-sizing: border-box;
}


/* Level 3 Content */
.navboxMobile-list-level3 {
    box-shadow: inset 10px 0 #fff, inset -10px 0 #fff; /* Shadow effect */
    box-sizing: border-box;
    margin: 0 auto; /* Center the content */
    border:none;
    padding-left:12px;
    padding-right: 12px;
}

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

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

/* List Content */
.navboxMobile-list-content {
    line-height: 1.5em;
    font-size: 1em;
}


/* 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;
    }
}