MediaWiki:Common.css: Difference between revisions

From Arisepedia
No edit summary
No edit summary
Line 1: Line 1:
/* MediaWiki:Common.css */
/* MediaWiki:Common.css */


#ca-viewsource {
/* Main Page*/
    display: none;
}


/* MediaWiki:Common.css */
/* Main Page */
body {
body {
     font-family: 'Arial', sans-serif;
     font-family: 'Arial', 'Noto Sans Devanagari', sans-serif;
     color: #333;
     color: #333;
     background-color: #f9f9f9;
     background-color: #f9f9f9;
Line 17: Line 13:
/* Hero Section */
/* Hero Section */
.hero {
.hero {
     background: #ffffff;
     background: #fc5351;
     color: #333;
     color: #ffffff;
     padding: 60px 20px;
     padding: 60px 20px;
     border-radius: 20px;
     border-radius: 20px;
Line 24: Line 20:
     text-align: center;
     text-align: center;
     margin-bottom: 40px;
     margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
}


Line 35: Line 25:
     font-size: 2.5em;
     font-size: 2.5em;
     font-weight: 700;
     font-weight: 700;
     margin: 0 0 20px 0;
     margin: 0;
    text-transform: uppercase;
    color: #333;
}
}


Line 44: Line 32:
     margin: 20px 0;
     margin: 20px 0;
     font-weight: 300;
     font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}
}


.contact-message {
.hero a {
     background: rgba(0, 0, 0, 0.05);
    display: inline-block;
     border-radius: 10px;
     background: #ffffff;
     padding: 15px;
    color: #fc5351;
     margin-top: 30px;
    padding: 15px 30px;
     border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
     font-weight: 600;
     margin-top: 20px;
    transition: background 0.3s, color 0.3s;
    border: 2px solid #fc5351;
}
}


.contact-message p {
.hero a:hover {
     font-size: 1.1em;
     background: #fc5351;
    margin: 0;
     color: #ffffff;
    font-style: italic;
     color: #333;
}
}


Line 72: Line 61:
     margin-bottom: 40px;
     margin-bottom: 40px;
     overflow: hidden;
     overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-articles:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
}


.featured-articles h2 {
.featured-articles h2 {
     font-size: 2em;
     font-size: 2em;
     color: #333;
     color: #6c0cec;
     border-bottom: 3px solid #e0e0e0;
     border-bottom: 3px solid #e0e0e0;
     padding-bottom: 10px;
     padding-bottom: 10px;
Line 104: Line 87:


.article-carousel::-webkit-scrollbar-thumb {
.article-carousel::-webkit-scrollbar-thumb {
     background: #333;
     background: #fc5351;
     border-radius: 10px;
     border-radius: 10px;
}
}
Line 149: Line 132:
}
}


.article-card {
.article-card a {
     flex: 0 0 300px;
     display: inline-block;
     margin-right: 20px;
     background: #fc5351;
     scroll-snap-align: start;
     color: #000000; /* Changed to black */
     background: #ffffff;
     padding: 8px 15px;
     border-radius: 10px;
     border-radius: 20px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     text-decoration: none;
     overflow: hidden;
    font-size: 0.9em;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     font-weight: 600;
    border: 1px solid #e0e0e0;
    margin: 0 15px 15px;
     transition: background 0.3s, color 0.3s;
}
}


.article-card:hover {
.article-card a:hover {
     transform: translateY(-5px);
     background: #b03a30;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     color: #000000; /* Kept black on hover */
}
}


Line 174: Line 158:
     border: 1px solid #e0e0e0;
     border: 1px solid #e0e0e0;
     margin-bottom: 20px;
     margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
}


.card h2 {
.card h2 {
     font-size: 2em;
     font-size: 2em;
     color: #333;
     color: #6c0cec;
     border-bottom: 3px solid #e0e0e0;
     border-bottom: 3px solid #e0e0e0;
     padding-bottom: 10px;
     padding-bottom: 10px;
Line 206: Line 184:
     text-align: center;
     text-align: center;
     margin-top: 40px;
     margin-top: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}
}


Line 218: Line 189:
     font-size: 2.2em;
     font-size: 2.2em;
     font-weight: 700;
     font-weight: 700;
     color: #333;
     color: #fc5351;
     margin: 0;
     margin: 0;
}
}
Line 228: Line 199:


.cta a {
.cta a {
     color: #333;
     color: #fc5351;
     font-weight: 600;
     font-weight: 600;
     text-decoration: underline;
     text-decoration: underline;
Line 235: Line 206:


.cta a:hover {
.cta a:hover {
     color: #555;
     color: #b03a30;
}
}


Line 246: Line 217:
     margin-top: 40px;
     margin-top: 40px;
     box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
     box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15);
}
}


