﻿/* CSS Style Sheet for Homework #3

     Course Name: ITWP 2300 ASPnet
     Assignment: Homework #3
     
     Author: Edith Harvey
     Date: 10/9/22

    Assignment Notes: There was an extra credit portion on this assignment to see the buttons tabled.
        There was also a requirement to get the information to show below each table.
        I could get the information to show below the entire table, but not each individual item's cells.
        I only played with the tables a little bit because previous attempts of mine broke the code for the main purpose.
*/

/* body main style, sets up text color, font sizes and types */
body {
    font-family: "Comic Sans MS", "Century Gothic", Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000 /* black text */;
    background-color: lightgrey;
}

/* Table settings for background color , width, border (type, size and color) */
table {
    background-color: #ffffff; /* white */
    width: 680px;
    text-align: center;
    border: double 5px darkblue;
}
/* td settings to center bold, etc */
td {
    text-align: center;
    color: darkblue;
    vertical-align: auto;
    background-color: lightyellow;
}