﻿/*

Author: Thomas Turnasella
Project: CST 161 Final - Fall 2022
Due Date: 12/20/22
File: homeStyles.css

CSS Stylesheet exclusively for the Events page

*/

#eventMain

{
    display: flex;
    align-items: flex-start;
    width: 85%;
    background-color: navajowhite;
    margin: 2em 5em;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

/* Month NavBar Styles */

#eventNav

{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
    width: 15%;
    background-color: darkolivegreen;
    margin: 7.5em 0em 0em 1.5em;
    padding: 0.5em;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

#eventNav button

{
    width: 80%;
    color: cornsilk;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    text-decoration: none;
    background-color: darkgreen;
    padding: 0.5em;
    margin: 5px 0px;
    border: 2px solid darkolivegreen;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;

    /* Hover Animation*/
    transition: color 0.5s, background-color 0.5s, border-color 0.5s;
}

#eventNav button:hover

{
    color: gold;
    background-color: green;
    border-color: gold;
}

/* Event Table Styles */

#calendar

{
    width: 80vw;
    height: 55vw;
    border: none;
}