/* 
 * theme_doku.css
 * Theme for https://www.monperrus.net/martin/
 * @license: GPL
 * 
 */

@import 'https://fonts.googleapis.com/css?family=Special+Elite';
@import 'https://fonts.googleapis.com/css?family=Inconsolata';


pre {
    white-space: pre-wrap;
}


body {
 line-height:1.1;
 /* width:700px; */
 max-width: 800px;
 font-size: 16px;
 margin:20px auto; 
 margin-top:0px;
 /* text-align:justify; */
 /* font-family: arial,helvetica,clean,sans-serif; */
  font-family: 'Inconsolata', monospace; 
}

.content {
margin-top:20px;
}

.archive-post-title {
font-size:140%;
margin-right: 4px;
}

.archive-preview {
margin-top:12px;
}

.archive-entry {
margin:8px;
padding:4px;
border: 1px solid;
}

.gakowiki_footer,  .gakowiki_header {
  /* text-align:right; */
  clear:both;
  margin-top:10px;
  margin-bottom:10px;
  font-size:80%;
  border-top:1px solid;
  border-bottom:1px solid;
  padding:0.1em 0.15em;
}

.titlephoto {
 float:right;
 margin-left: 25px;
}


form {
display: inline;
}

.button {
border:0px;
/*vertical-align:middle;*/
text-decoration:none;
font-size:100%;
cursor:pointer;
margin:0px;
padding:0px;
}


/* for bibtexbrowser */
ul.result {
  list-style-type: square;
  padding-left: 15px;
}
/*.result>li {
  padding-left: 0px;
}*/

h1 {
  /* h1 is the top header / title */
  /* border-top:1px solid; */
  border-bottom:1px solid;
  font-size:200%;
  font-weight:bolder;
  text-align:left;
  vertical-align:middle;
  margin-bottom:0px;
  margin-top:1px;
  padding-top:12px;
  padding-bottom:12px;
}

h1 a, h2 a { text-decoration:none; }

h2 {
/* h1 is the section header */
font-size:160%;
font-weight:normal;
margin:0 0 1em 0;
padding:0.5em 0 0 0;
border-bottom:1px solid;
clear:left;
}


h3{
/* h3 is the subsection header in latex */
font-size:130%;
border-bottom:1px dashed;
}


/* h4{font-size:100%;border-bottom:none;} */

.gakowiki_engage {
  font-weight : 200;
  font-style:italic;
  /* font-size:80%; */
}

ul { margin-top: 0; }

.tags { display: inline; } 
.tags ul { list-style: none outside none; display: inline; margin: 0; /*margin-right: 5px;*/ padding: 0;}
.tags  li { display: inline; margin-left: 4px; margin-left: 4px;  padding: 0;}

.addthis_toolbox {
display:inline;
margin-left:15px;
}

.at300bs {
float:right;
}



/** responsive menu from https://www.w3schools.com/howto/howto_js_topnav_responsive.asp */

 /* top navigation */
.topnav {
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}


/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
} 

 /* When the screen is less than 600 pixels wide, hide all links. Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:last-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} 





/* Martin 2026 everything green on black */
body {
  background-color: #282828;
  color: #66FF66;
}
a {
    color: #009900; /* Darker green for normal links */
    text-decoration: none; /* Remove underline from links */
}

a:hover {
    color: #66FF66; /* Lighter green for hover state */
    text-decoration: underline; /* Underline on hover for emphasis */
}
