-
Notifications
You must be signed in to change notification settings - Fork 3
/
filled.ejs
130 lines (120 loc) · 2.18 KB
/
filled.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1">
<title>Login</title>
<style>
body{
background: #7a9;
}
a{
justify-content:left;
padding:30px;
text-decoration: none;
color: #020202;
font-size: 18px;
margin-top: 60px;
}
button{
background-color: #7a9;
border: 0px;
}
.required{
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
background: #7a9;
}
.container {
background-color: white;
height: 400px;
width: 350px;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 2px 10px 10px rgba(#000, 0.05);
}
.circle,
.circle-border {
width: 60px;
height: 60px;
border-radius: 50%;
}
.circle {
z-index: 1;
position: relative;
background: white;
transform: scale(1);
animation: success-anim 700ms ease;
}
.circle-border {
z-index: 0;
position: absolute;
background: #8f6;
transform: scale(1.1);
animation: circle-anim 400ms ease;
}
@keyframes success-anim {
0% {
transform: scale(0);
}
30% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes circle-anim {
from {
transform: scale(0);
}
to {
transform: scale(1.1);
}
}
.success::before,
.success::after {
content: "";
display: block;
height: 4px;
background: #8f6;
position: absolute;
}
.success::before {
width: 17px;
top: 58%;
left: 23%;
transform: rotateZ(50deg);
}
.success::after {
width: 30px;
top: 50%;
left: 35%;
transform: rotateZ(-50deg);
}
</style>
<!-- the form awesome library is used to add icons to our form -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
<!-- include the stylesheet file -->
</head>
<body>
<form class="" action="/">
<td>
<a><button type="submit" >← HOME</button></a>
</form>
<div class="required">
<div class="container" id="required">
<div class="circle-border"></div>
<div class="circle">
<div class="success"></div>
</div>
</div>
</div>
</div>
</body>
</html>