Skip to content

Commit 8b0fc71

Browse files
committed
change bg color graident"
1 parent 957fd3e commit 8b0fc71

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

formapi/css/style.css

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/*Format body waves*/
99
body {
10-
background: linear-gradient(300deg,deepskyblue,darkviolet,blue);
10+
background: linear-gradient(253deg,#fe7263,#3fddbe,#bf4788,#8a4d07);
1111
background-size: 180% 180%;
1212
animation: gradient-animation 18s ease infinite;
1313
background-attachment: fixed;
@@ -26,6 +26,17 @@ body {
2626
background-position: 0% 50%;
2727
}
2828
}
29+
30+
@keyframes fadeDown {
31+
0% {
32+
opacity: 0;
33+
transform: translateY(-10px);
34+
}
35+
100% {
36+
opacity: 1;
37+
transform: translateY(0);
38+
}
39+
}
2940
/************End of Keyframe Formatting************/
3041

3142
/************Font Face Formatting************/
@@ -73,9 +84,11 @@ header h1 {
7384
form {
7485
width: 90%;
7586
margin: 0 auto;
87+
margin-top: 50px;
7688
background-color: white;
7789
border-radius: 10px;
7890
padding: 50px;
91+
animation: fadeDown 1s ease-in-out;/*Create fade down animation*/
7992
}
8093

8194
/*Format form title*/

0 commit comments

Comments
 (0)