Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Main Page/styles.css

Template page
Revision as of 12:29, 15 October 2025 by Fred (talk | contribs) (Replaced content with "body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 20px; } .button-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; } .button { display: inline-block; padding: 15px 30px; font-size: 18px; font-weight: bold; text-align: center; text-decoration: none; color: white; border-radius: 5px; transition: background-color 0.3s; } .programming-...")
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.programming-languages {
    background-color: #4CAF50; /* Green */
}

.data-science {
    background-color: #2196F3; /* Blue */
}

.machine-learning {
    background-color: #FFC107; /* Amber */
}

.web-development {
    background-color: #FF5722; /* Deep Orange */
}

.cloud-computing {
    background-color: #9C27B0; /* Purple */
}

.button:hover {
    opacity: 0.9;
}