static/style.css

Wed, 05 Jun 2019 00:33:50 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 05 Jun 2019 00:33:50 +0300
changeset 61
15c95d3fcfd8
parent 32
75f44d3063da
child 64
1c0884f5506e
permissions
-rw-r--r--

show the filename of the processed file in the report


body
{
    font-family: sans-serif;
    margin: 0;
}

.ldraw-code
{
    font-family: monospace;
}

.problems-list
{
    list-style: none;
}

.problems-list li
{
    padding: 5px;
    border: 1px solid black;
    border-radius: 10px;
    margin-bottom: 3px;
}

.problems-list li.problem-error
{
    background-color: #b44;
    border-color: red;
    color: white;
}

.problems-list li.problem-warning
{
    background-color: #fc6;
    border-color: #830;
    color: black;
}

.problems-list li.problem-notice
{
    background-color: #def;
    border-color: #024;
    color: black;
}

.problem-icon
{
    float: left;
    margin-right: 10px;
}

.top-form
{
    background: white;
    background: linear-gradient(
        to bottom,
        #cceecf 0%,
        #cceecf 85%,
        #163 100%
    );
    padding-bottom: 2vh;
    padding-top: 2vh;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
}

.report-container
{
    background: linear-gradient(
        to bottom,
        #ccc 0,
        #fff 1vh,
        #fff 100%
    );
    min-height: 10vh;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2vh;
}

mercurial