@font-face {
    font-family: icons;
    src: url("/static/icon/icons.ttf?v=4");
}

span.icon {
    font-family: "icons";
}

span.icon-settings::before {
    font-family: "icons";
    content:"0";
}

span.icon-link::before {
    font-family: "icons";
    content:"1";
}

span.icon-logout::before {
    font-family: "icons";
    content:"2";
}

span.icon-twitter::before {
    font-family: "icons";
    content:"#";
}

span.icon-twitch::before {
    font-family: "icons";
    content:"$";
}

span.icon-github::before {
    font-family: "icons";
    content:"%";
}

span.icon-patreon::before {
    font-family: "icons";
    content:"&";
}

span.icon-youtube::before {
    font-family: "icons";
    content:"'";
}

span.icon-soundcloud::before {
    font-family: "icons";
    content:"*";
}

span.icon-web::before {
    font-family: "icons";
    content:"3";
}

span.icon-itchio::before {
    font-family: "icons";
    content:"+";
}

span.icon-hitbox::before {
    font-family: "icons";
    content:",";
}

span.icon-rss::before {
    font-family: "icons";
    content:"4";
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;           /* non-prefixed version, currently */
}

body {
    /* Background-color given by theme and procedural */
    padding:0px;
    margin:0px;
    font-family: "Fira Sans", sans-serif;
    background-size:cover;
    min-height:100vh;
    box-sizing:border-box;
    font-size:14px;
    line-height:1.5em;
    font-weight:400;
}

a.external::after {
    font-family: "icons";
    content:" 1";
    vertical-align:middle;
}

ul {
    list-style-type:circle;
    padding:0px;
    margin:0px;
    margin-bottom:15px;
    box-sizing:border-box;
}

ol {
    list-style-type: decimal;
}

li {
    padding:0px;
    margin:0px;
    padding-left:5px;
    margin-left:15px;
    box-sizing:border-box;
}

h1,h2,h3,h4 {
    margin:0px;
    margin-bottom:5px;
    padding:0px;
    font-size:24px;
}

.title {
    font-weight:bold;
}

p {
    box-sizing:border-box;
    margin:0px;
    padding:0px;
}

header {
    /* Color given by theme */
    min-height:80px;
    padding-top:20px;
    margin-bottom:5px;
    text-align:center;
    position:relative;
    background-size: 100%;
    background-attachment:fixed;
    box-sizing:border-box;
}

header .menu-bar {
    /* Color, background color, and border color given by theme */
    height:60px;
    width:100%;
    margin:auto;
    margin-top:20px;
    z-index:10;

    border-bottom:2px solid transparent;
    text-align:left;
    box-sizing:border-box;
}

/* Site search (DuckDuckGo) */
#site_search {
    float:right;
    display: inline-block;
    height: 100%;
    padding:0px 0px 0px 20px;
    line-height:100%;
}

#search_form_homepage {
    height:100%;
    vertical-align:bottom;
}

#search_form_input_homepage {
    line-height: 1.43rem;
    font-family: "Fira Sans", sans-serif;
    font-size:1em;
    width: auto;
    max-width: 250px;
    padding:0px 10px;
    height:100%;
    height:calc(100% - 3px);
    border-width:0px;
    border-bottom-right-radius:0px;
    border-top-right-radius:0px;
    border-right-width:0px;
}

#search_button_homepage {
    margin:0px;
    height:100%;
    height:calc(100% - 2px);
    border-radius:0px;
    display:inline-block;
    display:none;
}

header .menu-bar .item {
    /* Border top color given by theme */
    padding:0px 15px;
    display:inline-block;
    height:30px;
    vertical-align:baseline;
    font-weight:bold;
}

header .menu-bar .item:nth-child(2) {
    margin-left:10px;
}

header .menu-bar .item.patreon {
    float:right;
    height:30px;
    padding-top:18px;
    display:inline-block;
}

header .menu-bar .item h1 {
    display:inline;
    margin:0px 15px;
}

header .menu-bar .item:hover {
    /* given by theme */
}

header .menu-bar .logo {
    /* Background color given by theme */
    display:inline-block;
    vertical-align:middle;
    height:100%;
    background-size:75%;
    background-repeat:no-repeat;
    background-position:center center;
    margin:0px;
    padding:0px;

    /* box-shadow: 0px 4px 7px rgba(0,0,0,0.2); /* Not themed */
}

header .menu-bar .hmdev-logo {
    width:180px;
}

header .menu-bar .hmdev-logo.project {
    width:70px;
}

