@charset "UTF-8";

/**
 * SCSS definition file for the screen header.
 * 
 * ・Change log
 * | update date | author            | summary                              |
 * | :-----------| :---------------- | :----------------------------------- |
 * | 2019/03/26  | Yoichi Inoue      | Create                               |
 * 
 * @file
 * 
 * A file that defines SCSS as the screen header.
 * 
 * @author    Yoichi Inoue
 */

/* CSS Document */

.header,
.footer {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 10px 30px;
  text-align: left;
}

.header .logo,
.footer .logo {
  height: 30px;
  margin-right: 10px;
}

.header .dropdown-item {
  color: #505050;
}

.dropdown-item:active {
  background-color: #f8f9fa;
}

.header .dropdown-toggle::after {
  vertical-align: 0.1em;
}

/* header */

.header {
  background-color: #000044;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

.header * {
  color: #FFF;
}

.header .right > span {
  margin-left: 20px;
}

/* footer */

.footer {
  background: #000;
  font-size: 90%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.footer * {
  color: #FFF;
}

.footer .copylight,
.footer .version {
  font-size: 70%;
  opacity: 0.7;
}

