টেমপ্লেট:Bhikitia:Main Page/styles.css: সংশোধিত সংস্করণের মধ্যে পার্থক্য

ভিকিটিয়া থেকে
সম্পাদনা সারাংশ নেই
সম্পাদনা সারাংশ নেই
১ নং লাইন: ১ নং লাইন:
/* Main panel styling */
/* General Styles for Panels */
.bh-panel {
.bh-panel {
     width: 100%;
     width: 100%;
     margin-bottom: 1.5em;
     margin-bottom: 1em;
     border: 1px solid #d1d1e0; /* Light gray border */
     border: 1px solid #d1d1e0;
     background-color: #f5f5fa; /* Soft off-white background */
     background-color: #f5f5fa;
     border-radius: 8px; /* Rounded corners for a modern look */
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
}


/* Subpanel styling */
/* Subpanel Styles */
.bh-subpanel {
.bh-subpanel {
     padding: 1.5em;
     padding: 1em;
     border-bottom: 1px solid #e0e0eb; /* Slightly darker border for separation */
     border-bottom: 1px solid #e0e0eb;
}
}


/* Remove border from the last subpanel in each panel */
.bh-subpanel:last-child {
.bh-panel > .bh-subpanel:last-child {
     border-bottom: none;
     border-bottom: none;
}
}


/* Centered text alignment for specific subpanels */
/* Header Styles */
.bh-left.center {
.bh-subpanel h1,
.bh-subpanel h2 {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #4a4a8c;
    font-size: 1.8em;
    margin-bottom: 0.5em;
     text-align: center;
     text-align: center;
}
}


/* Header styles */
/* Text and Links */
.bh-subpanel h1, .bh-subpanel h2 {
.bh-subpanel p,
     color: #4a4a8c; /* Deep blue for headers */
.bh-subpanel div,
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean sans-serif font */
.bh-subpanel ul {
     color: #333;
     font-size: 1em;
    line-height: 1.5em;
}
}


/* Link styles */
.bh-subpanel a {
.bh-subpanel a {
     color: #0066cc; /* Bright blue for links */
     color: #0066cc;
     text-decoration: none; /* Remove underline for a cleaner look */
     text-decoration: none;
}
}


.bh-subpanel a:hover {
.bh-subpanel a:hover {
     text-decoration: underline; /* Underline on hover for clarity */
     text-decoration: underline;
}
}


/* Search box styling */
/* Search Box */
#MP {
#MP,
#MP_Bangla {
     width: 100%;
     width: 100%;
     padding: 0.6em;
     padding: 0.6em;
     border: 1px solid #ccccff; /* Light blue border */
     border: 1px solid #ccccff;
     border-radius: 4px; /* Slightly rounded corners */
     border-radius: 4px;
     font-size: 1em;
     font-size: 1em;
     margin-top: 0.5em;
     margin-top: 0.5em;
}
}


/* Button styling */
/* Responsive Adjustments for Mobile */
input[type="submit"] {
    background-color: #4a4a8c; /* Deep blue background */
    color: white;
    padding: 0.6em 1.2em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
 
input[type="submit"]:hover {
    background-color: #3b3b70; /* Darker blue on hover */
}
 
/* Responsive adjustments */
@media (max-width: 768px) {
@media (max-width: 768px) {
     .bh-panel {
     .bh-panel {
         margin-bottom: 1em;
         margin-bottom: 0.8em;
     }
     }
     .bh-subpanel {
     .bh-subpanel {
         padding: 1em;
         padding: 1em;
     }
     }
     .bh-subpanel h1, .bh-subpanel h2 {
     .bh-subpanel h1,
         font-size: 1.2em;
    .bh-subpanel h2 {
         font-size: 1.5em;
    }
    .bh-subpanel div,
    .bh-subpanel ul {
        font-size: 0.9em;
    }
    #MP,
    #MP_Bangla {
        width: 100%;
        font-size: 0.9em;
     }
     }
}
}

২১:১৪, ২৮ নভেম্বর ২০২৪ তারিখে সংশোধিত সংস্করণ

/* General Styles for Panels */
.bh-panel {
    width: 100%;
    margin-bottom: 1em;
    border: 1px solid #d1d1e0;
    background-color: #f5f5fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Subpanel Styles */
.bh-subpanel {
    padding: 1em;
    border-bottom: 1px solid #e0e0eb;
}

.bh-subpanel:last-child {
    border-bottom: none;
}

/* Header Styles */
.bh-subpanel h1,
.bh-subpanel h2 {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #4a4a8c;
    font-size: 1.8em;
    margin-bottom: 0.5em;
    text-align: center;
}

/* Text and Links */
.bh-subpanel p,
.bh-subpanel div,
.bh-subpanel ul {
    color: #333;
    font-size: 1em;
    line-height: 1.5em;
}

.bh-subpanel a {
    color: #0066cc;
    text-decoration: none;
}

.bh-subpanel a:hover {
    text-decoration: underline;
}

/* Search Box */
#MP,
#MP_Bangla {
    width: 100%;
    padding: 0.6em;
    border: 1px solid #ccccff;
    border-radius: 4px;
    font-size: 1em;
    margin-top: 0.5em;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .bh-panel {
        margin-bottom: 0.8em;
    }
    .bh-subpanel {
        padding: 1em;
    }
    .bh-subpanel h1,
    .bh-subpanel h2 {
        font-size: 1.5em;
    }
    .bh-subpanel div,
    .bh-subpanel ul {
        font-size: 0.9em;
    }
    #MP,
    #MP_Bangla {
        width: 100%;
        font-size: 0.9em;
    }
}