/** R.H. - 1/15/16 - Portfolio **/

/* General styles for portfolio */
html, body {
  font-family: 'Roboto', 'Helvetica', sans-serif;
}

/** Fixed left drawer with avatar, information, and main navigation **/

/* Drawer styles */
.drawer {
  border: none;
}
.layout .mdl-layout__header .mdl-layout__drawer-button {
  color: rgba(0, 0, 0, 0.54);
}
/* iOS Safari specific workaround */
.drawer .mdl-menu__container {
  z-index: -1;
}
.drawer .navigation {
  z-index: -2;
}
/* END iOS Safari specific workaround */
.drawer .mdl-menu .mdl-menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-header {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 16px;
  /*
  height: 151px;
  */
  height: auto;
}

/* Avatar */
.mdl-layout__drawer .avatar {
  margin-bottom: 16px;
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  border:1px solid #dddddd;
}

/* Hello message */
.hello {
  margin-bottom: 0px;
}

/* Main navigation */
.navigation {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.layout .navigation .mdl-navigation__link {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 500;
  padding:10px 30px;
}
.layout .navigation .mdl-navigation__link:hover {
  background-color: #00BCD4;
  color: #37474F;
}
.navigation .mdl-navigation__link .material-icons {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.56);
  margin-right: 32px;
}

/* LinkedIn and Github buttons fixed at bottom of viewport */
.social a {
  background-color: #37474f;
}
.social a:hover {
  background-color: #5F7B89;
}
#social-linkedin, #social-github {
  position: fixed;
  display: block;
  right: 0;
  bottom: 0;
  margin-right: 40px;
  margin-bottom: 20px;
  z-index: 900;
}
#social-github {
  right: 110px;
}

/* Main content */
.content {
  max-width: 1480px;
}

/* Home page with projects */
.section-header {
  font-size: 23px;
  color: #333333;
  margin: 10px 0px;
}
section.project {
  padding: 0px 10px;  
  margin: 0px 10px 30px 0px;
}
h3.project-header {
  font-size: 20px;
  margin: 10px 0px;
  color: #333333;
}
.project-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
