Blame view

src/less/styles.less 2.23 KB
ec938bf0   Tarpit Grover   first commit
1
2
3
4
5
6
7
// 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;
3ef35c23   Sean Wills   Commented feature...
8
    font-size: 12px;
ec938bf0   Tarpit Grover   first commit
9
10
11
    color: white;
    color: #fff;
    &:focus {
a668a573   Sean Wills   new
12
        outline: none !important;
ec938bf0   Tarpit Grover   first commit
13
14
15
16
17
18
    }
}

html {
    overflow: hidden;
    height: 100%;
ec938bf0   Tarpit Grover   first commit
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    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
484036e0   Tarpit Grover   WIP
37
.container-fluid {
ec938bf0   Tarpit Grover   first commit
38
39
40
41
    width: 100%;
    height: 100%;
    position: relative;
    .left {
3ef35c23   Sean Wills   Commented feature...
42
        overflow: none;
ec938bf0   Tarpit Grover   first commit
43
44
45
46
        width: 25%;
        position: absolute;
        top: 32px;
        left: 32px;
3ef35c23   Sean Wills   Commented feature...
47
        padding: 24px;
ec938bf0   Tarpit Grover   first commit
48
49
50
        background-color: rgba(10,10,10,0.8);
        z-index: 2;
        border-radius: 8px;
3ef35c23   Sean Wills   Commented feature...
51
52
53
54
55
        .enabled {
            border-bottom: 1px solid white;
            margin-bottom: 16px;
            div {
                margin: 8px;
93483f6d   Sean Wills   Settings Working,...
56
                width: 90%;
3ef35c23   Sean Wills   Commented feature...
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
            }
        }
        .search {
            display: inline-block;
            width: 100%;
            div {
                .lbl {
                    margin-top: 15px;
                    margin-bottom: 0px;
                }
            }
        }
        .settings {
            border-top: 1px solid white;
            display: none;
            width: 100%;
93483f6d   Sean Wills   Settings Working,...
73
74
            div{
                p{
3ef35c23   Sean Wills   Commented feature...
75
76
77
78
79
80
                    margin-top: 15px;
                    margin-bottom: 15px;
                }
            }
            padding: 16px;
        }
856e1d58   Sean Wills   Search menu
81
    }
ec938bf0   Tarpit Grover   first commit
82
83
84
85
86
87
88
89
    .map {
        z-index: 1;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        #map-div {
a668a573   Sean Wills   new
90
          position: unset !important;
ec938bf0   Tarpit Grover   first commit
91
          width: 100%;
856e1d58   Sean Wills   Search menu
92
          height: 100%;
ec938bf0   Tarpit Grover   first commit
93
94
95
96
        }
    }
}

ec938bf0   Tarpit Grover   first commit
97
//Placeholder
856e1d58   Sean Wills   Search menu
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// ::-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;
// }