1 | /*-------------------------
|
---|
2 | Simple reset
|
---|
3 | --------------------------*/
|
---|
4 |
|
---|
5 |
|
---|
6 | *{
|
---|
7 | margin:0;
|
---|
8 | padding:0;
|
---|
9 | }
|
---|
10 |
|
---|
11 |
|
---|
12 | /*-------------------------
|
---|
13 | General Styles
|
---|
14 | --------------------------*/
|
---|
15 |
|
---|
16 |
|
---|
17 | html{
|
---|
18 | background-color:#ebebec;
|
---|
19 |
|
---|
20 | background-image:-webkit-radial-gradient(center, #ebebec, #b4b4b4);
|
---|
21 | background-image:-moz-radial-gradient(center, #ebebec, #b4b4b4);
|
---|
22 | background-image:radial-gradient(center, #ebebec, #b4b4b4);
|
---|
23 |
|
---|
24 | min-height:900px;
|
---|
25 | }
|
---|
26 |
|
---|
27 | body{
|
---|
28 | font:15px/1.3 Arial, sans-serif;
|
---|
29 | color: #4f4f4f;
|
---|
30 | }
|
---|
31 |
|
---|
32 | a, a:visited {
|
---|
33 | outline:none;
|
---|
34 | color:#389dc1;
|
---|
35 | }
|
---|
36 |
|
---|
37 | a:hover{
|
---|
38 | text-decoration:none;
|
---|
39 | }
|
---|
40 |
|
---|
41 | section, footer, header, aside{
|
---|
42 | display: block;
|
---|
43 | }
|
---|
44 |
|
---|
45 |
|
---|
46 | /*----------------------------
|
---|
47 | The file upload form
|
---|
48 | -----------------------------*/
|
---|
49 |
|
---|
50 |
|
---|
51 | #upload{
|
---|
52 | font-family:'PT Sans Narrow', sans-serif;
|
---|
53 | background-color:#373a3d;
|
---|
54 |
|
---|
55 | background-image:-webkit-linear-gradient(top, #373a3d, #313437);
|
---|
56 | background-image:-moz-linear-gradient(top, #373a3d, #313437);
|
---|
57 | background-image:linear-gradient(top, #373a3d, #313437);
|
---|
58 |
|
---|
59 | width:100%;
|
---|
60 | padding:30px;
|
---|
61 | border-radius:3px;
|
---|
62 |
|
---|
63 | margin:0px auto 100px;
|
---|
64 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
---|
65 | }
|
---|
66 |
|
---|
67 | #drop{
|
---|
68 | background-color: #2E3134;
|
---|
69 | padding: 40px 50px;
|
---|
70 | margin-bottom: 30px;
|
---|
71 | border: 20px solid rgba(0, 0, 0, 0);
|
---|
72 | border-radius: 3px;
|
---|
73 | border-image: url('../img/border-image.png') 25 repeat;
|
---|
74 | text-align: center;
|
---|
75 | text-transform: uppercase;
|
---|
76 |
|
---|
77 | font-size:16px;
|
---|
78 | font-weight:bold;
|
---|
79 | color:#7f858a;
|
---|
80 | }
|
---|
81 |
|
---|
82 | #drop a{
|
---|
83 | background-color:#007a96;
|
---|
84 | padding:12px 26px;
|
---|
85 | color:#fff;
|
---|
86 | font-size:14px;
|
---|
87 | border-radius:2px;
|
---|
88 | cursor:pointer;
|
---|
89 | display:inline-block;
|
---|
90 | margin-top:12px;
|
---|
91 | line-height:1;
|
---|
92 | }
|
---|
93 |
|
---|
94 | #drop a:hover{
|
---|
95 | background-color:#0986a3;
|
---|
96 | }
|
---|
97 |
|
---|
98 | #drop input{
|
---|
99 | display:none;
|
---|
100 | }
|
---|
101 |
|
---|
102 | #upload ul{
|
---|
103 | list-style:none;
|
---|
104 | margin:0 -30px;
|
---|
105 | border-top:1px solid #2b2e31;
|
---|
106 | border-bottom:1px solid #3d4043;
|
---|
107 | }
|
---|
108 |
|
---|
109 | #upload ul li{
|
---|
110 |
|
---|
111 | background-color:#333639;
|
---|
112 |
|
---|
113 | background-image:-webkit-linear-gradient(top, #333639, #303335);
|
---|
114 | background-image:-moz-linear-gradient(top, #333639, #303335);
|
---|
115 | background-image:linear-gradient(top, #333639, #303335);
|
---|
116 |
|
---|
117 | border-top:1px solid #3d4043;
|
---|
118 | border-bottom:1px solid #2b2e31;
|
---|
119 | padding:15px;
|
---|
120 | height: 60px;
|
---|
121 |
|
---|
122 | position: relative;
|
---|
123 | }
|
---|
124 |
|
---|
125 | #upload ul li input{
|
---|
126 | display: none;
|
---|
127 | }
|
---|
128 |
|
---|
129 | #upload ul li p{
|
---|
130 | width: 144px;
|
---|
131 | overflow: hidden;
|
---|
132 | white-space: nowrap;
|
---|
133 | color: #EEE;
|
---|
134 | font-size: 16px;
|
---|
135 | font-weight: bold;
|
---|
136 | position: absolute;
|
---|
137 | top: 5px;
|
---|
138 | left: 100px;
|
---|
139 | }
|
---|
140 |
|
---|
141 | #upload ul li i{
|
---|
142 | font-weight: normal;
|
---|
143 | font-style:normal;
|
---|
144 | color:#7f7f7f;
|
---|
145 | display:block;
|
---|
146 | }
|
---|
147 |
|
---|
148 | #upload ul li canvas{
|
---|
149 | top: 5px;
|
---|
150 | left: 32px;
|
---|
151 | position: absolute;
|
---|
152 | }
|
---|
153 |
|
---|
154 | #upload ul li span{
|
---|
155 | width: 15px;
|
---|
156 | height: 12px;
|
---|
157 | background: url('../img/icons.png') no-repeat;
|
---|
158 | position: absolute;
|
---|
159 | top: 20px;
|
---|
160 | right: 33px;
|
---|
161 | cursor:pointer;
|
---|
162 | }
|
---|
163 |
|
---|
164 | #upload ul li.working span{
|
---|
165 | height: 16px;
|
---|
166 | background-position: 0 -12px;
|
---|
167 | }
|
---|
168 |
|
---|
169 | #upload ul li.error p{
|
---|
170 | color:red;
|
---|
171 | }
|
---|
172 |
|
---|
173 |
|
---|
174 | /*----------------------------
|
---|
175 | The Demo Footer
|
---|
176 | -----------------------------*/
|
---|
177 |
|
---|
178 |
|
---|
179 | footer{
|
---|
180 | background-color: #080808;
|
---|
181 | bottom: 0;
|
---|
182 | box-shadow: 0 -1px 2px rgba(0,0,0,0.4);
|
---|
183 | height: 40px;
|
---|
184 | left: 0;
|
---|
185 | position: fixed;
|
---|
186 | width: 100%;
|
---|
187 | z-index: 100000;
|
---|
188 | }
|
---|
189 |
|
---|
190 | footer h2{
|
---|
191 | font-size: 14px;
|
---|
192 | font-weight: normal;
|
---|
193 | position: absolute;
|
---|
194 | top:0;
|
---|
195 | left: 50%;
|
---|
196 | bottom:0;
|
---|
197 | margin-left: -420px;
|
---|
198 | padding:13px 20px 0;
|
---|
199 | border:1px solid #000;
|
---|
200 | border-width:0 1px;
|
---|
201 | background-color:rgba(0,0,0,0.6);
|
---|
202 | box-shadow:0 0 5px #000 inset;
|
---|
203 | line-height: 1;
|
---|
204 | margin-top: 0;
|
---|
205 | }
|
---|
206 |
|
---|
207 | footer h2 a{
|
---|
208 | color: #EEEEEE !important;
|
---|
209 | text-decoration:none !important;
|
---|
210 | }
|
---|
211 |
|
---|
212 | footer h2 i{
|
---|
213 | font-style:normal;
|
---|
214 | color:#888;
|
---|
215 | }
|
---|
216 |
|
---|
217 | #tzine-download{
|
---|
218 | opacity:0.9;
|
---|
219 | background-color:#257691;
|
---|
220 | font-size:11px;
|
---|
221 | text-align:center;
|
---|
222 | text-transform:uppercase;
|
---|
223 | width:150px;
|
---|
224 | height:28px;
|
---|
225 | line-height:28px;
|
---|
226 | text-decoration:none !important;
|
---|
227 |
|
---|
228 | display: inline-block;
|
---|
229 | border-radius: 2px;
|
---|
230 | color: #fff !Important;
|
---|
231 | font-weight: bold;
|
---|
232 | box-shadow: 0 -1px 2px #1e5e74 inset;
|
---|
233 |
|
---|
234 | border-top:1px solid #26849c;
|
---|
235 |
|
---|
236 | text-shadow:1px 1px 1px #1e6176;
|
---|
237 | margin-top:6px;
|
---|
238 | }
|
---|
239 |
|
---|
240 | #tzine-download:hover{
|
---|
241 | opacity:1;
|
---|
242 | }
|
---|
243 |
|
---|
244 | #tzine-actions{
|
---|
245 | position:absolute;
|
---|
246 | top:0;
|
---|
247 | width:500px;
|
---|
248 | right:50%;
|
---|
249 | margin-right:-420px;
|
---|
250 | text-align:right;
|
---|
251 | }
|
---|
252 |
|
---|
253 | #tzine-actions iframe{
|
---|
254 | display: inline-block;
|
---|
255 | height: 21px;
|
---|
256 | width: 95px;
|
---|
257 | position: relative;
|
---|
258 | float: left;
|
---|
259 | margin-top: 11px;
|
---|
260 | }
|
---|