/* This is the stylesheet
   for the _Algorithms for Functional Programming_ Web site.
*/

/* John David Stone
   Department of Computer Science
   Grinnell College

   last revised January 13, 2017
*/

/* Use a white background for the document
   and leave a margin around it.
*/

body {
    background: white;
    color: black;
    margin: 6%;
}

/* Underline a link only when the mouse pointer is atop it. */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Provide for a "centered text" environment */

p.centered {
    text-align: center;
}

/* Use a monospace font for e-mail addresses and URLs. */

span.email {
    font-family: monospace;
}

span.url {
    font-family: monospace;
}
