@import "indigo-pink.css";

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/images/MaterialIcons-Regular.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

/* Master Styles */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
/* . . . */
/* everywhere else */
* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}
h1 {
  color: #369;
  font-size: 250%;
}
h2 {
  color: #456;
  font-size: 170%;
  font-weight: lighter;
}
h3 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 2.2em;
    padding: 0.2em 0.5em;
    margin: 0;
    font-weight: bold;
    color: whitesmoke;
    background-color: #1e1e1e;
    min-height: fit-content;
    vertical-align: middle;
}
h4 {
    background-color: #414042;
    color: whitesmoke;
    font-weight: bolder;
}
nav {
  display: block;
  width: 100%;
  padding-bottom: 2px;
  margin: 0;
  background-color: #fcfcf8;
  border-bottom: thin lightgrey solid;
}
nav a {
  display: inline-block;
  background-color: #607D8B;
  color: white;
  padding: 0.1em 0.4em;
  margin: 0;
  border-bottom-left-radius: 0.3em;
  border-bottom-right-radius: 0.3em;
}
a {
  color: inherit;
  background-color: inherit;
  text-decoration: none;
}
nav a.active {
  background-color: #406870;
  color: #f0b0c0;
}
nav a:hover {
  color: #e8b8c8;
}

button {
    padding: 0;
    margin: 0;
    border: none;
}
h3 button {
    padding: 0.3em 0.7em;
    margin: 3px 1em;
    font-family: inherit;
    font-weight: bolder;
}

div.editrow, div.displayrow {
    display: block;
    vertical-align: top;
    padding: 0.1em;
}
div.editrow label {
    margin-top: 0.2em;
}

#banner {
    display: block;
    width: 100%;
    height: 48px;
    border-bottom: thin solid #ddd;
    /* background-color: #f04e98;*/
    background-color: #1b1b1b;
    /* background-color: #afd4ce; */
    text-align: right;
}

#banner #title,
#banner #username {
    display: inline-block;
    line-height: 48px;
    margin-left: 1em;
    margin-right: 0.3em;
    font-size: 120%;
    font-weight: bolder;
    color: #f0f0f0;
    /* border: thin lightgrey solid; */
}
#banner #username {
    display: none;
}
#content {
    width: 100%;
    box-sizing: border-box;
    max-width: available;
}

ul {
    margin-block-start: unset;
    margin-block-end: unset;
    padding-inline-start: unset;
}

@media screen and (min-device-width: 800px) {
    #content {
    }
    #banner #username {
        display: inline-block;
    }
}
