/* Bildschirmarbeiter CSS */

a {
  color: #666666;
}

a:visited {
  color: #666666;
}

a:active,
a:hover {
  color: #0099ff;
}

body {
  background-color: #333333;
  color: #666666;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  height: 100%;
  line-height: 1.5rem;
}

footer {
  background-color: #ffffff;
  border-top: solid 1px #999999;
  color: #999999;
  font-size: 0.8rem;
  padding: 20px;
}

footer > div {
  display: flex;
  justify-content: space-between;
}

header {
  background-color: #ffffff;
  border-top: solid 10px #333333;
  padding: 5px 20px 5px 20px;
}

html {
  height: 100%;
  overflow-y: scroll;
}

h1 {
  line-height: 2.5rem;
}

hr {
  border: 0;
  height: 1px;
  background: #999999;
  margin-top: 20px;
}

main {
  background-color: #fefefe;
  border: 2px #999999;
  flex: 1 0 auto;
  padding: 0 20px 20px 20px;
}

nav {
  padding: 0;
}

nav > ul {
  padding: 0;
  list-style-type: none;
}

nav > ul > li {
  float: left;
  font-weight: bold;
  padding: 0 1em 0 0;
}

nav > ul > li div {
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
}

nav > ul > li div {
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
}

nav > ul > li > a {
  text-decoration: none;
}

nav > ul > li.active > a {
  color: #0099ff;
  text-decoration: none;
}

nav > ul > li.bildschirmarbeiter div {
  background: url(../images/header.svg) no-repeat center;
  background-size: 50px 50px;
  width: 50px;
}

nav > ul > li.bildschirmarbeiter div * {
  opacity: 0;
}

nav > ul > li.github div {
  background: url(../images/mark-github.svg) no-repeat center;
  background-size: 30px 30px;
  width: 30px;
}

nav > ul > li.github div * {
  opacity: 0;
}

section.tags > span {
  display: none;
}

section.tags > ul {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section.tags > ul > li {
  display: inline;
  padding: 0.2rem;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 60px);
}

@media only screen and (min-width: 1000px) {
  .container {
    width: 960px
  }
}

.has-shadow {
  box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.info:before {
  color: #0099ff;
  content: "\e196";
  font-family: "Glyphicons Regular";
  font-style: normal;
  font-size: 2rem;
}

.is-max-100 {
  max-width: 100%;
}

.is-max-50 {
  max-width: 50%;
}

.tag {
  text-decoration: none;
}

.tag:before {
  content: "\e066";
  font-family: "Glyphicons Regular";
  font-style: normal;
  padding: 0 0.2em 0 0;
}

.tag-list {
  column-count: 3;
  list-style-type: none;
}

.two-columns {
  column-count: 2;
}

.three-columns {
  column-count: 3;
}