-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (114 loc) · 2.52 KB
/
style.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<style>
body {
height: 100vh;
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: #ffffff;
opacity: 1;
background-size: 36px 36px;
background-image: repeating-linear-gradient(0deg, #bddcff, #bddcff 1.8px, #ffffff 1.8px, #ffffff);
}
hr {
border: none;
border-top: 10px dotted;
color: black;
background-color: none;
height: 10px;
width: 50%;
}
h1 {
font-size: 90px;
text-align: center;
text-transform: capitalize;
color: rgb(0, 0, 0);
animation: bgchange 10s infinite;
}
h2 {
text-align: center;
color: rgb(255, 0, 0);
font-size: 25px;
}
h3 {
text-align: center;
color: rgb(0, 0, 0);
}
h4 {
text-align: center;
font-size: 25px;
color: rgb(255, 0, 0);
}
h5 {
text-align: center;
text-transform: capitalize;
color: rgb(0, 0, 0);
}
span {
text-align: justify;
color: rgb(0, 0, 0);
}
@keyframes bgchange {
0% {
background-color: #ff0000
}
5% {
background-color: rgb(255, 115, 0)
}
10% {
background-color: rgb(255, 145, 71)
}
15% {
background-color: rgb(255, 208, 0)
}
20% {
background-color: rgb(255, 217, 0)
}
25% {
background-color: #fffb00
}
30% {
background-color: #d9ff00
}
35% {
background-color: #91ff00
}
40% {
background-color: #00ff15
}
45% {
background-color: #00ff95
}
50% {
background-color: #00ffd5
}
55% {
background-color: rgb(0, 255, 242)
}
60% {
background-color: rgb(71, 212, 255)
}
65% {
background-color: rgb(0, 162, 255)
}
70% {
background-color: rgb(0, 81, 255)
}
75% {
background-color: #4c00ff
}
80% {
background-color: #cc00ff
}
85% {
background-color: #f700ff
}
90% {
background-color: #ff009d
}
95% {
background-color: #ff0022
}
100% {
background-color: #ff0000
}
}
</style>