Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Css Loader #31

Open
wants to merge 1 commit into
base: step2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions css/load9.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
.wrapper{
width: 700px;
margin: 0 auto;
}
.row{
text-align: center;
padding: 50px 0;
}
.span{
float: left;
width: 200px;
height: 200px;
background-color:rgb(13, 197, 193);
vertical-align: middle;
border-radius: 1px;
}
.typing_loader{
width: 30px;
height: 30px;
border-radius: 50%;
animation: typing 1s linear infinite alternate;
position: absolute;
margin: 80px auto;
margin-left: 50px;
}

@keyframes typing{
0%{
background-color: rgba(255,255,255, 1);
box-shadow: 36px 0px 0px 0px rgba(255,255,255, 0.2),
72px 0px 0px 0px rgba(255,255,255, 0.2);
}
25%{
background-color: rgba(255,255,255, 0.4);
box-shadow: 37px 0px 0px 0px rgba(255,255,255, 2),
72px 0px 0px 0px rgba(255,255,255, 0.2);
}
75%{
background-color: rgba(255,255,255, 0.4);
box-shadow: 36px 0px 0px 0px rgba(255,255,255, 0.2),
72px 0px 0px 0px rgba(255,255,255, 1);
}
}