@import "fonts.less";

@navbar-width:100%;
@navbar-height: 10px;
@banner-height: 530px; 
@banner-width: 100%; 
@logo-dimension: 20px;

* {
    background-color: white;
    font-family: 'happy';
}

a {
    text-decoration: none;
    color: black;
}

.navbar {
    font-size: 1.5em;
    width: @navbar-width; 
    height: @navbar-height;
    background-color: white;
    margin-top: 30px;
    padding-bottom: 25px;
    a {
      padding-left: 40px; 
      padding-right: 40px;
    }

    :hover {
        text-decoration: underline;
    }
}

.banner {
    height: @banner-height;
}

.footer {

    margin-top: 50px;
    text-align: center;

    a {
        text-decoration: none;
        padding-right: 20px; 
        padding-left: 20px; 
    }
}

.footer::before {
    content: '---';
}

.footer::after {
    content: '---'; 
}

.banner-img {
    width: @banner-width;
    border: solid; 
    border-width: 1px;

}

#rss-logo {
    width: @logo-dimension; 
    height: @logo-dimension; 
}

#git-logo {
    width: @logo-dimension; 
    height: @logo-dimension; 
}


.content {
    margin-top: @navbar-height + 40px;
    margin-left: 15%;
    a:hover {
        text-decoration: underline;
    }

}

.article-anchor {
    padding-left: 10px;
    padding-right: 10px;
}

.title-block {
    text-align: left;
}

code {
    background-color: #cccccc;
    font-style: italic;
}