/* Copyright 2014 Cognitect. All Rights Reserved. */

/* Licensed under the Apache License, Version 2.0 (the "License"); */
/* you may not use this file except in compliance with the License. */
/* You may obtain a copy of the License at */

/*      http://www.apache.org/licenses/LICENSE-2.0 */

/* Unless required by applicable law or agreed to in writing, software */
/* distributed under the License is distributed on an "AS-IS" BASIS, */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
/* See the License for the specific language governing permissions and */
/* limitations under the License. */

/* CodeMirror customizations */

.CodeMirror {
  border: 1px solid #eee;
  height: auto;
  font-size: 15px;
  font-family: 'Inconsolata';
}

.CodeMirror-scroll {
  overflow-y: hidden;
  overflow-x: auto;
  height: auto;
}

/* Main */

body {
    font-family: "Palatino Linotype",Palatino,serif;
    font-weight: 400;
    padding-top: 25px;
    background-color: #fefeee;
    color: #333;
    margin-bottom: 200px;
}

center > * {
    text-align: left;
}

center .container {
    width: 600px;
}

.container p {
    text-align: left;
    width: 100%;
    line-height: 1.4em;
}

.container textarea {
    resize: none;
    border: none;
    width: 100%;
}

button {
    color: #555;
    cursor: pointer;
    outline: none;
    font-weight: bold;
    margin: 8px 0 0 0;
    background-color: white;
    border: 1px solid #aaa;
    padding: 4px 8px;
    text-transform: uppercase;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

button:hover {
    color: #222;
    border: 1px solid black;
}

button:active {
    color: black;
    background-color: #efefef;
}

.eval {
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
}

code {
    font-family: 'Inconsolata';
}