-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (62 loc) · 1.25 KB
/
style.css
File metadata and controls
62 lines (62 loc) · 1.25 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
::-webkit-scrollbar{
width: 0;
height: 0;
}
body {
animation-name: bgColorChange;
animation-iteration-count: infinite;
animation-duration: 5s;
}
@keyframes bgColorChange {
0% {
background: linear-gradient(to left, rgb(255, 102, 102), rgb(205, 205, 205), cyan, blue, lightgreen);
animation-duration: 5s;
}
100%{
background-color: cyan;
animation-duration: 5s;
}
}
h2{
font-family: sans-serif;
font-size: 40px;
font-weight: bolder;
color: white;
position: relative;
top: 10pc;
left: 6pc;
}
button{
width: 100px;
height: 100px;
border: none;
border-radius: 50px;
font-family: sans-serif;
font-size: 30px;
color: white;
text-align: center;
position: relative;
top: 10pc;
left: 27pc;
animation-name: buttonBGColorChange;
animation-duration: 5s;
animation-iteration-count: infinite;
}
@keyframes buttonBGColorChange{
0%{
background-color: cyan;
animation-duration: 5s;
}
100% {
background: linear-gradient(to left, rgb(255, 102, 102), rgb(205, 205, 205), cyan, blue, lightgreen);
animation-duration: 5s;
}
}
p{
font-family: sans-serif;
color: white;
font-size: 20px;
position: relative;
top: 1pc;
left: 1pc;
}