/*  Created: 2003/10/25
    File: tictactoe.css
    Author: Sal Ferrarello
    Location: http://www.salogic.net/tictactoe/tictactoe.css
    Web-site: http://www.salogic.net
    Copyright: Some Rights Reserved http://creativecommons.org/licenses/by-sa/1.0/
                                                                                                                */
/* note: 1em is size of one character */


/* Begin styling of tic-tac-toe board */

    #tictactoe /* settings for world's dumbest tictactoe game  */
    {           /* http://www.salogic.net/tictactoe/tictactoe.cgi */
      /*margin-top: 3%;
      margin-bottom: 3%;
      margin-left: 25%;
      margin-right: 3%;*/
      max-width: 40em; /* no more than 40em width, prevents entire text in one line */
    }
    
    #tictactoe table /* needs to specify tictactoe table */
    { 
      border-color: black;
      border: thin;
      border: solid;
    }
    
    #tictactoe td
    {
      margin: 0;
      padding: 0;
      border-color: black;
      border: thin;
      border: solid;
    }
/* End Styling of tic-tac-toe board */

/* ----------------------------------------------------------------------------- */