header .user-options {
    margin-bottom:15px;
    text-align:right;
    width:100%;
    position:absolute;
    top:0px;
}

header .user-options .item {
    padding:10px;
}

header .login, header .register {
    text-align:center;
}

header  #login-popup {
    display:none;
    position:absolute;
    z-index:12;
    padding:0px 20px;
    margin-top:10px;
    right:0px;
    top:20px;
    width:250px;
    max-width:250px;
    max-height:0px;
    overflow:hidden;

    /* box-shadow: 0px 4px 7px rgba(0,0,0,0.2); /* Not themed */
    transition: max-width 0.2s, max-height 0.2s, padding 0.2s;
}

header  #login-popup.open {
    max-width:350px;
    max-height:170px;
    padding:20px;
}

header  #login-popup label {
    padding-right:10px;
}

.sidebar {
    display:inline-block;
    vertical-align:middle;
    width:340px;
    box-sizing:border-box;
}

.main-column {
    width:56%;
    width:calc(100% - 354px);
    display:inline-block;
    vertical-align:top;
    box-sizing:border-box;
}

.main-column .content-block {
    padding:25px;
}

.content {
    text-align:center;
    margin:auto;
    max-width:100em;
    width:80%;
    min-width:960px;
    padding:0px 5%;
}

.content p {
    -moz-text-size-adjust:auto;
    -webkit-text-size-adjust:auto;
    text-size-adjust:auto;
}

.content-block {
    /* Background color given by theme */
    background-repeat:repeat-x;
    border-radius:2px;
    text-align:left;
    width:100%;
    /* box-shadow: 0px 4px 7px rgba(0,0,0,0.5); /* Not themed */
    margin:0px auto;
    padding:0px;
    position:relative;
    box-sizing:border-box;
}

.project .content-block.stream {
    padding:0px;
    line-height:0px;
}

.project .content-block.stream iframe {
    width:100%;
}

.content-block.no-bg {
    background-image:none;
    background-color:transparent;
    box-shadow:none;
}

.sidebar .content-block {
    width:100%;
    padding:10px;
}

.content-block.project-list-block {
    padding:0px;
}

.sidebar .content-block.single {
    padding:0px; /* for project list, TODO */
    margin-top:20px;
}

.sidebar br.sidebar-filler {
    line-height:20px;
}

.content-block.top-bar {
    /* box-shadow: 0px 2px 4px rgba(0,0,0,0.2); /* Not themed */
    width:80%;
    display:block;
    margin:10px auto;
}

.content-block .bottom-padding, .sidebar .bottom-padding {
    margin-top:40px;
}

.project .sidebar, .profile .sidebar {
    width:400px;
}

.project .main-column, .profile .main-column {
    width:calc(100% - 406px);
}

.underline {
    text-decoration:underline;
}

a {
    /* Color and border color given by theme */
    border-bottom:none;
    text-decoration:none;
}

a:hover {
    /* text-decoration:underline; */
}

.clear {
    width:0px;
    height:1px;
}

.content .description {
    line-height:1.42em;
    text-align:left;
    max-width:50em;
    padding:5px;
    margin:auto;
}

.content .description p {
    margin-bottom:10px;
    text-align:left;
}

.center {
    text-align:center;
}

.right {
    text-align:right;
}

.left {
    text-align:left;
}

.justify {
    text-align:justify;
    -webkit-hyphens:manual;
    -moz-hyphens:manual;
    -ms-hyphens:manual;
    hyphens:manual;
}

.spoiler {
    border:1px dashed transparent; /* Themed */
    color:transparent;
}

.full {
    width:100%;
}

.big { font-size:120%; }
strong { font-weight:600; }
em { font-style:italic; }

tr.line-above th, tr.line-above td {
    border-top:1px solid #ccc;
    padding-top:20px;
}

table {
    border-collapse:collapse;
    table-layout:fixed;
}

td {
    vertical-align:baseline;
}

hr  {
    /* Border color given by theme */
    border-top:1px solid transparent;
    border-bottom: 0px;
    max-width:300px;
    margin-bottom:15px;
    margin-top:25px;
}

.content-block.top-bar {
    background-image:none;
}

.top-bar {
    /* Background & border color given by theme */
    height:30px;
    text-align:left;
    line-height:100%;
    padding:10px 5px 0px 25px;
    overflow:hidden;
    border-bottom: 1px solid transparent;
}

.top-bar .breadcrumb {
    height:100%;
    border-bottom:none;
    padding-left:7px;
    padding-right:7px;
}

