* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    display: table;
    background-color: rgba(0, 0, 0, .1);
}

body, html {
    height: 100%;
    overflow: hidden;
    text-align: center;
}

section.container {
    width: 100%;
    margin: auto;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
}

section.container section.recipe-app {
    font-family: Lato, Arial, Tahoma Helvetica, sans-serif;
    width: 400px;
    height: 500px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, .05);
    margin: auto;
    text-align: left;
    overflow: hidden;
    position: relative;
}

/* Header */

section.container section.recipe-app header {
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    overflow: hidden;
    height: 60px;
    position: relative;
}

section.container section.recipe-app header h1 {
    height: 60px;
    line-height: 60px;
    display: inline-block;
    padding: 0 20px;
}

section.container section.recipe-app header aside {
    display: inline-block;
    font-size: 10px;
    color: rgba(0, 0, 0, .25);
    text-transform: uppercase;
    position: absolute;
    height: 60px;
    line-height: 60px;
    margin-top: 2px;
}

section.container section.recipe-app header img.github {
    position: absolute;
    top: 10px;
    right: 15px;
    height: 40px;
    opacity: .55;
    transition: opacity .25s;
}

section.container section.recipe-app header img.github:hover {
    opacity: 1;
}

/* List */

section.container section.recipe-app section.recipe-list {
    height: 340px;
    overflow: hidden;
}

section.container section.recipe-app section.recipe-list ul {
    list-style-type: none;
    overflow: hidden;
}

section.container section.recipe-app section.recipe-list ul li {
    border-bottom: 1px solid rgba(0, 0, 0, .025);
    overflow: hidden;
}

section.container section.recipe-app section.recipe-list ul li a {
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    float: left;
    overflow: hidden;
    width: 100%;
    color: lightseagreen;
    transition: color .25s;
    cursor: pointer;
    font-size: 14px;
}

section.container section.recipe-app section.recipe-list ul li:nth-of-type(odd) a {
    background-color: rgba(0, 0, 0, .005);
}

section.container section.recipe-app section.recipe-list ul li a:hover {
    color: black;
}

/* Form */

section.container section.recipe-app section.recipe-form {
    overflow: hidden;
    background-color: #efefef;
    box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, .05);
    height: 100px;
    z-index: 100;
    padding: 20px;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 441px;
    transition: height 0.35s;
}

section.container section.recipe-app:hover section.recipe-form {
    /*height: 441px;*/
}