Skip to content

Commit bd40361

Browse files
committed
first commit
0 parents  commit bd40361

File tree

128 files changed

+27572
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+27572
-0
lines changed

.DS_Store

8 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.env
2+
Info.json

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Covid-19-Case-Tracker-Website
2+
3+
Web Application that shows the prevention methods against covid as well as the number of covid cases worldwide & country wise. Also checks covid infection risk in a person & shows places with less & more infected people on the map.
4+
5+
# Snapshots
6+
7+
# Homepage
8+
9+
![Homepage](https://user-images.githubusercontent.com/48918543/190849638-475246f9-1ebe-48fd-bab1-2e1c64c76d0b.png)
10+
11+
# CovStats
12+
13+
![Stats](https://user-images.githubusercontent.com/48918543/190849646-dbc9a96a-3ff9-43e3-9f0b-8b0cc58a91b1.png)
14+
15+
# Self Assesment Test
16+
17+
![SAT](https://user-images.githubusercontent.com/48918543/190849651-b7919fd3-abab-49d7-840b-3bf331002c9f.png)

SAT/.DS_Store

8 KB
Binary file not shown.

SAT/css/style.css

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
body {
2+
margin: 0;
3+
padding: 0;
4+
}
5+
6+
html, body {
7+
height: 100%;
8+
}
9+
10+
.main-container {
11+
height: 100vh;
12+
display: flex;
13+
justify-content: center;
14+
align-items: center;
15+
background-image: url('../images/shape-a.png');
16+
background-color: #F7F9FE;
17+
}
18+
19+
.form-container {
20+
border: 0.5px solid #d4cdcd;
21+
padding: 10px;
22+
border-radius: 15px;
23+
min-width: 30%;
24+
max-width: 100%;
25+
height: 70%;
26+
display: flex;
27+
flex-direction: column;
28+
justify-content: center;
29+
align-items: center;
30+
/* box-shadow: 5px 5px 2px #007bff; */
31+
box-shadow: 0 4px 8px 0 #4982bf;
32+
margin: 30px;
33+
}
34+
35+
#start {
36+
cursor: pointer;
37+
border: none;
38+
background: #007bff;
39+
border-radius: 20px;
40+
color: white;
41+
padding: 10px 20px;
42+
font-size: 14px;
43+
outline: none;
44+
}
45+
46+
#start:hover {
47+
background: #2674c7;
48+
}
49+
50+
.img-container {
51+
display: flex;
52+
justify-content: center;
53+
width: 40%;
54+
height: 40%;
55+
}
56+
57+
.title-container {
58+
padding: 10px 20px;
59+
}
60+
61+
.startBtn-container {
62+
padding: 10px 20px;
63+
}
64+
65+
.nxtBtn-container {
66+
position: relative;
67+
left: 34%;
68+
top: 14%;
69+
}
70+
71+
.next {
72+
outline: none;
73+
border: none;
74+
cursor: pointer;
75+
background: #007bff;
76+
color: #fff;
77+
font-size: 15px;
78+
transition: all 0.3s ease;
79+
border-radius: 10px;
80+
padding-left: 5px;
81+
padding-right: 5px;
82+
padding-top: 10px;
83+
padding-bottom: 10px;
84+
width: 100px;
85+
}
86+
87+
.next:hover {
88+
background: #0c60b9;
89+
}
90+
91+
.next:disabled {
92+
/* border: 1px solid #999999; */
93+
background-color: #e6e8f5;
94+
color: #666666;
95+
}
96+
97+
@media only screen and (max-width: 800px) {
98+
.title-container {
99+
padding: 10px 3px;
100+
}
101+
}

SAT/images/.DS_Store

6 KB
Binary file not shown.

SAT/images/call.png

12.9 KB
Loading

SAT/images/callMed.png

34.1 KB
Loading
1.3 KB
Loading

SAT/images/document.png

9.24 KB
Loading

0 commit comments

Comments
 (0)