-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
147 lines (116 loc) · 2.66 KB
/
Copy pathstyle.css
File metadata and controls
147 lines (116 loc) · 2.66 KB
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
139
140
141
142
143
144
145
146
147
@import url(http://fonts.googleapis.com/css?family=Lato:100,300,700);
/* Loader #2 by Sam Lillicrap
http://www.samueljwebdesign.co.uk
http://codepen.io/samueljweb/pen/bGKwk
*/
html {
background-color: #27ae60; }
h1 {
font-family: 'Lato';
color: white;
text-transform: uppercase;
font-size: 1em;
letter-spacing: 1.5px;
text-align: center;
width: 90px;
margin-top: 20px;
-webkit-animation: fade 2s infinite; }
.container {
width: 110px;
padding-top: 180px;
margin: auto;
vertical-align: middle; }
.ex {
font-family: 'Lato';
color: white;
text-transform: uppercase;
font-size: 1em;
letter-spacing: 1.5px;
text-align: center;
width: 90px;
margin-top: 20px;
-webkit-animation: fade 2s infinite;
font-family: 'flamenco';
font-size: 4em;
width: 40px;
height: 40px;
margin-top: -17px;
display: inline-block;
border: 4px double white; }
.ex:nth-child(1) {
-webkit-animation: spin1 3s infinite 1s;
-webkit-transform-origin: 50% 52%;
margin-left: 10px; }
.ex:nth-child(2) {
-webkit-animation: spin2 3s infinite 1s;
-webkit-transform-origin: 50% 52%;
margin-left: -20px; }
.ex:nth-child(3) {
-webkit-animation: spin2 3s infinite 1s;
-webkit-transform-origin: 50% 52%;
margin-left: 10px; }
.ex:nth-child(4) {
margin-left: -1px;
-webkit-animation: spin1 3s infinite 1s;
-webkit-transform-origin: 50% 52%;
margin-left: -20px; }
@-webkit-keyframes spin1 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg); } }
@-moz-keyframes spin1 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg); } }
@-o-keyframes spin1 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg); } }
@keyframes spin1 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg); } }
@-webkit-keyframes spin2 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(-360deg); } }
@-moz-keyframes spin2 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(-360deg); } }
@-o-keyframes spin2 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(-360deg); } }
@keyframes spin2 {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(-360deg); } }
@-webkit-keyframes fade {
50% {
opacity: 0.5; }
100% {
opacity: 1; } }
@-moz-keyframes fade {
50% {
opacity: 0.5; }
100% {
opacity: 1; } }
@-o-keyframes fade {
50% {
opacity: 0.5; }
100% {
opacity: 1; } }
@keyframes fade {
50% {
opacity: 0.5; }
100% {
opacity: 1; } }