Blame view

src/less/styles.less 1.69 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: 15px;
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
        width: 25%;
ec938bf0   Tarpit Grover   first commit
43
44
45
46
        position: absolute;
        top: 32px;
        left: 32px;
        padding: 16px;
3ef35c23   Sean Wills   Commented feature...
47
        background-color: rgba(10,10,10,0.8);
ec938bf0   Tarpit Grover   first commit
48
49
50
        z-index: 2;
        border-radius: 8px;
    }
3ef35c23   Sean Wills   Commented feature...
51
52
53
54
55
    .settings-menu {
      width: 25%;
      position: absolute;
      top: 32px;
      left: 32px;
93483f6d   Sean Wills   Settings Working,...
56
      padding: 16px;
3ef35c23   Sean Wills   Commented feature...
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
      background-color: rgba(0.3,0.3,0.3,0.8);
      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%;
        }
93483f6d   Sean Wills   Settings Working,...
73
74
    }
}
3ef35c23   Sean Wills   Commented feature...
75
76
77
78
79
80

//Placeholder
// ::-webkit-input-placeholder {
//     /* Chrome/Opera/Safari */
//     color: #777;
// }
856e1d58   Sean Wills   Search menu
81
//
ec938bf0   Tarpit Grover   first commit
82
83
84
85
86
87
88
89
// ::-moz-placeholder {
//     /* Firefox 19+ */
//     color: #777;
// }
//
// :-ms-input-placeholder {
//     /* IE 10+ */
//     color: #777;
a668a573   Sean Wills   new
90
// }
ec938bf0   Tarpit Grover   first commit
91
//
856e1d58   Sean Wills   Search menu
92
// :-moz-placeholder {
ec938bf0   Tarpit Grover   first commit
93
94
95
//     /* Firefox 18- */
//     color: #777;
// }
ec938bf0   Tarpit Grover   first commit

856e1d58   Sean Wills   Search menu