-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (63 loc) · 1.08 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
@import "normalize.css";
@import "basscss-grid";
@import "csskit";
@import "data-grid";
@import "data-form";
html,
body {
font: 18px/1.5 'Source Sans Pro', 'Helvetica Neue', Helvetica, arial, sans-serif;
color: #444;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
font-weight: 300;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
* {
box-sizing: border-box;
}
#app, #editor-wrapper, .view-wrapper, #map-container, #map {
width: 100%;
height: 100%;
}
#editor-inner {
position: absolute;
overflow: scroll;
}
.editor-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 40px;
}
.view-wrapper {
position: fixed;
top: 40px;
}
.editor-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 40px;
border-bottom: 1px solid #ccc;
}
.view-choice {
display: inline;
height: 39px;
line-height: 40px;
border-radius: 0px;
border: 0px;
font-size: 13px;
outline: none;
cursor: pointer;
}
.view-choice:hover,
.view-choice:focus {
border: 0px;
background-color: #efefef;
}