/* This CSS file is loaded last */

.year {
  font-size: 1.2em;
}

.full {
  width: 100%;
  padding-right: 0;
  margin: 0;
}

.icon {
  max-width: 15%;
  max-heigh: auto;
}

ul.tag > li {
  list-style-type: circle;
}

li.full {
  line-height: 1.4em;
}

li.year {
  padding-top: 0.75em;  
}

li.month {
  padding-top: 0.5em;  
}

li.month > ul {
  margin-right: 0em;
  padding-right: 0em;
}

li.blog {
  text-indent: -2em;
  margin-left: 4em;
  padding-top: 0.25em;
  margin-right: -2em;
}

li.blog > span.list-date {
  display: inline-block;
  width: 1.2em;
}

header.brand > h3 {
  margin-top: 0.5em;
}

section.list-page > ul.full {
  padding-left: 1em;
}

details > summary {
  margin-top: 1em;
  font-size: x-large;
}

span.taglist {
  font-size: larger;
  font-style: oblique;
}

li.taglist  {
  padding-top: 0.5em;
  padding-bottom: 0.3em;
}

summary > ul.full {
  padding-top: 0.5em;
}

span.tagdate {
  font-size: smaller;
  font-style: oblique;
}

footer.page-footer {
  clear: both;
}

footer.page-footer > ul.page-footer-menu > li {
  font-size: 1.2rem;
  display: inline-block;
  padding-right: 10px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 0;
}

footer.page-footer > ul.page-footer-menu > li > details > summary {
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}

/* TAGS */

:root {
  --tag-background: lightgray;
  --tag-color:black;
  --selected-tag-background: blue;
  --selected-tag-color: white;
}

.tags {
  line-height: 1.5;
}

.tags input[type="checkbox"] {
  opacity: 0;
  width: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.tags label {
  display: inline;
  padding: 1px 4px 1px 4px;
  border-radius: 5px 5px 5px 5px;
  font-size: medium;
  font-weight: normal;
  background: var(--tag-background);
  color: var(--tag-color);
  cursor: pointer;
  position: relative;
}

.tags label:hover {
  background: var(--selected-tag-background);
  color: var(--selected-tag-color);
  /* text-transform: uppercase; */
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tags [id^="tag-"]:checked + label {
  top: 0;
  background: var(--selected-tag-background);
  color: var(--selected-tag-color);
}

ul#tags > li.tag {
  display: none;
  list-style-type: circle;
}

/*
#tags [id^="tag-"]:checked ~ [class^="tag-"] {
  display: block;
}

* {
  margin: 0;
  padding: 0;
}
*/

:root {
  --border-color: #444;
  --selected-tab-text: #fff;
  --selected-tab: #ccc;
  --unsel-tab-color: #444;
}

div#tab-content > svg.resume, img.resume {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

.tabs {
  width: 85%;
  float: none;
  list-style: none;
  position: relative;
  margin-left: 0em;
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tabs li {
  float: left;
  display: block;
}

.tabs input[type="radio"] {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.tabs label {
  display: block;
  padding: 0.5em 1em;
  border: 2px solid var(--border-color);
  border-radius: 5px 5px 0 0;
  font-size: smaller;
  font-weight: normal;
  text-transform: uppercase;
  background: white;
  color: var(--unsel-tab-color);
  cursor: pointer;
  position: relative;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tabs label:hover {
  background: var(--selected-tab);
  color: var(--selected-tab-text);
}

.tabs .tab-content {
  z-index: 2;
  display: none;
  /* overflow: hidden; */
  width: 100%;
  font-size: small;
  line-height: 0.5em;
  padding: 2px;
  position: absolute;
  top: 3em;
  left: 0;
  background: var(--selected-tab);
}

.tabs [id^="tab"]:checked + label {
  top: 0;
  padding-top: 0.75em;
  background: var(--border-color);
  color: var(--selected-tab-text);
}

.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

