-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (53 loc) · 1.58 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
/* @import url("https://fonts.gooogleapis.com/css2?family=+Roboto:wght@400;700&display=swap"); */
@import url("https://fonts.gooogleapis.com/css2?family=Poppins&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: #f4f4f4;
font-family: "Poppins", sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
}
.title {
margin: 10px 0 0;
text-align: center;
}
/* h1 {
font-size: 45px;
font-weight: 700;
background: linear-gradient(to right, #bcbcbc 25%,#ffcd02 25%, #ffcd02 50%, #e84f47 50%, #e84f47 75%, #65c1ac 75%);
} */
.container {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
max-width: 10000px;
}
.container img {
object-fit: cover;
margin: 10px;
height: 300px;
width: 300px;
max-width: 100%;
}
.animated_rainbow_1 {
font-size: 70px;
font-variant: small-caps;
text-transform: uppercase;
font-family: Arial Black, Gadget, sans-serif;
background-image: -webkit-linear-gradient(left, #f00, #ff2b00, #f50, #ff8000, #fa0, #ffd500, #ff0, #d4ff00, #af0, #80ff00, #5f0, #2bff00, #0f0, #00ff2a, #0f5, #00ff80, #0fa, #00ffd5, #0ff, #00d5ff, #0af, #0080ff, #05f, #002aff, #00f, #2b00ff, #50f, #8000ff, #a0f, #d400ff, #f0f, #ff00d4, #f0a, #ff0080, #f05, #ff002b, #f00);
-webkit-animation: animatedBackground_a 5s linear infinite alternate;
-webkit-background-clip: text;
-webkit-text-fill-color: #0000;
background-clip: text;
}
@keyframes animatedBackground_a {
0% { background-position: 0 0 }
100% { background-position: -500px 0 }
}