-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
107 lines (99 loc) · 1.53 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
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
.App {
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
@keyframes mainTitle {
from {
color: red;
}
to {
color: white;
}
to {
color: blue;
}
}
@keyframes each {
from {
color: purple;
}
to {
color: blue;
}
to {
color: goldenrod;
}
}
@keyframes subt {
from {
color: red;
}
to {
color: yellow;
}
to {
color: green;
}
}
@keyframes bkgrdc {
from {
background-color: lightcyan;
}
to {
background-color: darkslateblue;
}
to {
background-color: white;
}
}
body {
padding: 0;
margin: 0;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
animation-name: bkgrdc;
animation-duration: 25s;
}
h1 {
color: crimson;
text-align: center;
animation-name: mainTitle;
animation-duration: 3s;
animation-iteration-count: infinite;
}
.container {
text-align: center;
}
.containerCenter {
justify-content: center;
}
.basic {
color: white;
}
.eachl {
color: cornflowerblue;
animation-name: each;
animation-duration: 3s;
animation-iteration-count: infinite;
}
.subttt {
color: aqua;
animation-name: subt;
animation-duration: 3s;
animation-iteration-count: infinite;
}
.subtt {
color: aqua;
animation-name: subt;
animation-duration: 1s;
animation-iteration-count: infinite;
}
.ssm {
color: aqua;
font-size: medium;
animation-name: subt;
animation-duration: 3s;
animation-iteration-count: infinite;
}