<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('normalize.css');
@import url('fonts/LibreBaskerville.css');

body
{
  background: white;
  color: black;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  font-family: 'LibreBaskerville', serif;
}
h1, h2, h3, h4, h5, h6
{
  margin: 5px 0 5px;
  text-align: center;
}

h1 { font-size: 150%; margin: 2rem 0 2rem }
h2 { font-size: 140% }
h3 { font-size: 130% }
h4 { font-size: 120%; }
h5 { font-size: 110%; }
h6 { font-size: 100%; }

@media (max-width: 500px)
{
  h1 { margin: 0; font-size: 130% }
  h2 { font-size: 125% }
  h3 { font-size: 120% }
  h4 { font-size: 115%; }
  h5 { font-size: 110%; }
  h6 { font-size: 100%; } 
}
  


/*
 * Overall page layout
 *   +-----------------body-----------------------+
 *   | +-----------------header-----------------+ |
 *   | |      +------------nav----------+       | |
 *   | |      |                         |       | |
 *   | |      +-------------------------+       | |
 *   | +----------------------------------------+ |
 *   | +------------------main------------------+ |
 *   | |                                        | |
 *   | +----------------------------------------+ |
 *   +--------------------------------------------+
 */


/* contains nav information, full width, colour background or images */
header
{
  height: 200px;
  height: clamp(50px, calc(20px + 15vw), 200px);
  background: blue;
  background-image: url('images/harebells1.jpg');
  background-size: cover;
  background-position: top; /* center; */
}

header div.title
{
  font-size: 300%;
  font-size: calc(75% + 3.5vw);
  height: 60%;
  
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 0 1rem;
  background: linear-gradient(rgba(0,0,255,0.2), rgba(0,0,0,0));
  color: white;
}

/* contains nav buttons or icon, set positioning */
nav
{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 40rem;
  margin: auto;
  text-align: center;
  font-family: sans-serif;
  padding: 1rem 0.5rem;
}


/* under nav header, all page content between header and footer */

main
{
  padding: 5px;
  background: #fff8e8;
  color: black;
}

/*
  For smaller page layouts, puts text in cntre with no margin problems.
  For larger page layouts, enables block elements side by side 
*/
main div.layout
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



/* buttons for wide screen menu */
nav a
{
  display: block;
  font-size: 100%;
  text-decoration: none;
  width: max-content;
  padding: 2px 0;
  color: black;
  text-align: center;
}

nav a:hover
{
  background: #edc;
  color: black;
}

nav a.selflink, nav a.selflink:hover
{
  border-bottom: 2px solid black;
}

/* hide small menu and icon for wide screen */
nav.small { display: none }
div.menuicon { display: none }
div.menuiconcontainer { display: none }

/* Nav menu changes for small screen */

@media (max-width: 650px)
{
  nav a { font-size: 90% }
}

@media screen and ( max-width: 550px )
{
  nav { display: none }
  /* contains site name/logo and hamburger icon */
  nav.small 
  { 
    display: block; 
    text-align: center;
    padding: 10px;
    min-height: 30px;
  }
  /* styles for dropdown menu */
  nav a 
  { 
    display: block;
    margin: 10px auto;
    width: 100%;
  }

  /* menu icon ("hamburger") and 'menu' text if shown */
  div.menuiconcontainer, div.menuiconcontainer a
  { 
    background: none;
    display: block; 
    float: right;
    color: black;
    text-decoration: none;
    font-size: 90%;
  }


  div.menuicon
  {
    background: none;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    height: 20px;
  }

  div.menuicon div.menuline
  {
    display: block;
    margin: 3px;
    height: 3px;
    width: 18px;
    background: black;
  }
}


/*********** reqvars debug info *******/
table.reqvars { margin: 5px 0 }
table.reqvars tr td
{
  font-size: 90%;
  font-family: monospace;
  vertical-align: top;
  background: white;
  color: black;
  border: 1px solid #ccc;
  padding: 2px;
}


/*********** message and error boxes ***********/
div.errorbox, div.msgbox
{
  width: max-content;
  max-width: 90%;
  margin: 10px auto;
  padding: 10px;
  background: white;
  font-family: sans-serif;
}

div.errorbox
{
  border: 2px solid #900;
  color: #900;
}
div.msgbox
{
  border: 2px solid #090;
  color: #090;
}

