-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
57 lines (50 loc) · 1.06 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #120c63;
}
header {
animation-name:rainbow;
animation-duration: 2s;
animation-iteration-count: infinite;
/*background-color: #5f55e8;*/
color: white;
text-align: center;
padding: 1em;
}
.image-container {
display: inline-flex;
justify-content: space-between;
flex-wrap: wrap
}
.image-subheading {
width: 100%; /* Adjust the width as needed */
text-align: center;
color: white
}
@keyframes rainbow {
0% {background: #ff0000;}
10% {background: #ff8000;}
20% {background: #ffff00;}
30% {background: #80ff00;}
40% {background: #00ff00;}
50% {background: #00ff80;}
60% {background: #00ffff;}
70% {background: #0080ff;}
80% {background: #0000ff;}
90% {background: #8000ff;}
100% {background: #ff0080;}
}
main {
padding: 1em;
}
footer {
background-color: #0e085c;
color: white;
text-align: center;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}