@charset "UTF-8";
@font-face {
  font-family: "SourceSansPro";
  src: url("/fonts/SourceSansPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "SourceSansPro";
  src: url("/fonts/SourceSansPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: "SourceSansPro";
  src: url("/fonts/SourceSansPro-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic; }

body {
  background-color: #1c1d2f;
  color: #ffffff;
  font-family: "SourceSansPro";
  font-size: 13px;
  line-height: 1.2; }

a,
a:visited,
a:hover {
  text-decoration: none;
  color: #ffffff; }

h1 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: 1px solid #36407A;
  color: #6384FF;
  margin-bottom: 10px; }

h2 {
  font-size: 16px;
  color: #6384FF;
  font-weight: bold;
  margin-bottom: 10px; }

h3 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px; }

h4 {
  font-weight: bold;
  margin-bottom: 10px; }

p {
  margin-bottom: 1em;
  line-height: 18px; }

.nav-panel {
  background-color: #2b314e;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 120px;
  box-sizing: border-box; }

.nav-title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  padding: 10px;
  margin-bottom: 1px;
  border-bottom: 1px solid #36407A; }

.nav-button {
  display: block;
  padding: 8px 10px;
  color: #ffffff;
  user-select: none;
  transition-property: background-color;
  transition-duration: 100ms;
  transition-delay: 0;
  transition-timing-function: ease-out; }
  .nav-button::after {
    display: table;
    content: ' ';
    clear: both; }
  .nav-button:hover {
    background-color: #6384FF; }
  .nav-button.selected {
    background-color: #6384FF; }
  .nav-button > .icon {
    margin-right: 10px;
    font-size: 14px;
    vertical-align: middle; }
  .nav-button > .label {
    vertical-align: middle; }

.view-panel {
  position: absolute;
  top: 0;
  left: 120px;
  width: 840px;
  bottom: 0;
  box-sizing: border-box;
  padding: 20px;
  transition-property: opacity;
  transition-delay: 0;
  transition-duration: 100ms;
  transition-timing-function: linear; }
  .view-panel::after {
    position: absolute;
    bottom: 3px;
    left: 20px;
    content: 'Copyright © 2021 ryanc.net';
    color: #27293f; }
  .view-panel.hide {
    opacity: 0; }

.name-desc-panel {
  display: inline-block;
  padding: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  background-color: #36407A;
  float: left;
  width: 210px;
  height: 90px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  transition-property: background-color;
  transition-duration: 100ms;
  transition-delay: 0;
  transition-timing-function: ease-out; }
  .name-desc-panel:hover {
    background-color: #6384FF; }
    .name-desc-panel:hover .desc {
      color: #ffffff; }
  .name-desc-panel .name {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold; }
  .name-desc-panel .desc {
    color: #d4d4d4; }

.panel-group {
  margin-bottom: 10px; }
  .panel-group::after {
    display: table;
    content: ' ';
    clear: both; }
