-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (40 loc) · 664 Bytes
/
style.css
File metadata and controls
47 lines (40 loc) · 664 Bytes
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
.gradient-background {
background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
background-size: 180% 180%;
animation: gradient-animation 18s ease infinite;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
#new{
border-radius: 50%;
}
.icon-square {
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
}
.profile-img {
height: 100px;
border-radius: 50%;
}
.dog-img{
border-radius: 50%;
height: 100px;
}
.longer-text{
font-size: 42px;
font-weight: 600;
text-align: center;
}
.title{
padding: 0px;
}