Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
kavyapurushottama authored Aug 12, 2024
2 parents 4cde187 + 679e5c4 commit 2d5a125
Show file tree
Hide file tree
Showing 37 changed files with 2,733 additions and 1,398 deletions.
6 changes: 6 additions & 0 deletions Css-Files/aboutus.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@
justify-content: left;
background-color: #111111;
border-radius: 11px; margin-bottom: 10px;
transition: transform 0.3s ease;
}
.a-1:hover,.a-2:hover,.a-3:hover {
box-shadow: 0 8px 16px rgba(47, 80, 247, 0.2);
cursor: pointer;
transform: scale(1.05);
}
.a-l, .b-l, .c-l {
height: 58px;
Expand Down
111 changes: 111 additions & 0 deletions Css-Files/helpline.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
/* Helpline Container Styles */
.helpline-container {
background-color: #022a2d;
padding: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease-in-out;
}

.helpline-container:hover {
transform: scale(1.02);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.container {
display: flex;
flex-direction: column;
align-items: center;
}

.helpline-text {
color: #3fbcc0;
font-size: 40px;
font-weight: bold;
animation: slideInLeft 0.5s ease-in-out;
}

.helpline-content-wrapper {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
margin-top: 20px;
box-shadow: 0 0 20px rgba(63, 188, 192, 0.3);
border-radius: 10px;
}

.emergency-form-container,
.contact-details-container {
animation: fadeIn 0.5s ease-in-out;
padding: 20px;
}

.helpline-form {
display: flex;
align-items: center;
}

.helpline-form input {
margin-right: 10px;
padding: 5px 10px;
border: none;
border-radius: 5px;
background-color: #3fbcc051;
color: #959DA5;
}

.helpline-form button {
background-color: #2F81CF;
color: #fff;
padding: 5px 10px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}

.helpline-form button:hover {
background-color: #1e6bba;
}

.contact-details-container {
animation: fadeIn 0.5s ease-in-out 0.3s forwards;
opacity: 0;
}

.helpline-contacts {
display: flex;
flex-direction: column;
align-items: flex-start;
color: rgba(0, 0, 0, 0.3);
}

.contact-item {
display: flex;
align-items: center;
margin-bottom: 10px;
}

.helpline-link {
color: #2F81CF;
font-size: 18px;
text-decoration: none;
transition: color 0.3s ease-in-out;
}

.helpline-link:hover {
color: #3fbcc051;
}

.helpline-link i {
margin-right: 5px;
}

/* Popup Styles */
.popupmessage {
filter: drop-shadow(10px 10px 10px rgba(17, 133, 137, 0.683));
-webkit-text-stroke: 2px #000;
text-align: center;
font-size: 50px;
font-weight: 700;
}
Loading

0 comments on commit 2d5a125

Please sign in to comment.