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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
body {
display: block;
width: 916px;
margin: 0 auto;
padding: 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font: 12pt Tahoma, Helvetica, sans-serif;
}
h1 {
border-bottom: 1px solid #ccc;
}
.CodeMirror {
border: 1px solid #ccc;
}
pre {
display: block;
overflow: auto;
width: 100%;
border: 1px solid #ccc;
background: #eee;
padding: 4px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
button {
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
background: -webkit-linear-gradient(#fff, #eee);
background: -moz-linear-gradient(#fff, #eee);
background: -o-linear-gradient(#fff, #eee);
background: linear-gradient(#fff, #eee);
font: inherit;
padding: 4px 8px;
border: 1px solid #ccc;
cursor: pointer;
color: #000;
}
button[type=submit] {
background: -webkit-gradient(linear, left top, left bottom, from(#efe), to(#cec));
background: -webkit-linear-gradient(#efe, #cec);
background: -moz-linear-gradient(#efe, #cec);
background: -o-linear-gradient(#efe, #cec);
background: linear-gradient(#efe, #cec);
border-color: #9c9;
}
button:hover {
background: -webkit-gradient(linear, left top, left bottom, from(#ffe), to(#eec));
background: -webkit-linear-gradient(#ffe, #eec);
background: -moz-linear-gradient(#ffe, #eec);
background: -o-linear-gradient(#ffe, #eec);
background: linear-gradient(#ffe, #eec);
border-color: #cc9;
}
#loader {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: rgba(255, 255, 255, 0.75);
z-index: 999;
}
#spinner {
width: 64px;
height: 64px;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 12px solid #000;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-top-color: transparent;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
margin: auto;
-webkit-animation: spin 1s linear infinite;
-moz-animation: spin 1s linear infinite;
-o-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
}
#output {
border: 1px solid #ccc;
padding: 8px;
margin-top: 8px;
}
#output h4 {
margin: 0;
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-moz-keyframes spin {
from {
-moz-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-o-keyframes spin {
from {
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
from {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
|