/*
   New Perspectives on HTML and CSS
   Final Project 
   
   QuizUS Style Sheet
   Author: Claudia Lindsay
   Date:   10/15/2015

   Filename:         quizus.css
   Supporting Files: 

*/
/*Style rule for the quiz table*/

section#main p {
   font-size: 1.2em;
   margin: 20px;
}

p b {
   font-weight: bold;
   font: monospace;
}

#start, #stop {
   display: block;
   width: 150px;
   height: 50px;
   margin: 5px 10px 5px 20px;
   border-width:3px;	
   border-style:groove;
}

#quizclock {
   top: 1px; 
   left: 10px;
   display: block;
   width: 50px;
   height: 50px;
   font-size: 2.2em;
   font-weight: bold;
   color: blue;
   text-align: center;
   margin: 10px auto;
   border-width:3px;	
   border-style:groove;
   -moz-border-radius: 10px;
   -webkit-border-radius: 10px;
   border-radius: 10px;
}

/* Table Styles */

table {
   visibility: hidden;
   float: left;
}


td, th {
   vertical-align: top;
   font-size: 0.9em;
   padding: 5px;
}

form {
   position: relative;
   background-color: white;
   -moz-box-shadow: rgb(101, 101, 101) -20px 0px 20px,
               rgb(101, 101, 101) 20px 0px 20px;
   -webkit-box-shadow: rgb(101, 101, 101) -20px 0px 20px,
               rgb(101, 101, 101) 20px 0px 20px;
   box-shadow: rgb(101, 101, 101) -20px 0px 20px,
               rgb(101, 101, 101) 20px 0px 20px;
}

