blob: 800d3121c19f3c010fa68f2d2677d840b7e83a66 (
plain)
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
|
body{
font-family:georgia, Arial;
font-size:10pt;
}
h1{
font-size:18px;
width:50%;
margin:10px;
padding:10px;
}
#flatcontrols{
width:40%;
margin:10px;
padding:10px;
}
.lineadj{
display:none;
}
.threedadj{
display:none;
}
.gridbgadj{
display:none;
}
.imageoptions{
display:none;
}
.results{
display:none;
position:relative;
z-index:-100;
}
#output-url{
z-index:100;
width:500px;
}
.slider{
background-color:#eee5de;
display:inline-block;
width:50%;
}
#opacity-slider{
width:100%;
display:inline-block;
margin-right:0;
margin-left:0;
}
input{
width:70px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
background-color:#555;
}
#result
{
position:fixed;
right:20%;
top:20px;
}
#output-url
{
width:100%;
}
.urlinput
{
width:60%;
}
a
{
background-color:white;
max-width:100px;
}
a:link{
color: black;
}
a:visited{
color: black;
}
a:hover{
color: black;
}
a:active{
color: black;
}
table td{
padding:4px;
}
#threedmore, #imageoptionsmore{
background-color:white;
cursor:pointer;
font-size:20px;
text-align:center;
}
button {
background: white;
color: #000000;
font-size: 18px;
font-family: Georgia, serif;
text-decoration: none;
vertical-align: middle;
}
.button:hover {
border-top-color: #78e072;
background: #78e072;
color: #000000;
}
.options{
background-color:white;
}
.options-table{
width:100%;
}
|