Filling questionnaire process for client now works like a charm
This commit is contained in:
32
public/css/loading.css
vendored
Normal file
32
public/css/loading.css
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
.signal {
|
||||
border: 3px solid #333;
|
||||
border-radius: 50px;
|
||||
height: 50px;
|
||||
left: 50%;
|
||||
margin: -25px 0 0 -25px;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 50px;
|
||||
|
||||
animation: pulsate 1.2s ease-out;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
.late {
|
||||
animation-delay: .25s;
|
||||
}
|
||||
|
||||
@keyframes pulsate {
|
||||
0% {
|
||||
transform: scale(.1);
|
||||
opacity: 0.0;
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: scale(1.2);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
<link rel="stylesheet" href="css/index.css">
|
||||
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="css/patua-one-font.css">
|
||||
<link rel="stylesheet" href="css/loading.css">
|
||||
</head>
|
||||
<body>
|
||||
<script src="js/index.js"></script>
|
||||
|
||||
2078
public/js/index.js
vendored
2078
public/js/index.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user