-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogress.html
More file actions
80 lines (69 loc) · 1.97 KB
/
progress.html
File metadata and controls
80 lines (69 loc) · 1.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Progress</title>
<style>
body {
background-color: #F5F5FD;
font-family: Arial;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
}
.card {
background-color: #FFFFFF;
padding: 20px 20px 40px 20px;
border-radius: 20px;
width: 30vw;
height: max-content;
box-shadow: 0px 0px 10px 10px #D1D0F5;
}
.progress-circle {
border: 0.4em solid #D1D0F5;
padding: 1em;
border-radius: 50%;
width: 2em;
height: 2em;
display: flex;
justify-content: center;
align-items: center;
font-weight: bolder;
box-shadow: 0px 0px 5px 5px #F5F5FD;
}
.card-body {
display: flex;
gap: 20px;
align-items: flex-end;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<h2>Your progress</h2>
<div class="card-body">
<div class="progress-circle">
<span>93%</span>
</div>
<div class="help-text">
<p style="font-size: 20px;margin:0;font-weight: bolder;">32 of 42 complete</p>
<p style="margin-top:10px;">
Finish course to get certificate</p>
</div>
</div>
</div>
</div>
<div style="text-align: center;">
<p>
Design Inspiration: <a href="https://www.uidesigndaily.com/posts/progress" target="_blank">Progress - By UI
Design Daily
</a>
</p>
</div>
</body>
</html>