@import url(../reindeer/styles.css);

.v-generated-body {
    overflow: auto;
}

.v-generated-body .v-app {
    height: auto;
}

/* Matches the actual DOM element */
.main {
     margin: 20px;
     padding: 10px 15px;
     border: 2px solid black;
}

/* Does not match any actual DOM element, but the values are read by the widget */
#main-details {
     min-height: 200px;
     max-height: 400px;
     min-width: 400px;
     max-width: 700px;
     letter-spacing: 14px; /* Used to set the component spacing inside the layout */
}

/* Move the contained Label inside the layout. Notice, that the Label is 100% wide by default */
.main .v-label {
     margin-top: 10px;
     margin-right: 30%;
     margin-left: 30%;
}

#root-spacing,
#code-spacing {
    /* Interpreted always as pixels, no matter what unit is specified (i.e. 20em will be converted to 20px) */
    width: 30px;
}

h2 {
    margin-top: 0;
}

div.root {
    border: 3px solid #9aacbf;
    border-top-width: 25px;
    padding: 10px;
    background: #d9dde1;
    overflow: hidden;
    font-family: verdana;
    font-size: 1.2em;
}

.footer{
    position: fixed;
    left: 0px;
    bottom: 0px;
    /*border: 3px solid #9aacbf;*/
    padding: 10px;
    background: black;
    overflow: hidden;
    color: white;
    text-align: right;
    padding-right: 50px;
}

.footer a{
    color: white;
    text-decoration: none;
    border-bottom: 1px white dotted;
}

* html .footer {
    position: absolute;
    bottom: 0px;
}

.code .v-link {
    font-size: 16px;
    font-weight: bold;
}

div.first {
    margin: 0;
    border: 1px solid #9aacbf;
    padding: 10px;
    background: #fff;
}

.first .v-label {
    margin-right: 30px;
}

div.cell1,
div.cell2,
div.cell3 {
    border: 1px solid #aaa;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

div.cell1 {
    background: #a1c4bf;
    color: #3f5e5a;
    border: 5px solid #59a99d;
    margin-top: -30px;
    margin-bottom: 50px;
    margin-right: 10px;
}

div.cell2 {
    background: #5386d3;
    color: #fff;
    /*padding: 5px;*/
    /*border: 2px solid #2b60b0;*/
    /*margin-top: 80px;*/
    /*margin-bottom: -10px;
    margin-right: 50px;
    margin-left: -30px;*/
}





/* Alignments for undefined sized components are a bit off currently,
 * so compensate that with margins
*/
.cell1 .v-label,
.cell2 .v-label,
.cell3 .v-label {
    margin-top: -8px;
    margin-left: 25px;
}
.cell2 .v-label {
    margin-left: 0;
}
.cell3 .v-label {
    margin-top: -16px;
}