UNPKG

1.73 kBCSSView Raw
1.body {
2 font-size: 14px;
3}
4
5.btn, .body {
6 font-family: "Raleway","Helvetica Neue",Helvetica,Arial,sans-serif;
7}
8
9
10.btn {
11 padding: 10px 50px;
12 color: #fff;
13 cursor: pointer;
14 display: inline-block;
15 text-decoration: none;
16 font-size: 24px;
17 border-radius: 4px;
18 background-color: #80BD95;
19 box-shadow: 0 3px 0 0 #72A884;
20 text-shadow: 0 -2px 0 rgba(0,0,0,.2);
21}
22
23
24.loader {
25 width: 30px;
26 height: 30px;
27 margin: 50px 0 50px -15px;
28 border: 8px solid #000;
29 border-right-color: transparent;
30 display: inline-block;
31 border-radius: 50%;
32 box-shadow: 0 0 25px 2px #eee;
33 border-right: 0 none;
34 -webkit-animation: spin 1s linear infinite;
35 -moz-animation: spin 1s linear infinite;
36 -ms-animation: spin 1s linear infinite;
37 -o-animation: spin 1s linear infinite;
38 animation: spin 1s linear infinite;
39}
40
41.js-fileapi-wrapper {
42 display: inline-block;
43 *zoom: 1;
44 *display: inline;
45}
46 .js-fileapi-wrapper input {
47 width: 0;
48 height: 0;
49 opacity: 0;
50 overflow: 0;
51 position: absolute;
52 }
53
54@-webkit-keyframes spin {
55 from { -webkit-transform: rotate(0deg); opacity: 0.4; }
56 50% { -webkit-transform: rotate(180deg); opacity: 1; }
57 to { -webkit-transform: rotate(360deg); opacity: 0.4; }
58}
59
60@-moz-keyframes spin {
61 from { -moz-transform: rotate(0deg); opacity: 0.4; }
62 50% { -moz-transform: rotate(180deg); opacity: 1; }
63 to { -moz-transform: rotate(360deg); opacity: 0.4; }
64}
65
66@-ms-keyframes spin {
67 from { -ms-transform: rotate(0deg); opacity: 0.4; }
68 50% { -ms-transform: rotate(180deg); opacity: 1; }
69 to { -ms-transform: rotate(360deg); opacity: 0.4; }
70}
71
72@keyframes spin {
73 from { transform: rotate(0deg); opacity: 0.2; }
74 50% { transform: rotate(180deg); opacity: 1; }
75 to { transform: rotate(360deg); opacity: 0.2; }
76}