Skip to content

Commit 70a21b6

Browse files
committed
new file: Sign in.jpg
modified: main.css
1 parent e3a134f commit 70a21b6

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Sign in.jpg

27.5 KB
Loading

main.css

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44

55
body{
66
margin: 0;
7-
background-color: #ffffffd3;
7+
background: url(Sign\ in.jpg);
8+
background-position: center;
9+
background-size: cover;
10+
background-repeat: no-repeat;
811
font-family: 'Poppins';
912
display: flex;
1013
flex-direction: column;
@@ -214,4 +217,15 @@ input {
214217
form, button{
215218
scale: .75;
216219
}
220+
}
221+
222+
.container{
223+
animation: growin 3s cubic-bezier(0.075, 0.82, 0.165, 1)forwards;
224+
transform: scale(.4);
225+
}
226+
227+
@keyframes growin {
228+
to{
229+
transform: scale(1);
230+
}
217231
}

0 commit comments

Comments
 (0)