styles.less 1.45 KB
// out: ../../includes/css/styles.css, sourcemap: true, compress: true
@bowerBasePath: "../../bower_components/";
@import '@{bowerBasePath}bootstrap/less/bootstrap.less';
@import 'search-box.less';

* {
    font-family: sans-serif;
    font-size: 15px;
    color: white;
    color: #fff;
    &:focus {
        outline: none !important;
    }
}

html {
    overflow: hidden;
    height: 100%;
    body {
        overflow: hidden;
        min-height: 100%;
        height: 100%;
    }
}

//Variables
@background-colour: #d0d0d0;
@padding: 12px 12px 12px 12px;

//Mixins
.bordered {
    border: solid 1px #d0d0d0;
    border-radius: 3px;
}

//Styles
.container-fluid {
    width: 100%;
    height: 100%;
    position: relative;
    .left {
        width: 25%;
        position: absolute;
        top: 32px;
        left: 32px;
        padding: 16px;
        background-color: rgba(10,10,10,0.8);
        z-index: 2;
        border-radius: 8px;
    }
    .map {
        z-index: 1;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        #map-div {
          position: unset !important;
          width: 100%;
          height: 100%;
        }
    }
}


//Placeholder
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #777;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #777;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #777;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #777;
}