-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (51 loc) · 901 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@500&display=swap');
body{
font-family: 'Baloo Bhaijaan 2', cursive;
}
.container{
width: 95%;
height:100vh ;
display: flex;
justify-content: center;
align-items: center;
}
.hex-colors{
text-align: center;
}
.hex-colors h1{
font-size: 2rem;
text-transform: uppercase;
animation: colorchange 5s infinite alternate;
}
.hex-colors h2{
font-size: 2rem;
margin-top: 15%;
}
@keyframes colorchange{
0%{
color :blueviolet;
}
20%{
color :red;
}
40%{
color :blue;
}
60%{
color :brown;
}
80%{
color :green;
}
100%{
color :rgb(214, 226, 43);
}
}
@media(max-width:480px){
.hex-colors h1{
font-size:1.5rem;
}
.hex-colors h2{
font-size:1.5rem;
}
}