:root {
  --color-text-100: #F5F6F4;  /* primary text */
  --color-text-80:  #C9CBC6;  /* secondary text */
  --color-text-60:  #9A9D97;  /* tertiary / muted */

  --color-bg-100:   #0F1110;  /* main background */
  --color-bg-80:    #161917;  /* elevated surfaces */
  --color-bg-60:    #1C1F1D;  /* subtle contrast */

  --color-border:   #2A2E2B;  /* dividers */
}
:xroot {
    --color-border: rgb(25, 25, 24);

    --color-bg-100: #111;
    --color-bg-80: #222;
    --color-bg-60: #333;

    --color-text-100: #fff;
    --color-text-80: #fff;
    --color-text-60: #fff;
}
.grey {
    color: #666;
}

#header {
    height: 60px;
    background:var(--color-bg-100);
}

#content-left {
    position: fixed;
    left: 0;
    width: 240px;
    bottom: 0;
    top: 60px;
    padding: 20px;

}

#content {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    overflow: auto;
}

#content.has-left {
    left: 240px;
}

#logo {
    background-image: url(/static/img/icon.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    line-height: 60px;
    padding-left: 50px;
    font-size: 26px;
    height: 60px;
    color: #fff;
    text-decoration: none;
}

#header a:hover {
    text-decoration: none;
}

#header .nav {
    float: right;
}

#header .nav a {
    float: left;
    line-height: 30px;
    margin: 15px 20px 15px 0;
    padding: 0 10px;
    border-radius: 2px;
    font-weight: 600;
}

#header .nav a.text {
    color: var(--color-text-100);
}
#header .nav a.text:hover {
    background-color: var(--color-bg-60);
}

#footer-links {
	margin-top:40px;
	font-size:11px;
	color:var(--color-text-60);
	text-align:center;
}
#footer-links a {
	font-size:11px;
	color:var(--color-text-60);
}