.top-bar .breadcrumb:hover {
    text-decoration:underline;
}

.top-bar .breadcrumb.current {
    /* Background-color given by theme */
    overflow-x:visible;
    text-overflow: clip ellipsis;
}

.optionbar {
    height:2.7em;
    text-align:left;
    border-style: dashed;
    border-width:0px;
    border-bottom-width:1px;
    padding-left:25px;
    padding-right:25px;
    margin-top:15px;
}

.optionbar.bottom {
    border-bottom-width:0px;
    border-top-width:1px;
}

.optionbar.center {
    text-align:center;
}

.optionbar .optionbar-notice {
    display:inline-block;
    vertical-align:middle;
    height:100%;
    padding:10px 15px;
    box-sizing:border-box;
}

.optionbar .button,
.optionbar input[type=button],
.optionbar input[type=submit]
{
    font-weight:normal;
    height:100%;
    vertical-align:middle;
    margin:0px;
    border:0px solid transparent;
    border-right:1px solid transparent;
    border-left:1px solid transparent;
    border-radius:0px;
}

.optionbar .button:hover,
.optionbar input[type=button]:hover,
.optionbar input[type=submit]:hover
{
}

.optionbar .group
{
    display:inline-block;
    height:100%;
    margin:auto;
}

.tab-bar {
    width:100%;
    height:30pt;
    border-bottom:1px solid transparent;
    padding-left:50px;
    box-sizing:border-box;
}

.tab-bar .tab-button {
    height:100%;
    display:inline-block;
    padding:10px 15px;
    line-height:100%;
    cursor:pointer;
    border:1px solid transparent;
    box-sizing:border-box;
}

.tab-bar .tab-button.current {
    font-weight:bold;
    height:105%;
}

.pagination {
    float:right;
    display:inline-block;
    height:100%;
    text-align:center;
    margin-left:auto;
    box-sizing:border-box;
}

.pagination .page {
    cursor:pointer;
    padding:3px 8px;
    border-bottom:none;
    margin:0px;
    font-weight:400;
    vertical-align:middle;
    box-sizing:border-box;
}

.pagination .page:hover {
}

.pagination .page.current  {
    cursor:default;
    font-weight:600;
}

.pagination .page.current:hover {
    text-decoration:none;
}

.user-link {
    position:relative;
}

.user-popup {
    opacity:0;
    max-height:0px;
    width:340px;

    text-align:center;

    transition:max-height 0.2s, opacity 0.1s;
    box-shadow:0px 2px 5px rgba(0,0,0,0.3);

    overflow:hidden;
    position:absolute;
    bottom:0px;
}

.user-popup.expanded {
    visibility:visible;
    max-height:250px;
    opacity:1;
}

.user-popup table {
    /* Background color given by theme */
    width:100%;
    position:relative;
    border-radius:3px;
    z-index:10;
}

.user-popup td {
    vertical-align:top;
    padding:15px 9px;
}

.user-popup #avatar {
    width:100px;
    height:100px;
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    border-radius:3px;
    margin:0px auto;
}

.user-popup .username {
    font-weight:bold;
}
.user-popup .realname {
}

.user-popup .bottom {
    /* Border color given by theme */
    border-top: 1px solid transparent;
    padding: 15px;
}

.user-popup .bottom .bio {
    vertical-align:top;
    width:90%;
}

.hidden { display:none; }

footer {
    /* Color and text shadow color given by theme */
    min-height:10em;
    /* box-shadow:0px 7px 7px rgba(0,0,0,0.3) inset; */
    padding:20px 40px;
    text-align:center;
    background-size:cover;
    background-position:bottom;
    text-shadow:1px 1px 0px transparent; /* Themed */
    border-top:1px solid transparent;
}

footer h2 {
    text-align:center;
    margin-bottom:10px;
}

footer ul {
    list-style-type:none;
    display:inline-block;
    padding: 0px 30px 0px 10px;
    text-align:left;
}

footer li {
    margin-bottom: 5px;
}

footer a {
    /* Color and border bottom color given by theme */
    border-bottom:1px dotted transparent;
    text-decoration:none;
}
/* forms.css */

.radio, .checkbox {
    min-height:0.5cm;
    display:inline-block;
}

.radio input, .checkbox input {
    visibility:hidden;
}

.radio label, .checkbox label {
    line-height:100%;
    min-height:0.5cm;
}

.radio label:before, .checkbox label:before {
    display:inline-block;

    text-align:center;
    margin-right:10px;
    margin-left:-23px;
    border:1px solid transparent;

    content:" ";
    vertical-align:middle;

    width:0.5cm;
    height:0.5cm;
}

