Skip to content
Snippets Groups Projects
style.css 4.38 KiB

/*---------------------------------CSS RESET-------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

a img{
    border-width: 0;
    vertical-align: middle;
}

dialog{
    display: none;
}
dialog[open]{
    display: block;
}

/* ------------------------------------------------------------------------*/
/* global */
button{
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

button.close-button{
    background: transparent;
    border:none;
}
.callout {
    border-radius: 3px;
}
fieldset {
    margin-bottom:1rem;
}

a, a:visited, a:active, a:link {
    text-decoration: underline;
    text-decoration: underline;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
a:hover {
    text-decoration: none;
}

/* main */
main {
    padding: 1rem 0.5rem;
}
main form {
    width: 100%;
}

/* wizard */
.wizard {
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard > .steps {
    position: relative;
    display: inline;
    width: 30%;
    float: left;
}
.wizard > .steps > ol > li {
    list-style-position: inside;
    margin: 0 0.5em 0.5em;
    padding: 1em 1em;
    border-radius: 3px;
}
.wizard > .steps > ol > li.current {
    color: #FFFFFF;
}
.wizard > .steps > ol > li.done {
    color: #FFFFFF;
}
.wizard > .steps > ol > li.disabled {
    background: #eee;
    color: #aaa;
}

.wizard > .content {
    background: none;
    display: block;
    margin: 0 0 1em 1em;
    padding: 1em;
    min-height: 25rem;
    position: relative;
    width: auto;
    border-radius: 3px;
    overflow: auto;
    overflow-x: hidden;
}
.wizard > .content .custom-combobox {
    position: relative;
    display: inline-block;
    width: 95%;
}
.wizard > .content .custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
}
.wizard > .content .custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
    width: 100%;

}
.wizard > .content .ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}
.wizard > .content label.error {
    display: block;
    color: #FFFFFF;
    width: 100%;
    background: #F04124;
    padding-left: 1rem;
}
.wizard > .actions {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}

/* Accounts profile */
div.accounts {
    margin-bottom:1.5rem;
}
div.account {
    margin-top: 1rem;
    box-shadow: 0 3px 5px #333;
    padding:0.5rem;
}
div.account h3 {
    background-color: #f1893b;
    color: #FFFFFF;
    border-radius: 3px 3px 0 0;
    text-align: center;
    font-weight: bold;
}
div.account table {
    table-layout: fixed;
    word-wrap: break-word;
    margin-bottom: 0;
}
div.account table tbody {
    border:1px solid #f1893b;
}
div.account .comment {
    /*display: flex;*/
    margin: 0;
    padding: 0;
    height: 7em;
    overflow-y: auto;
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: left;
}
div.account button {
    margin-bottom: 0;
    padding: 0.5rem 1rem;
}

.scrollable {
    overflow-y: scroll;
}

.ui-icon {
    float:none !important;
}

ul.columns4 {
    column-count: 4;
    list-style-type: none;
}
ul.columns3 {
    column-count: 3;
    list-style-type: none;
}

.nocursor{
    cursor: default!important;
    opacity:0.6;
}
.nocursor label{
    cursor: default!important;
    color:#aaa!important;
}
.nocursor [class*=" fa-"]:before{
    text-align: right;
    font-size: 1rem;
}

@media only screen and (max-width: 800px){
    .wizard > .steps {
        width: 100%;
        float: none;
        text-align: center;
    }
}