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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
body {
width: 800px;color:#000;padding-bottom:50px;margin-top:-5px;margin:0 auto 0;
font-family: sans-serif; font-style: oblique; background:-moz-linear-gradient(top, pink, #000 50%, #000 51%, lightyellow);
background:-webkit-gradient(linear, left top, left bottom, from(pink), color-stop(50%, #000), color-stop(51%, #000), to(red));background-attachment:fixed;
background-image:url('http://dump.fm/images/20110227/1298835651215-dumpfm-ryder-MAYA_TILE.gif');background-position:center top;background-attachment:fixed;background-color:#ccc;
}
.page-title {
text-align: center;display:inline-block;
}
.page-title input {
font-size: 50%;
font-family: Monaco, "Courier New", Courier, monospace;letter-spacing:3px;color:#333;
/*border:9px ridge blue;*/width:140%;background-color:lightyellow;
}
.page-canvas {
border: 1px inset white;
margin: 0 auto;
overflow: hidden;background-image:url('http://ryder-ripps.com/FF/bg.jpg');background-position:top left;background-attachment:fixed;
position: relative;float:left;margin-bottom:10px;
}
.page-canvas .active img {
border: 3px dashed orange;
margin: -3px;
}
.page-editor {
}
.page-editor-layer {width:790px;
margin-top: 5px;cursor:pointer;margin-bottom:15px;
background-color: white;text-align:left;display:inline-block;
padding:5px; border: 1px inset gold;color:#333;
}
.page-editor-layer .url-input {
width: 80%;background-color:lightyellow;display:inline-block;
}
.page-editor-layer .fullscreen-handle {
float: left;cursor:pointer; display:inline-block;
}
.page-editor-layer img{margin-right:5px;padding-top:5px;display:inline-block;}
.page-editor-layer .delete-handle {display:inline-block;
float: right;cursor:pointer;padding-top:5px;
}
.page-editor-layer .rotate-handle{float:left;display:inline-block;}
.drag-handle{display:inline-block;float:left;margin}
.page-editor-layer-list .ui-state-highlight {
height: 2em;cursor:pointer;
line-height: 1.2em; float: right;
}
#unsaved-warning-msg {
display:inline-block;
text-align:center;width:200px;
color: black;padding:15px;background-color:yellow;
border:5px dashed black;font-size:100%;font-style: oblique;font-family: cursive;
float:right;
}
button{
letter-spacing:1px;
text-decoration:none;
padding:2px 12px 3px 12px;
cursor:pointer;font-size:20px;
position:relative;font-weight:100;
overflow:hidden;
vertical-align:middle;
background:#448ed4; border:1px ridged #fff;
background:-moz-linear-gradient(top, blue, #000 50%, #000 51%, lightyellow);
background:-webkit-gradient(linear, left top, left bottom, from(blue), color-stop(50%, #000), color-stop(51%, #000), to(red));
text-decoration:none;color:#fff;font-style: oblique;
-moz-border-radius:4px;
-webkit-border-radius:4px;
-moz-box-shadow:#777 0 0 0 1px;
-webkit-box-shadow:#777 0 0 0 1px;
text-shadow:rgba(0,0,0,.4) 0 1px 0;display:inline-block;width:300px;
}
#recent-pages{
float:left;
padding:9px;
border:1px dashed gold;
max-height:222px;
overflow:auto;display:none;
margin-top:50px;
margin-bottom:50px;
}
#recent-pages a{text-decoration:none; font-size: 55%;
font-family: Monaco, "Courier New", Courier, monospace;letter-spacing:3px;color:#333;}
#recent-pages a:hover{text-decoration:underline;}
#thumbnail-uploader{
letter-spacing:1px;
text-decoration:none;
padding:2px 12px 3px 12px;
cursor:pointer;font-size:20px;
position:relative;font-weight:100;
overflow:hidden;
vertical-align:middle;margin-left:10px;
background:#448ed4; border:1px ridged #fff;
background:-moz-linear-gradient(top, blue, #000 50%, #000 51%, lightyellow);
background:-webkit-gradient(linear, left top, left bottom, from(blue), color-stop(50%, #000), color-stop(51%, #000), to(red));
text-decoration:none;color:#fff;font-style: oblique;
-moz-border-radius:4px;
-webkit-border-radius:4px;
-moz-box-shadow:#777 0 0 0 1px;
-webkit-box-shadow:#777 0 0 0 1px;
text-shadow:rgba(0,0,0,.4) 0 1px 0;display:block;width:80px;margin-top:10px;margin-bottom:20px;
}
#address-picker{top:0px;margin-top:-60px;}
#map{min-width:750px;min-height:550px;}
|