info343/homework/4/memory.css

/*
memory.css
Skeleton stylesheet for HW4: Memory
INFO 343, Autumn 2012
Morgan Doocy
*/

body {
   font: 100%/1.2 'Goudy Old Style', serif;
   margin: 0;
}

h1 {
   font-weight: normal;
   margin: .5em 0;
   text-align: center;
}

#board {
   width: 1025px;
   height: 500px;
   margin: 2em auto;
   position: relative;
/*   background-color: fuchsia;*/
   
   /* your styles here */
}

.card {
   width: 150px;
   height: 150px;
   position: absolute;
   border: solid 1px black;
   margin: -1px;
   
   /* your styles here */
}

.card img {
   width: 100%;
   position: absolute;
   
   /* your styles here */
}

/* your styles here */