.radio label:before {
    border-radius:50px;
}

.checkbox label:before {
    border-radius:0.1cm;
}

.radio input:checked + label:before {
    content:"\25cf";
}

.checkbox input:checked + label:before {
    content:"\2713";
}

input[type=text], input[type=password] {
    /* Border color and background color given by theme */
    padding:5px;
    outline:none;
    border-radius:2px;
    border:1px solid transparent;
    transition:border-color 0.3s, background-color 0.3s;
}

input[type=text]:active, input[type=text]:focus,
input[type=password]:active, input[type=password]:focus {
    /* Border color and background color given by theme */
}

textarea {
    /* Border color and background color given by theme */
    border-radius:2px;
    border:1px solid transparent;
    transition:border-color 0.3s, background-color 0.3s;
}

textarea:active, textarea:focus {
    /* Border color and background color given by theme */
}

form .note {
    font-style:italic;
}

select {
    /* Border color and background color given by theme */
    padding:5px 10px;
    border-radius:2px;
    border:1px solid transparent;
    transition:all 0.3s;
}

select:hover {
    /* Border color and background color given by theme */
}

option[selected] {
    font-weight:bold;
}

.button, input[type=button], input[type=submit] {
    /* Color, background color given by theme */
    border:1px solid transparent;
    display:inline-block;
    padding:10px 15px;
    margin:10px auto;
    border-radius:2px;
    transition:background-color 0.1s, border-color 0.1s;
    cursor:pointer;
    font-weight:600;
    box-sizing:border-box;
}

.button:hover, input[type=button]:hover, input[type=submit]:hover {
    /* Color, background color given by theme */
}

.button.inline-button, input[type=button].inline-button {
    /* Border color given by theme */
    margin:5px;
    box-shadow:none;
    border:1px solid transparent;
    padding:5px 7px;
}

.button.inline-button:hover, input[type=button].inline-button:hover {
    /* Border color and background color given by theme */
}

.button.kill-button:hover, input[type=button].kill-button:hover {
    /* Color, border color and background color given by theme */
}

.toolbar {
    /* Background color and box shadow color given by theme */
    border-radius:3px;
    height: 2.2em;
    overflow-y:scroll;
    transition:all 0.3s;
    border: 1px solid transparent;
}

.toolbar .button, .toolbar input[type=button] {
    /* Border color given by theme */
    line-height: 2.2em;
    box-shadow:none;
    border:0px;
    border-right:1px solid transparent;
    border-radius:0px;
    margin:0px;
    padding:0px 10px;
    height:100%;
    vertical-align:bottom;
    text-transform:none;
    font-weight:300;
}

.toolbar .button:hover, .toolbar input[type=button]:hover {
    /* Background color given by theme */
}

.toolbar input[type="text"] {
    height:2.2em;
    border:0px solid transparent; /* Not themed */
}

.actionbar {
    text-align:center;
}

.tabbar {
    height:40px;
    padding-left:50px;
    margin-bottom:20px;
}

.tabbar .tab {
    padding:10px;
    border-bottom:none;
}

.tabbar .tab.current {
    /* Border color given by theme */
    border-bottom:2px solid transparent;
}

/* forum.css */

.display-options {
    height:100%;
    padding:0px 20px 0px 20px;
}

.display-options > * {
    display:inline-block;
    vertical-align:middle;
}

.forum h3 {
    margin:0px 80px 0px 20px;
    font-weight:bold;
}

.thread-list {
    list-style-type:none;
    margin-bottom:10px;
    min-height:40px;
}

.subforum {
    margin-top:20px;
    margin-bottom:10px;
}

.thread {
    /* Color, background color, and border color given by theme */
    display:block;
    position:relative;

    width:100%;
    min-height:62px;
    padding:5px;
    padding-top:10px;
    padding-right:15px;
    
    padding-left:90px;

    border:none;
    border-bottom:1px solid transparent;

    box-sizing:border-box;
    margin-left:0px;
}

.profile .thread {
    padding-left:15px;
}

.thread:last-child {
    border-bottom:0px;
}

.avatar-icon {
    width:40px;
    height:40px;
    border-radius:40px;
    position:absolute;
}

.thread .avatar-icon {
    left:30px;
    bottom:10px;
}

.thread .info .avatar-icon {
    bottom:0px;
    left:0px;
}

.feed .avatar-icon {
    left:-50px;
    bottom:-10px;
}

.project .box .avatar-icon {
    left: 0px;
    bottom: -10px;
}