Line 263: Line 228:
@media (max-width: 768px) {
@media (max-width: 768px) {
     .hero h1 {
     .hero h1 {
         font-size: 2em;
         font-size: 1.8em;
     }
     }
     .hero p {
     .hero p {
         font-size: 1.1em;
         font-size: 1em;
     }
     }
     .contact-message p {
     .hero a {
         font-size: 1em;
         font-size: 1em;
        padding: 10px 20px;
     }
     }
     .featured-articles h2, .card h2, .cta h2 {
     .card h2 {
         font-size: 1.5em;
         font-size: 1.5em;
     }
     }
     .article-card {
     .card p {
         flex: 0 0 250px;
         font-size: 1em;
     }
     }
     .card p, .cta p {
     .cta h2 {
        font-size: 1.8em;
    }
    .cta p {
         font-size: 1em;
         font-size: 1em;
     }
     }
Line 284: Line 253:
@media (max-width: 480px) {
@media (max-width: 480px) {
     .hero h1 {
     .hero h1 {
         font-size: 1.8em;
         font-size: 1.5em;
     }
     }
     .hero p {
     .hero p {
         font-size: 1em;
         font-size: 0.9em;
     }
     }
     .contact-message p {
     .hero a {
         font-size: 0.9em;
         font-size: 0.9em;
        padding: 8px 15px;
     }
     }
     .featured-articles h2, .card h2, .cta h2 {
     .card h2 {
         font-size: 1.3em;
         font-size: 1.3em;
     }
     }
     .article-card {
     .card p {
         flex: 0 0 200px;
         font-size: 0.9em;
    }
    .cta h2 {
        font-size: 1.5em;
     }
     }
     .card p, .cta p {
     .cta p {
         font-size: 0.9em;
         font-size: 0.9em;
     }
     }
}
#ca-viewsource {
    display: none;
}
}

Revision as of 19:52, 5 October 2024

/* MediaWiki:Common.css */

/* Main Page*/

body {
    font-family: 'Arial', 'Noto Sans Devanagari', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: #fc5351;
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
}

.hero p {
    font-size: 1.25em;
    margin: 20px 0;
    font-weight: 300;
}

.hero a {
    display: inline-block;
    background: #ffffff;
    color: #fc5351;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s, color 0.3s;
    border: 2px solid #fc5351;
}

.hero a:hover {
    background: #fc5351;
    color: #ffffff;
}

/* Featured Articles Section */
.featured-articles {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.featured-articles h2 {
    font-size: 2em;
    color: #6c0cec;
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.article-carousel::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.article-carousel::-webkit-scrollbar-thumb {
    background: #fc5351;
    border-radius: 10px;
}

.article-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.article-card {
    flex: 0 0 300px;
    margin-right: 20px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.article-card h3 {
    font-size: 1.2em;
    color: #333;
    margin: 10px 15px;
}

.article-card p {
    font-size: 0.9em;
    color: #555;
    margin: 0 15px 15px;
    line-height: 1.4;
}

.article-card a {
    display: inline-block;
    background: #fc5351;
    color: #000000;  /* Changed to black */
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    margin: 0 15px 15px;
    transition: background 0.3s, color 0.3s;
}

.article-card a:hover {
    background: #b03a30;
    color: #000000;  /* Kept black on hover */
}

/* Info Cards */
.card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.card h2 {
    font-size: 2em;
    color: #6c0cec;
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.card p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: #f4f4f4;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-top: 40px;
}

.cta h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #fc5351;
    margin: 0;
}

.cta p {
    font-size: 1.2em;
    margin-top: 15px;
}

.cta a {
    color: #fc5351;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s;
}

.cta a:hover {
    color: #b03a30;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #ddd;
    margin-top: 40px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer p {
    margin: 0;
    color: #777;
    font-size: 1.1em;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }
    .hero p {
        font-size: 1em;
    }
    .hero a {
        font-size: 1em;
        padding: 10px 20px;
    }
    .card h2 {
        font-size: 1.5em;
    }
    .card p {
        font-size: 1em;
    }
    .cta h2 {
        font-size: 1.8em;
    }
    .cta p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5em;
    }
    .hero p {
        font-size: 0.9em;
    }
    .hero a {
        font-size: 0.9em;
        padding: 8px 15px;
    }
    .card h2 {
        font-size: 1.3em;
    }
    .card p {
        font-size: 0.9em;
    }
    .cta h2 {
        font-size: 1.5em;
    }
    .cta p {
        font-size: 0.9em;
    }
}

#ca-viewsource {
    display: none;
}