No edit summary
m Protected "Template:Main Page/styles.css" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
.fp-welcome-box {
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 2em;
    text-align: center;
    font-family: Georgia, serif;
    opacity: 0;
    animation: fadeInBox 1s ease-in-out forwards;
}
@keyframes fadeInBox {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Welcome box */
/* Welcome box */
.fp-welcome-box {
.fp-welcome-box {
     background-color: #1f2937;
     background-color: #1f2937;
     padding: 2em 1em;
     padding: 2em 1em;
    border-radius: 8px;
     margin-bottom: 1em;
     margin-bottom: 1em;
     text-align: center;
     text-align: center;
Line 120: Line 99:


/* End Four Box */
/* End Four Box */
.fp-info-box {
    background-color: #f1f5f9;
    border-left: 5px solid #3b82f6;
    padding: 1em;
    border-radius: 6px;
    margin-bottom: 1em;
    font-size: 1em;
}
.fp-grid-box {
    display: flex;
    gap: 1em;
    justify-content: space-around;
    margin-bottom: 1em;
}
.fp-grid-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1em;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.fp-box-purple {
    background-color: #f3e8fd;
    border-left: 5px solid #9b51e0;
    padding: 2em;
    border-radius: 8px;
    line-height: 1.7;
    font-size: 1em;
    margin-bottom: 2em;
}