.thread .title {
    font-weight:bold;

    transition:border-bottom-color 0.1s;
    border-bottom-color: transparent;
}

.thread .title:hover {
    border-bottom-color: initial;
}

.thread.read .title {
    font-weight:500;
}

.thread .meta {
    margin-top:3px;
    position:relative;
    display:inline-block;
}

.thread .info {
    float:right;
    margin-bottom:10px;
    position:relative;
    min-width:22em;
    font-size:1em;
}

.thread .info th {
    text-align:right;
    position:relative;
    padding-right:10px;
}

.forum .thread .info th {
    width:50px;
}

.thread .info .goto {
    vertical-align:middle;
    font-size:200%;
    height:100%;
    width:30px;
}

.thread .info .goto a {
    display:block;
    padding:0px 10px;
    box-sizing:border-box;
    position:relative;
    height:100%;
    line-height:100%;
    background-color:transparent;
}

.contents > .code {
    max-width:100%;
    max-height:20em;
    max-height:100vh;
    overflow:auto;
}

.codeblocktable {
    /* Background color given by theme */
    font-family: "Fira Mono", monospace;
    font-size:14px;
    overflow:auto;
    margin:5px 0px;
    line-height:1.5em;
}

.codeblocktable tbody {
    width:100%;
}

.codeblocktable .linenos {
    /* Background color given by theme */
    font-weight:500;
    padding-right:5px;
}

.codeblocktable .code {
    /* Background color given by theme */
    padding-right:20px;
    padding-left:10px;
    max-width:80em;
}


.post {
    position:relative;
    width:100%;
}

.post .body .size1, .post-preview .size1 {
    font-size:12px;
}

.post .body .size2, .post-preview .size2 {
    font-size:13px;
}

.post .body .size3, .post-preview .size3 {
    font-size:14px;
}

.post .body .size4, .post-preview .size4 {
    font-size:15px;
}

.post .body .size5, .post-preview .size5 {
    font-size:16px;
}

.post .body strong {
    font-weight:500;
}

.blog .post,
.wiki .post {
    padding:0px;
    max-width:50em;
    margin:auto;
}

.wiki .post {
    max-width:70em;
}

.post .contents h1,
.post .contents h2 {
    margin: 20px 0px;
}

.post .contents h2 {
    font-size:20px;
}

.project .post .contents h3,
.post .contents h4 {
    display:block;
    font-size:18px;
    margin: 10px 0px;
}

.post .contents h5,
.post .contents h6 {
    margin: 10px 0px;
}

.blog .post.op {
}

.blog .post.op .meta {
    margin-bottom:10px;
}

.blog .post .meta {
    position:relative;
}

.blog .post .avatar-icon {
    left:-50px;
    bottom:-10px;
}

.description .edited, .post .edited {
    padding-left:15px;
    padding-bottom:25px;
}

.post .action.button {
    float:right;
    padding:0px 10px;
    margin-top:0px;
    margin-right:4px;
    background-color:transparent;
    font-size:130%;
    border-radius:0px;
    border-width:0px;
    border-bottom-width:2px;
    transition:border-bottom-width 0.1s;
}

.post .action.button:hover {
    border-bottom-width:4px;
}

.post .actions {
    display:inline-block;
    float:right;
}

.featured-post .meta .avatar-icon {
    left:-60px;
    bottom:-5px;
}

.post hr {
    max-width:90%;
    margin-top:5px;
}

.forum .post .author {
    padding-right:20px;
    padding-left:20px;
    width:200px;
    text-align:center;
}

.forum .post .author.minimal {
    padding-right:20px;
    padding-left:20px;
    width:100px;
    text-align:center;
}

.forum .post .author .avatar {
    /* Background color given by theme */
    margin:auto;
    width:120px;
    height:120px;
    margin-top:10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position:relative;
    top:0px;
    left:0px;
}

.post .postid {
    margin-left:10px;
    float:right;
}

.post .body {
    padding-top:20px;
    text-align:left;
    padding-right:30px;
    padding-left:30px;
    padding-bottom:30px;
}
.post .body blockquote {
    /* Background color given by theme */
    display: block;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 10px 18px;
    padding-top:0px;
    margin-left: 20px;
    margin-right: 20px;
    border-left: 1px solid transparent;
}
.blog .body blockquote,
.wiki .body blockquote {
    margin: 1.5em;
    padding-top:1px;
    padding-bottom:1px;
}

.post .body blockquote .quotewho {
    line-height:2em;
}

.post .body blockquote .quotewho:after {
    content: " said:";
}

