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

ভিকিটিয়া থেকে
সম্পাদনা সারাংশ নেই
ট্যাগ: পুনর্বহালকৃত
সম্পাদনা সারাংশ নেই
ট্যাগ: হাতদ্বারা প্রত্যাবর্তন
১ নং লাইন: ১ নং লাইন:
/* Header Styling with Border */
/* General Panel Styling for Touching Borders */
.bh-header {
.bh-panel {
     width: 100%;
     width: 100%;
     margin-bottom: 1.5em; /* Space below the header */
     margin-bottom: 0; /* Remove space between panels */
     padding: 1.5em; /* Inner padding for spacing */
     border: 2px solid #a2a9b1; /* Consistent border color */
     border: 2px solid #a2a9b1; /* Solid border around the header */
     border-top: none; /* Remove top border to connect with the previous panel */
     background-color: #ffffff; /* White background */
     background-color: #ffffff; /* White background for consistency */
     border-radius: 8px; /* Rounded corners for aesthetics */
     border-radius: 0; /* Remove rounding to ensure seamless connection */
    text-align: center; /* Center the text */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
}


/* Title in the Header */
/* First Panel Exception */
.bh-header h1 {
.bh-panel:first-child {
     font-family: 'Georgia', 'Times New Roman', serif; /* Serif font for title */
     border-top: 2px solid #a2a9b1; /* Restore top border for the first panel */
     font-size: 2.8em; /* Large font size for prominence */
     border-radius: 4px 4px 0 0; /* Optional: rounded corners for the first panel */
    color: #4a4a8c; /* Deep blue color */
    margin: 0; /* Remove extra margin */
}
}


/* Subtitle Text */
/* Last Panel Exception */
.bh-header p {
.bh-panel:last-child {
    font-family: 'Arial', sans-serif; /* Clean sans-serif font */
     border-bottom: 2px solid #a2a9b1; /* Restore bottom border for the last panel */
     font-size: 1.2em; /* Standard font size for readability */
     border-radius: 0 0 4px 4px; /* Optional: rounded corners for the last panel */
     color: #333; /* Neutral dark gray color */
    margin: 0.5em 0; /* Spacing between paragraphs */
}
}


/* Links in the Header */
/* Subpanel Styling */
.bh-header a {
.bh-subpanel {
    padding: 1.5em;
    border-bottom: 1px solid #d1d1d1; /* Inner separators */
}
 
.bh-subpanel:last-child {
    border-bottom: none; /* Remove border for the last subpanel */
}
 
/* Header and Titles */
.bh-subpanel h1,
.bh-subpanel h2 {
    font-family: 'Georgia', 'Times New Roman', serif; /* Classic serif font */
    color: #202122; /* Darker gray for elegant text */
    font-size: 2.2em;
    margin-bottom: 1em;
    text-align: center;
    border-bottom: 2px solid #a2a9b1; /* Underline effect */
    padding-bottom: 0.2em;
}
 
.bh-subpanel h1 {
    font-size: 2.8em; /* Larger for the main header */
}
 
/* Text and Links */
.bh-subpanel p,
.bh-subpanel div,
.bh-subpanel ul {
    color: #333;
    font-size: 1.1em;
    line-height: 1.8em;
    margin: 1em 0;
}
 
.bh-subpanel a {
     color: #0066cc; /* Blue for links */
     color: #0066cc; /* Blue for links */
     text-decoration: none; /* Remove underline */
     text-decoration: none;
     font-weight: bold; /* Bold for emphasis */
}
 
.bh-subpanel a:hover {
    text-decoration: underline;
}
 
/* Input and Buttons */
input[type="search"] {
    width: 90%;
    max-width: 500px;
    padding: 0.8em;
    border: 2px solid #a2a9b1;
    border-radius: 4px;
     font-size: 1.1em;
    margin-top: 1em;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
 
input[type="submit"] {
    background-color: #3366cc;
    color: white;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    margin: 1.5em auto 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
}


.bh-header a:hover {
input[type="submit"]:hover {
     text-decoration: underline; /* Add underline on hover */
     background-color: #294a96;
}
}

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

/* General Panel Styling for Touching Borders */
.bh-panel {
    width: 100%;
    margin-bottom: 0; /* Remove space between panels */
    border: 2px solid #a2a9b1; /* Consistent border color */
    border-top: none; /* Remove top border to connect with the previous panel */
    background-color: #ffffff; /* White background for consistency */
    border-radius: 0; /* Remove rounding to ensure seamless connection */
}

/* First Panel Exception */
.bh-panel:first-child {
    border-top: 2px solid #a2a9b1; /* Restore top border for the first panel */
    border-radius: 4px 4px 0 0; /* Optional: rounded corners for the first panel */
}

/* Last Panel Exception */
.bh-panel:last-child {
    border-bottom: 2px solid #a2a9b1; /* Restore bottom border for the last panel */
    border-radius: 0 0 4px 4px; /* Optional: rounded corners for the last panel */
}

/* Subpanel Styling */
.bh-subpanel {
    padding: 1.5em;
    border-bottom: 1px solid #d1d1d1; /* Inner separators */
}

.bh-subpanel:last-child {
    border-bottom: none; /* Remove border for the last subpanel */
}

/* Header and Titles */
.bh-subpanel h1,
.bh-subpanel h2 {
    font-family: 'Georgia', 'Times New Roman', serif; /* Classic serif font */
    color: #202122; /* Darker gray for elegant text */
    font-size: 2.2em;
    margin-bottom: 1em;
    text-align: center;
    border-bottom: 2px solid #a2a9b1; /* Underline effect */
    padding-bottom: 0.2em;
}

.bh-subpanel h1 {
    font-size: 2.8em; /* Larger for the main header */
}

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

.bh-subpanel a {
    color: #0066cc; /* Blue for links */
    text-decoration: none;
}

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

/* Input and Buttons */
input[type="search"] {
    width: 90%;
    max-width: 500px;
    padding: 0.8em;
    border: 2px solid #a2a9b1;
    border-radius: 4px;
    font-size: 1.1em;
    margin-top: 1em;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

input[type="submit"] {
    background-color: #3366cc;
    color: white;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    margin: 1.5em auto 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input[type="submit"]:hover {
    background-color: #294a96;
}