Filling questionnaire process for client now works like a charm

This commit is contained in:
2018-01-16 15:18:22 +07:00
parent 573f678c69
commit 3f66ec9a4c
10 changed files with 1810 additions and 1429 deletions

32
public/css/loading.css vendored Normal file
View 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;
}
}

View File

@@ -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

File diff suppressed because one or more lines are too long