.post .body img {
    max-width:100%;
}

.forum .post .title {
    font-weight:bold;
}

.forum .post .contents {
    padding-bottom:30px;
}
.post .signature {
    padding-bottom:30px;
}
.post .signature hr {
    width: 80%;
}
.post .ip {
}
.post .postcount, .post .projectcount {
}
.post .author .bio {
    margin-bottom:10px;
}

.post .author .bio hr {
    margin-bottom:5px;
}

.empty {
    padding-left: 20px;
}

.blog .post.op .author {
}

.blog .post .body {
    padding-left:80px;
}

.blog .post.op .body {
    padding-left:40px;
}

.blog .post.op .body .contents {
    text-align:left;
}

.blog .post.op .body p {
    margin-top:8px;
    margin-bottom:8px;
    text-align:left;
}

.blog .sidebar .post > .author {
    padding:15px;
    text-align:center;
}

.blog .sidebar .recent-posts {
    text-align:center;
    padding:15px;
}

.blog .sidebar .recent-posts h2 {
    display:inline;
}

.blog .post-list {
    margin:15px;
}

.blog .post-list .post {
    padding-left:20px;
}

.blog .post-list .post .body {
    padding-top:5px;
    padding-left:0px;
}

.blog .sidebar .archive ul {
    list-style-type:none;
    text-align:left;
}

.column h2 {
    text-align:center;
    margin-bottom:20px;
}

.project-card {
    /* Background color given by theme */
    display:inline-block;
    height:310px;
    width:296px;
    position:relative;
    text-align:center;
    vertical-align:top;
    top:0px;
    border-radius:3px;
    overflow:hidden;
    margin:3px;

    transition:box-shadow 0.2s, background-color 0.2s;

    box-sizing:border-box;
}


.slideshow .project-card {
    margin-top:8px;
}


.project-card:hover > .title {
    text-decoration:underline;
}

.project-card .image {
    height:185px;
    width:300px;
}

.project-card .details {
    /* Background color given by theme */
    height:125px;
    text-align:left;
    padding:7px;
    transition: background-color 0.2s;
}

.project-card .title {
    margin: 0;
}

.project-card .title.long {
}

.project-card .blurb {
    text-overflow: ellipsis;
    overflow:hidden;
}

.sidebar .project-card {
    margin:3px;
    height:160px;
    width:160px;
}

.sidebar .project-card .image {
    height:120px;
    width:100%;
}

.sidebar .project-card .title {
    padding:0px;
    margin:5px 0px;
    text-align:center;
    width:160px;
    text-overflow:ellipsis;
}

.sidebar .project-card .details .lifecycle {
    display:none;
}

.project-card .details .lifecycle,
.unapproved-project .lifecycle {
    padding:2px 5px;
    vertical-align:middle;
    margin:3px;
    border-radius:5px;
    color:white;
    font-size:14px;
    font-weight:bold;
}

.project-card .details h3 .lifecycle {
    margin-left:10px;
}

.sidebar .projectlist .project-card.more {
    height:40px;
    width:326px;
    padding-top:5px;
}

.profile .content .description {
    margin:0px auto;
    max-width:40em;
}

.profile .content h2 {
    margin-bottom:10px;
}

.profile ul.recent-posts, ul.recent-comments {
    list-style-type:none;
}

.profile ul .entry {
    margin-left:20px;
}

.profile .entry .context {
    font-weight:bold;
    border-bottom:0px;
}

.profile .entry .title {
    /* Color given by theme */
}
.profile .content-block.avatar,
.project .content-block.logo {
    background-color:transparent;
    background-image:none;
    box-shadow:none;
    min-height:200px;
}

.profile .content-block.avatar img,
.project .content-block.logo img{
    box-shadow: 
}

.profile .content-block.projects {
    background-image:none;
    overflow-y:visible;
}


.project .content-block.screenshots,
.profile .content-block.projects
{
    padding:0px;
    min-height:0em;
}

.screenshots .slide {
    max-width:100%;
}

.slideshow .optionbar {
    height:30px;
    text-align:center;
}

.slideshow .buttons {
    display:inline-block;
    height:100%;
}

.slideshow .button {
    line-height:100%;
    padding:5px 8px;
    font-weight:400;
}

.slideshow .button.current {
    font-weight:600;
}

.slideshow {
    /* Background color and color given by theme */
    position:relative;
    background-image:none;
    overflow:hidden;
}

