/* 
BASED OFF THE REALLY NICE "100 bytes of CSS"
at https://www.swyx.io/css-100-bytes  
*/

html {
  max-width: 80ch;
  padding: 1em 1em;
  margin: auto;
  line-height: 1.25;
  font-size: 1.2em;  /* 1em 1.125*/
}

/* CSS Fonts: https://www.w3schools.com/css/css_font.asp    color: #1d1d1d;*/
p,ul,ol,h1,h2,h3,h4,h5,h6 {
  margin: 1em 0 1em; /* 1em 0 0.5em; */
  font-family: "Segoe UI", Roboto, Ubuntu;
}


/* Page background color */
body {background-color: #F2F8FF;}





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


/* blockquote */
blockquote{
  display:block;
  background: #fff;
  padding: 15px 20px 15px 45px;
  margin: 0 0 20px;
  position: relative;
  
  /*Font*/
  font-family: Georgia, serif;   /*   Georgia, serif;   */
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  
  /*Borders - (Optional)*/
  border-left: 15px solid #21528a;    /* #c76c0c */
  border-right: 2px solid #21528a;    /* #c76c0c */
  
  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  
  /*Font*/
  font-family: Georgia, serif;    /*    */
  font-size: 60px;
  font-weight: bold;
  color: #999;
  
  /*Positioning*/
  position: absolute;
  left: 10px;
  top:5px;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #21528a;   /* #c76c0c */
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}



/* BEGIN: Buttons & Their Colors */
/* ============================= */

/* Blue border, lighter blue hover color fill */
.button1 {
  border: #21528a;  /* none; */
  color: white;
  padding: 6px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}
.button1:hover {
  background-color: #98bde6; 
  color: black;
}

.button1 {
  background-color: white;
  color: black;
  border: 2px solid #21528a; /* "blue" */
}

/* Green border, lighter green hover color fill */
.button2 {
  border: #4CAF50;  /* none; */
  color: white;
  padding: 6px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}
.button2:hover {
  background-color: #dcefdc; 
  color: black;
}

.button2 {
  background-color: white;
  color: black;
  border: 2px solid #4CAF50; 
}



/* Other button options - not used? */
.buttongreen {background-color: #4CAF50;} /* Green */
.buttonblue {background-color: #21528a;} /* Blue , was: #008CBA;*/
.buttongreen2 {background-color: #339966;} /* Blue , was: #008CBA;*/
.buttonorange {background-color: #e89f5a;} /* Orange */
.buttonred {background-color: #e2062c;} /* (medium Candy Apple) Red */


/* END: Buttons & Their Colors */



/* Horizontal Line Style */
hr.new1 {
  border-top: 0.5px black;
}


/* BEGIN: Note Blocks */

/*div {
  margin-bottom: 15px;
  padding: 4px 12px;
}*/

.danger {
  margin-bottom: 15px;
  padding: 4px 12px;
  background-color: #ffdddd;
  border-left: 6px solid #f44336;
}

.success {
  margin-bottom: 15px;
  padding: 4px 12px;
  background-color: #ddffdd;
  border-left: 6px solid #04AA6D;
}

.info {
  margin-bottom: 15px;
  padding: 4px 12px;
  background-color: #e7f3fe;
  border-left: 6px solid #2196F3;
}


.warning {
  margin-bottom: 15px;
  padding: 4px 12px;
  background-color: #ffffcc;
  border-left: 6px solid #ffeb3b;
}
/* END: Note Blocks */




/* LINK STYLING */

 a:link {
      text-decoration: none;
}

a:visited {
      text-decoration: none;
}

a:hover {
      text-decoration: none;
}

a:active {
      text-decoration: none;
}

a:hover {
  background-color: #ebedef;    /* #ebedef; */
  font-size: 1.0em;
}






/* END LINK STYLING */



/* NOTES and TODO
=================
1. change link color behavior?
2. https://www.w3schools.com/howto/howto_css_notes.asp
   https://stackoverflow.com/questions/36591613/how-is-the-special-note-box-made-in-readthedocs-org
   ** https://www.w3schools.com/howto/howto_css_notes.asp
   --> https://kevquirk.com/how-to-create-a-simple-html-css-notice-box/
   --> https://alvarotrigo.com/blog/css-alerts/
   --> https://www.elegantthemes.com/blog/divi-resources/how-to-create-styled-content-boxes-in-divi-for-tips-info-warnings-and-more-free-download
   
   https://clickhelp.com/clickhelp-technical-writing-blog/create-note-boxes-in-online-documentation-with-html-and-css/
   https://www.helpndoc.com/
3. ...
*/

/*
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
*/
