/*
  Claw Development System, Online platform
  (c) 2016 Benedikt Muessig
  All Rights Reserved

  Background patterns generously provided by subtlepatterns.com
  Fonts generously provided by Google Inc.
*/

@import 'https://fonts.googleapis.com/css?family=Montserrat';

* {
  box-sizing: border-box;
}

body {
  min-width: 600px;
  background-color: #222222;
  background-image: url("./assets/crissXcross_light.png");
  padding: 0px;
  margin: 0px;
  font: 12pt 'Montserrat', sans-serif;
}

a.button, a:visited.button {
  display: inline-block;
  padding: 10px 14px;
  margin: 3px 2px;
  background-color: rgb(255, 255, 0);
  border: 1px rgb(255, 204, 0);
  color: rgb(0, 0, 0);
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.50);
}

a, a:visited {
  text-decoration: none;
  border-bottom: 1px dashed rgb(255, 51, 0);
  color: rgb(255, 51, 0)
}

a:hover {
  color: rgb(255, 92, 51);
  border-bottom: 1px dashed rgb(255, 92, 51);
}

a:hover.button {
  background-color: rgb(255, 255, 128);
  border: 1px rgb(255, 204, 0);
  color: rgb(0, 0, 0);
}

a.button .icon {
  height: auto;
  margin-right: 10px;
}

#header {
  position: relative;
  display: block;
  height: 200px;
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  padding: 10px 5px;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 4px 30px -4px rgba(0, 0, 0, 0.50);
  border-top: 10px solid rgb(255, 255, 0);
}

#header #logo {
  position: absolute;
  left: 10px;
  top: 10px;
}

#header #title {
  position: absolute;
  top: 20px;
  left: 130px;
  max-width: 80%;
  max-height: 170px;
  overflow: hidden;
  color: white;
  font-size: 2em;
}

#header #navigation {
  position: absolute;
  bottom: 5px;
  right: 2px;
  height: 55px;
  max-width: 80%;
  overflow: hidden;
  font-size: 1em;
  color: white;
}

#content {
  position: relative;
  width: 100%;
  height: auto;
  margin: 10px 0px;
  padding: 2px 0px;
}

#content .bar-yellow {
  display: block;
  width: 100%;
  min-height: 20px;
  margin: 10px 0px;
  padding: 3px 20px;
  background-color: rgba(255, 255, 0, 0.8);
}

#footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 4px 30px -4px rgba(0, 0, 0, 0.50);
  color: white;
}

#footer #main {
  display: block;
  font-size: 1em;
  color: rgb(255, 255, 255);
}

#footer #secondary {
  display: block;
  font-size: 0.75em;
  color: rgb(128, 128, 128);
}