.slideshow #slide-deck {
    width:100%;
    position:relative;
    transition:left 0.3s;
    left:0px;
    text-align:center;
    display:flex;
    flex-direction:horizontal;
    justify-content: space-around;
    align-items: center;
}

.slideshow.cards #slide-deck {
    justify-content: flex-start;
}

.slideshow .slide {
    flex: 1 1 100%;
    position:relative;
}

.slideshow.cards .slide {
    flex: 0 1 auto;
}

.slideshow .slide img {
    margin:auto;
    max-height:60vh;
    max-width:100%;
}

.box {
    min-width:300px;

    margin-bottom:5px;
    text-align:center;

}

.box.list {
    list-style-type:none;
    padding: 10px 15px 20px 15px;
    text-align:left;
}

.box.list .pair {
    margin-bottom:5px;
}

.box.list .pair .key {
    display:inline;
}

.box.list .pair .value {
    display:inline;
    margin-left:10px;
}

.project .pair.authors .value {
    position:relative;
    margin-bottom:30px;
    margin-top:20px;
    display:block;
}

.project .pair.authors .value:last-child {
    margin-bottom:20px;
}

.project .pair .avatar {
    bottom:-10px;
    left:0px;
}

.project .download .mirrors {
    margin-top:15px;
}
.project .download .link {
    font-weight:bold;
}

.project .download .domain {
    font-weight:bold;
}

.project .download .size {
    font-weight:normal;
}

.project .download .file td {
    padding-top:5px;
}

.project .download .sha1sum td {
    padding-bottom:10px;
}

.box dd.projectlink {
    display:inline;
    margin-left:20px;
    word-wrap:break-word;
}
.box dd span.projectlinkname {
}

.project .box.logo,
.profile .box.avatar {
    line-height:0em;
    padding:0px;
}

.project .box.logo img,
.profile .box.avatar img {
    max-width: 100%;
    height:auto;
}

.project .box h1 {
    margin:0px;
}

.project .content-block .settings-icon {
    z-index:10;
    position:absolute;
    width:25px;
    height:25px;
    right:5px;
    top:5px;
    margin:0px;
    text-align:center;
    padding:3px;
    border-radius:10px;
    line-height:100%;
    box-sizing:border-box;
}

.project .content-block .settings-icon.hover-only {
    display:none;
}

.project .content-block:hover .settings-icon.hover-only {
    display:block;
}

.project .screenshots .slideshow {
    background-color:black;
}

.project .sidebar .blog, .profile .sidebar .blog {
    padding:8px;
}

.project .content .list ul {
    list-style-type:none;
    padding-left:20px;
}

.project .content .list ul li {
    display:inline-block;
}

.project .content .list ul li:after {
    content:"/";
    padding-left:5px;
}
.project .content .list ul li:last-child:after {
    content:"";
}

.project .content .tags h2 {
    margin-bottom:5px;
}

.project .content .tags {
    text-align:center;
}

.project .content .tags li {
    display:inline-block;
}

.content-block.blog p.title {
    font-weight:bold;
}

.content-block.blog p.title a {
    border-bottom-width:0px;
}

.content-block.blog p.title a:hover {
    border-bottom-width:1px;
}

.project .content h2 .heading-extra {
    font-weight:normal;
}

.project .content h3 {
    margin-bottom:10px;
    display:inline;
}

.project .content .post-inset {
    /* Border color given by theme */
    margin:5px;
    margin-left: 0px;
    padding-left:0px;
    border-left: 1px solid transparent;
}

.project .content .post-inset h3 {
}

.project .content .post-inset .info {
    float:right;
    border-collapse: collapse;
    table-layout: fixed;
}

.project .content-block.main-column {
    padding-bottom:40px;
}

.project .content-block.donate img,
.project .content-block.source img{
    max-width:90%;
}

.episode-list .description p {
    line-height:1.42em;
}

.episode-list h2,
.episode-list h3 {
    font-size:1em;
    font-weight:bold;
}

.episode-list ul {
    margin-bottom:30px;
    list-style-type:none;
    margin-top:-2px;
}

.episode-list ul li {
}

article code {
    font-family: "Fira Mono", monospace;
}

.projectlist {
    text-align:center;
    margin:0px auto;
    padding-top:30px;
}

.content-block.language-desc {
    padding: 10px;
}

.content-block.language-desc h3 {
    margin-left: 10px;
}

.sidebar .projectlist
{
    padding:0px;
    width:340px;
}

.sidebar .projectlist

    background-image:none;
    background-color:transparent;
    box-shadow:none;
}


.userlist {
    text-align:center;
    width:100%;
    margin:0px auto;
    padding-top:30px;
    position:relative;
    line-height:0em;
}

