টেমপ্লেট:Bhikitia:Main Page/styles.css

ভিকিটিয়া থেকে
/* General Panel Styling */
.bh-panel {
    width: 100%;
    margin-bottom: 1.5em;
    border: 1px solid #d1d1e0;
    background-color: #f9f9ff; /* Subtle blue for a modern touch */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

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

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

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

.bh-subpanel h2 {
    text-align: left; /* Left-aligned for section titles */
}

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

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

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

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

input[type="submit"] {
    background-color: #4a4a8c;
    color: white;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    margin: 1em auto 0;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bh-panel {
        margin-bottom: 1em;
    }
    .bh-subpanel {
        padding: 1em;
    }
    .bh-subpanel h1 {
        font-size: 2em;
    }
    .bh-subpanel h2 {
        font-size: 1.5em;
    }
    .bh-subpanel p,
    .bh-subpanel div,
    .bh-subpanel ul {
        font-size: 1em;
    }
}