﻿/*

Author: Thomas Turnasella
Project: CST 161 Final - Fall 2022
Due Date: 12/20/22
File: homeStyles.css

CSS Stylesheet exclusively for the Calendar items

*/

/* Event Table Styles */

@font-face /* Custom WebFont */

{
    font-family: titleFont;
    src: url('../fonts/bolton.ttf');
}

body

{
    font-family: Verdana, Geneva, sans-serif;
    font-size: 100%;
    font-weight: inherit;
    line-height: 1.2em;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

#eventTable

{
    width: 85%;
    border-collapse: collapse;
    border: 5px solid chocolate;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background-color: cornsilk;
    margin: 1em 2em;
}

#eventTable td.lastMonth

{
    background-color: darkgray;
}

span.date

{
    color: chocolate;
}

#eventTable th

{
    color: cornsilk;
    background-color: chocolate;
    padding: 0.5em;
    width: 15%;
}

#eventTable td

{
    height: 100px;
    vertical-align: text-top;
    padding: 0.25em;
}

#eventTable caption

{
    font-size: 36px;
    font-family: titleFont;
    letter-spacing: 3px;
    color: cornsilk;
    background-color: darkolivegreen;
    padding: 0.5em 1em;
    margin: 0em 0em 0.75em 0em;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}