diff options
Diffstat (limited to 'ishtar_common/static/media/styles.css')
| -rw-r--r-- | ishtar_common/static/media/styles.css | 142 | 
1 files changed, 142 insertions, 0 deletions
| diff --git a/ishtar_common/static/media/styles.css b/ishtar_common/static/media/styles.css new file mode 100644 index 000000000..65882f484 --- /dev/null +++ b/ishtar_common/static/media/styles.css @@ -0,0 +1,142 @@ +#language-form{ +    display: none; +} + + +.search .form-group { +    margin-bottom: 0.2rem; +    font-size: 0.9em; +} + +.nav-button{ +    cursor:pointer; +    z-index: 1000; +    position: fixed; +    right: 5px; +    margin-top: 5px; +} + +div.nav-button:hover{ +    opacity: 0.2; +} + +#to_bottom_arrow{ +    bottom:84px; +} + +div#footer{ +    position: fixed; +    bottom: 0px; +    width: 100%; +    left: 0px; +    z-index: 101; +} + +div#validation-bar{ +    padding: 5px 0; +} + +button:hover{ +    cursor: pointer; +} + +div#foot{ +    font-size: 0.75em; +    text-align: center; +    padding: 0.2em; +} + +.search-vector{ +    width: 100%; +} + +/* window */ +.close-buttons{ +    position: absolute; +    right: 10px; +    top: 5px; +    text-align: right; +} + + +.toolbar{ +    padding: 0.5em; +} + +.history-nav{ +    display: inline-block; +    width: 150px; +    text-align: center; +} + +.sheet .card-body{ +    padding: 0.5em; +} + +.sheet .card-body .main{ +    font-weight: bold; +} + +.sheet .card-body p{ +    margin: 0; +    font-size: 0.9em; +} + +.sheet h4, .sheet h3{ +    text-align: center; +    text-shadow: 2px 2px 2px rgba(150, 150, 150, 0.70); +} + +.sheet h4{ +    text-shadow: 2px 2px 2px rgba(150, 150, 150, 0.45); +} + +.sheet .card{ +    margin-bottom: 1em; +} + +.table-modal-lg .current-sheets{ +    margin-bottom: 1em; +} + +.dataTables_wrapper .dataTables_processing{ +    height: auto; +} + +table.dataTable tbody th, table.dataTable tbody td { +    padding: 2px 2px; +} + +.dataTables_wrapper .dataTables_length{ +    font-size: 0.8em; +} + +.dataTables_wrapper .dataTables_paginate .paginate_button:hover { +    background: none; +    border: 1px solid transparent; +} + +.display_details{ +    font-size: 1.4em; +} + +/* à adapter */ +#message, +#message div{ +    display: none; +} + +#message { +    z-index: 42200; +    position: absolute; +    top: 5px; +    right: 5px; +    background: #fff; +    padding: 0.5em 1em; +    border: 1px solid; +    border-radius: 3px; +} + +#message span{ +    padding: 0 1em; +} | 
