Skip to content

Commit 6ca4f7d

Browse files
authored
Create style.css
1 parent 7eb0efb commit 6ca4f7d

File tree

1 file changed

+29
-0
lines changed
  • python_projects/58_startup_website_Tindog

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.gradient-background {
2+
background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
3+
background-size: 180% 180%;
4+
animation: gradient-animation 18s ease infinite;
5+
}
6+
7+
@keyframes gradient-animation {
8+
0% {
9+
background-position: 0% 50%;
10+
}
11+
50% {
12+
background-position: 100% 50%;
13+
}
14+
100% {
15+
background-position: 0% 50%;
16+
}
17+
}
18+
19+
.icon-square {
20+
width: 3rem;
21+
height: 3rem;
22+
border-radius: 0.75rem;
23+
}
24+
25+
26+
.profile-img {
27+
height: 100px;
28+
border-radius: 50% ;
29+
}

0 commit comments

Comments
 (0)