-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
79 lines (67 loc) · 1.19 KB
/
styles.css
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
@keyframes
animation_name {
0%{color:red;
font-size: 20px;
}
50%
{color:green;
font-size: 22px
}
100%
{color:blue;
margin-bottom: 10px;
}
}
@keyframes aesth{
0%{margin-left: -20px}
50%{margin-left: 20px}
100%{margin-left: -20px}
0%{color:red;
}
50%
{color:green; }
100%
{color:blue;
}
}
@keyframes bg{
0%{background-color: AntiqueWhite;}
25%{background-color: LightPink;}
50%{background-color: LightSkyBlue;}
75%{background-color: DarkSeaGreen;}
100%{background-color: HotPink;}
}
body{
animation-name: bg;
animation-duration: 0.5s;
animation-iteration-count: infinite;
}
.anime{
animation-name: animation_name;
animation-duration: 0.45s;
animation-iteration-count:infinite;
padding: auto;
padding-top: 10px;
min-height: 100px;
}
img {
width: 400px;
height: 250px;
}
body {
text-align: center;
font-family: "Arial";
}
.b {height: 10px;
width: 10px;
}
.aesthetic {
animation-name: aesth;
animation-duration: 1s;
animation-iteration-count: infinite;
font-family: Arial
}
.face {
height: 150px;
width: 400px;
}