div.constructionbanner
{
  border: 4px solid #fc0;
  background: #fec;
  color: #900;
  padding: 5px;
  width: 40%;
  margin: auto;
  min-width: 280px;
}

div.constructionbanner p { margin-bottom: 0 }

/***************** navigation and action buttons **********/

/*
 * actionbutton and navbutton are implemented as a form
 * default form is display:block with no margins 
 */

/* vertical space between buttons */
form.spacedbutton
{
  margin-top: 10px;
  margin-bottom: 10px;
}

form.centrebutton
{
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

/* inline with 10px gap */
form.inlinebutton 
{ 
  display: inline-block; 
  width: max-content; 
  margin-right: 20px;
}

form.delbutton input[type=submit]
{ background: linear-gradient(white, #f99); }

form.greenbutton input[type=submit], form.editbutton input[type=submit]
{ background: linear-gradient(white, lightgreen) }


/* adapt the examples above for other coloured buttons */


/**** text boxes ****/

div.text
{
  box-sizing: border-box; 
  max-width: 45rem;
  background: white;
  padding: 3rem 5rem;
  margin: 2rem 0;
  border-radius: 5px;
  line-height: 1.6;
  color: #440;
}
@media (max-width: 700px)
{
  div.text { padding: 2rem 2rem }
}

div.centred
{
  margin: 10px auto;
}

div.text.wide
{
  max-width: 60rem;
  padding: 3rem 1rem;
}

div.highlight
{
  border: 3px solid green;
}

@media (max-width: 500px)
{
  div.text 
  { 
    font-size: 95%;
    line-height: 1.5;
    padding: 0.5rem; 
    margin: 0 
  }
}

/********** DataRec class and derivatives: form components ********/

form input[type=submit] { font-family: sans-serif}

div.formwrapper 
{ 
  background: #ddc; 
  padding: 0.5em;
}

form.datarec_form div.form_input_pair 
{ 
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin: 5px 0; 
  padding: 5px 0; 
  background: #bba;
  font-family: sans-serif;
}

div.form_input_pair div.label { padding-left: 0.5em }

div.form_input_pair div.input input,
div.form_input_pair div.input textarea { width: 95% }

form.datarec_form input[type=submit]
{
  margin: 10px 0;
}


div.form_input_pair div.input input[type=radio], 
div.form_input_pair div.input input[type=checkbox]
{
  width: 20px;
}

form.datarec_form input.escode { display: none }

form.datarec_form div.form_input_pair div.info
{ 
  color: #060;
  background: #eed;
  font-style: italic;
  text-align: left;
  grid-column-start: 2;
  grid-column-end: 3;
  padding-left: 10px;
}

@media (max-width: 500px)
{
  form.datarec_form div.form_input_pair div.info
  {
    grid-column-start: 1;
    grid-column-end: 3;
  }  
}

form.datarec_form div.form_input_pair div.error
{
  color: red;
  background: white;
  font-style: italic;
  text-align: center;
  border: 2px solid #fcc;
}

form.datarec_form input[type=submit]
{
  background: linear-gradient(white, lightgreen);
}

@media (max-width: 500px)
{
  form.datarec_form div.form_input_pair
  {
    grid-template-columns: 1fr;
  }
  
}

/********************** Authenticator (login) forms ***************/

div.auth_form 
{ 
  width: 90%; 
  max-width: 500px;
  margin: 0 auto; 
  padding: 10px;
  background: #ccf;
} 
div.auth_form input { width: 90%}
div.auth_form input[type="submit"] { width: max-content }
div.auth_form table tr td { padding: 0 2px }
div.auth_error { color: red; background: white; padding: 5px }


div.address
{
  margin: 20px auto 30px;
  padding: 10px;
  border: 1px solid #999;
  background: #eee;
  width: max-content;
  min-width: 200px;
  border-radius: 10px;
  font-family: sans-serif;
}

ul li
{
  list-style-image: url('images/harebell-icon-16.png');
}

div.harebell-footer
{
  width: 600px;
  max-width: 100%;
  margin: 10px auto;
  font-style: italic;
  text-align: center;
  background: white;
}

div.harebell-footer img
{
  display: block;
  width: 100%;
}
 
div.footerbuttons 
{
  width: max-content;
  font-family: sans-serif;
  background: #ddd; 
  margin: 20px auto 0;
  padding: 2px 10px;
  text-align: center;
  border-radius: 5px;
}

form.loginbutton
{
  display: inline-block;
  width: max-content;
}


</pre></body></html>