
/* setting the css properties downstream of the post class
 * in the /layouts/about/single.html doesn't have an
 * effect on the sytlization of the pages. 
 *
 * I believe that the only way to sytlize these pages is 
 * directly in the html, or through the use of scss
 * which I do not have the know how in that subject.
 *
 * For this reason you will find that in this current version
 * of the website and subsequent version the use of shadeColumn
 * set to true in the hugo.toml file
 *
 *
 *
 * */

.darkend {
  
  [data-theme=dark] & {
    background-color: $dark-background;
    color: $dark-color;
  }

  [data-theme=light] & {
    background-color: $light-background;
    color: $light-color;
  }
}
.kali .mac { 
  background-color: rgba(0, 0, 0, 0.5);
  /*color: darkgrey;*/
  color: #B4AEA6;

}
.windows-kali .windows { 
  background-color: rgba(0, 0, 0, 0.0);
  /*color: darkgrey;*/
  color: black;

}