.userlist .user {
    margin:5px;
    display:inline-block;
    height:200px;
    max-height:180px;
    text-align:left;
    position:relative;
    width:296px;
    border-radius:3px;
    line-height:1.4em;
    overflow:hidden;
    box-shadow:0px 2px 5px rgba(0,0,0,0.20);

    top:0px;
    transition: box-shadow 0.2s, background-color 0.2s;
}

.userlist .user:hover {
    box-shadow:0px 3px 7px rgba(0,0,0,0.20);
}

.userlist .user table {
    /* Border and background color given by theme */
    border:1px solid transparent;
    width:100%;
    height:100%;
}

.userlist .user .bottom {
    transition: background-color 0.2s;
}

.userlist .user td {
    vertical-align:top;
}

.userlist .user .name {
    text-align:left;
}

.userlist .user .name .username {
    vertical-align:middle;
}

.userlist .user .name .realname {
}

.userlist .user td.avatar {
    width:100px;
    height:80px;
}

.userlist .user .avatar .image {
    display:block;
    float:left;
    width:80px;
    height:80px;
    background-size:cover;
    margin-right:10px;
}

.userlist .user .bio {
    padding:5px;
}

.generic-form {
    width:60%;
    max-width:50em;
    margin:auto;
    margin-top:50px;
    padding:50px;
    border:1px solid transparent;
    border-bottom-width:0px;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
}

.generic-form th {
    padding-right:10px;
    text-align:right;
}

.generic-form table {
    border-collapse: separate;
    border-spacing: 4px;
}

.thread_read_status {
    float: right;
    padding-right: 30px;
    color: red;
}
a.mark_as_read {
    float: right;
}
.mark_as_read_toplevel_forum {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}
.mark_as_read_toplevel_forum a {
    text-decoration: underline;
}

div.mark_as_read_toplevel_blog {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}
.mark_as_read_toplevel_blog a {
    text-decoration: none;
}
div.mark_as_read_site {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}
.mark_as_read_site a {
    text-decoration: none;
}
li.post-entry {
    margin-left:0px;
    margin-bottom: 3px;
}

#project_owner_suggestions #user_template {
    display:none;
}

#project_owner_suggestions  {
    max-height:300px;
    overflow:auto;
    position:absolute;
    border:1px solid transparent;
}

.user_suggestions {
    padding-top: 5px;
    padding-bottom: 5px;
}

.user_suggestions#project_owner_suggestions .user {
    border-bottom-width: 1px;
    width: 200px;
    box-sizing:border-box;
    cursor:pointer;
}

.user_suggestions .user {
    position:relative;
    margin-left:50px;
    display: inline-block;
    margin-right:10px;
}

.user_suggestions .user .avatar-icon {
    left:-50px;
    bottom:0px;
    border-radius:50%;
    border:2px solid transparent;
}

#project_owners {
    min-width:50%;
}

.diff {
    width:100%;
    max-height:100vh;
    overflow-y:scroll;
    margin-top:20px;
}

.diff > .post-source {
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: "Fira Mono", monospace;
    width:49%;
    box-sizing:border-box;
    padding: 4px;
    display:inline-block;
    vertical-align: top;
}

.diff .diff-replace,
.diff .diff-delete,
.diff .diff-insert {
    border: 1px solid transparent;
    border-radius:2px;
    padding:1px;
}

.index  {
    list-style-type:none;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    margin-top:20px;
}

.index .index-category {
    margin-bottom:20px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid-column;
}

.wiki .post p {
    margin: 10px 0px;
}

.wiki .toc {
    position: fixed;
    border-left: 1px solid transparent;
}

.wiki .toc ul {
    list-style-type: none;
    margin-left: 10px;
    margin-bottom: 5px;
}

.wiki .toc li {
    margin-left: 0px;
}

.wiki .aside {
    border-left: 1px solid transparent;
    margin-left:20px;
}

.wiki .aside .aside-heading {
    padding:2px;
    margin:1px;
    border-radius:3px;
    border-width:0px;
    cursor:pointer;
    display:inline;
    background-color:transparent;
}

.wiki .aside::before {
    margin-left:-20px;
    margin-right:15px;
    display:inline-block;
    width:10px;
    content:"\21b4 ";
}

.wiki .aside.folded::before {
    content:"\2192 ";
}


.wiki .aside > .aside-body {
    overflow:hidden;
    padding-left:10px;
}

.wiki .aside.folded > .aside-body {
    max-height: 0px;
}
