forked from ReoCorreia/firstRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
125 lines (120 loc) · 2.43 KB
/
styles.css
File metadata and controls
125 lines (120 loc) · 2.43 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
@import url(https://fonts.googleapis.com/css?family=Fredoka+One);
/*
css design by @jofpin
*/
body {
background: #f5f5f5;
text-align: center;
}
h1 {
font-size: 3em;
font-family: "Fredoka One", sans-serif;
font-weight: normal;
color: #42A5F5;
}
.crazy-c {
background: #42A5F5;
width: 1em;
height: 1em;
font-size: 6em;
margin: .61em auto;
border-radius: 100%;
border: 0.12em solid #777e8c;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
-webkit-animation: crazy-color .8s infinite;
animation: crazy-color .8s infinite;
}
@-webkit-keyframes crazy-color {
0% {
background: #42A5F5;
box-shadow: .60em 2px #42A5F5;
transform: rotate(360deg);
}
30% {
background: #ff6680;
box-shadow: 3px .60em #ff6680;
transform: rotate(360deg);
}
50% {
background: #7E57C2;
box-shadow: .60em 2px #7E57C2;
transform: rotate(360deg);
}
60% {
background: #FFEE58;
box-shadow: 3px .60em #FFEE58;
transform: rotate(-360deg);
}
70% {
background: #AB47BC;
box-shadow: .60em 2px #AB47BC;
transform: rotate(360deg);
}
80% {
background: #FF7043;
box-shadow: 3px -.60em #FF7043;
transform: rotate(-360deg);
}
90% {
background: #7E57C2;
box-shadow: -.60em 2px #7E57C2;
transform: rotate(-360deg);
}
95% {
background: #795548;
box-shadow: 3px -.60em #795548;
transform: rotate(360deg);
}
100% {
background: #42A5F5;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
transform: none;
}
}
@keyframes crazy-color {
0% {
background: #42A5F5;
box-shadow: .60em 2px #42A5F5;
transform: rotate(360deg);
}
30% {
background: #ff6680;
box-shadow: 3px .60em #ff6680;
transform: rotate(360deg);
}
50% {
background: #7E57C2;
box-shadow: .60em 2px #7E57C2;
transform: rotate(360deg);
}
60% {
background: #FFEE58;
box-shadow: 3px .60em #FFEE58;
transform: rotate(-360deg);
}
70% {
background: #AB47BC;
box-shadow: .60em 2px #AB47BC;
transform: rotate(360deg);
}
80% {
background: #FF7043;
box-shadow: 3px -.60em #FF7043;
transform: rotate(-360deg);
}
90% {
background: #7E57C2;
box-shadow: -.60em 2px #7E57C2;
transform: rotate(-360deg);
}
95% {
background: #795548;
box-shadow: 3px -.60em #795548;
transform: rotate(360deg);
}
100% {
background: #42A5F5;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
transform: none;
}
}