-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (65 loc) · 1 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
body{
background:#f3f3f3;
margin:0;
padding:0;
font-family: 'Helvetica', 'Arial', sans-serif;
height:100%;
}
.popin{
background:#fff;
padding:15px;
box-shadow: 0 0 20px #999;
border-radius:2px;
position: absolute;
top:15px;
bottom: 15px;
left:460px;
right:15px;
}
.popin-left{
background:#fff;
padding:15px;
box-shadow: 0 0 20px #999;
border-radius:2px;
position: absolute;
top:15px;
bottom: 15px;
left:15px;
width:400px;
}
#map{
position: absolute;
top:15px;
bottom: 15px;
left:15px;
right:15px;
background:#6699cc;
}
#rooms-descriptions{
position: absolute;
top:15px;
bottom: 15px;
left:15px;
right:15px;
resize: none;
overflow: auto;
}
.alert{
position:relative;
float:top;
margin-left: 490px;
margin-right: 45px;
margin-top: 15px;
margin-bottom:15px;
height: 30px;
background:red;
padding:15px;
box-shadow: 0 0 20px #999;
border-radius:2px;
}
.alerts .alert:first-child{
margin-top: 45px;
}
#map div{
cursor:crosshair;
}