@import url("https://search.webdepozit.sk/webarchiv/public/20201006204814/https://fonts.googleapis.com/css2?family=Inconsolata&display=swap");
@import url('https://search.webdepozit.sk/webarchiv/public/20201006204814/https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
:root {
  --red: #C5004A;
  --darkred: #7F0036;
  --lightgray: #e0e0e0;
  --gray: #C0C0C0;
  --darkgray: #333;
  --navy: #17050e;
  --blue: #082840;
  --white: #fff;
  --headerLeftBorder: slateblue;
  --header: mediumslateblue;
}
::selection{
  background: #ec407a;
  color: white;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 2px 3px 6px rgba(0, 0, 0, 0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: #CDDC39;
  outline: 1px solid slategrey;
}

* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  font-family:'Open Sans',sans-serif;
  color: var(--darkgray);
  background-color: var(--white);
  font-size: 18px;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  height:100%;
  width:100%;
}

article{
   min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
}
/* For below link transition */
a{
  position: relative;
}
a::after,a::before{
    content: '';
    display: block;
    height: .5em;
    transform: scaleX(0);
    position:absolute;
    left: 0;
    right: 0;
    bottom: 0em;
  z-index: 40;
  transform-origin: 0 50%;
  transition: transform .5s cubic-bezier(.86,0,.07,1);
  background:hsla(54 100% 62% / .5);
 
}
a:hover::after, a:hover::before{
  transform: scaleX(1);
}

#homeLink{
 color: white !important;
}


p:last-child {
  margin-bottom: 0;
}

p {
  grid-column: 2;
}

img {
  grid-column: 2 / 3;
  width: 100%;
  max-width: 100ch;
  justify-self: center;
}

.tmpl-post > *,.tmpl-home > * {
  grid-column: 2;
}

.postCountHeading{
  grid-column: 2;
}

p,
.tmpl-post li {
  line-height: 1.1;
}

a[href]:visited {
  color: var(--navy);
}

main, .tmpl-post,.tmpl-home{
  display: grid;
  grid-template-columns: minmax(1.2rem, 1fr) minmax(auto, 70ch) minmax(1.2rem, 1fr);
  grid-template-rows: inherit;
}

header {
  border-left: 40px solid var(--headerLeftBorder);
  background: var(--header);
   background-size: 5px 5px;
  padding:0;
}

header:after {
  content: "";
  display: table;
  clear: both;
}

table {
  margin: 1em 0;
}
table td,
table th {
  padding-right: 1em;
}
pre{
 grid-column: 1/4 !important;
  width: 100%;
}

pre,
code {
  font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
  line-height: 1.5;
}
pre {
  line-height: 1.375;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  padding: 1em;
  background-color: #f6f6f6;
}
.highlight-line {
  display: block;
  padding: 0.125em 1em;
  text-decoration: none; /* override del, ins, mark defaults */
  color: inherit; /* override del, ins, mark defaults */
}

/* allow highlighting empty lines */
.highlight-line:empty:before {
  content: " ";
}
/* avoid double line breaks when using display: block; */
.highlight-line + br {
  display: none;
}

.highlight-line-isdir {
  color: #b0b0b0;
  background-color: #222;
}
.highlight-line-active {
  background-color: #444;
  background-color: hsla(0, 0%, 27%, .8);
}
.highlight-line-add {
  background-color: #45844b;
}
.highlight-line-remove {
  background-color: #902f2f;
}

/* Header */
.home {
  float: left;
  background: var(--header);
   background-size: 5px 5px;
  bottom:0;
  font-weight:100;
  color: white;
}
.home :link:not(:hover) {
  text-decoration: none;
}

/* Nav */
.nav {
  padding: 0;
  list-style: none;
  float: right;
  margin-left: 1em;
}
.nav-item {
  display: inline-block;
  margin-right: 1em;
}
.nav-item a[href]:not(:hover) {
  text-decoration: none;
}
.nav-item-active {
  font-weight: 700;
  text-decoration: underline;
}

/* Posts list */
.postlist {
  list-style: none;
  padding: 0.5em;
  width: 100%;
}

li.postlist-item {
    width:100%;
}
.postlist-item {
  display:block;
}
.postlist-item:before {
  display: inline-block;
  pointer-events: none;
  line-height: 100%;
  text-align: right;
}
.postlist-date,
.postlist-item:before {
  font-size: 0.8125em; /* 13px /16 */
  color: var(--darkgray);
}
.postlist-date {
  word-spacing: -0.5px;
}
.postlist-link {
  display: inline-block;
  padding: 0.25em 0.1875em; 
}
.postlist-item-active .postlist-link {
  font-weight: bold;
}
.tmpl-home .postlist-link {
  font-size:1.1em; 
  font-weight: 700;
}


/* Tags */
.post-tag {
  display: inline-block;
  vertical-align: text-top;
  text-transform: uppercase;
  font-size: 0.625em; 
  padding: 2px 4px;
  margin-left: 0.8em; 
  background-color: var(--red);
  color: var(--white);
  border-radius: 0.25em; 
  text-decoration: none;
}
a[href].post-tag,
a[href].post-tag:visited {
  color: #fff;
}

/* Warning */
.warning {
  background-color: #ffc;
  padding: 1em 0.625em; 
}
.warning ol:only-child {
  margin: 0;
}

/* Direct Links / Markdown Headers */
.direct-link {
  font-family: sans-serif;
  text-decoration: none;
  font-style: normal;
  margin-left: .1em;
}
a[href].direct-link,
a[href].direct-link:visited {
  color: transparent;
}
a[href].direct-link:focus,
a[href].direct-link:focus:visited,
:hover > a[href].direct-link,
:hover > a[href].direct-link:visited {
  color: #aaa;
}


footer {
   height: 80px;
   width:100%;
   background: royalblue;
   margin-top: auto;
   padding-left: 40px;
   display: flex;
   align-items: center;
  color: white;
}






/*
     FILE ARCHIVED ON 20:48:14 Oct 6, 2020 AND RETRIEVED FROM THE
     AN OPENWAYBACK INSTANCE ON 12:14:40 Sep 23, 2025.
     JAVASCRIPT APPENDED BY OPENWAYBACK, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
