Skip to content

Commit

Permalink
Added changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rakesh9100 authored Jan 30, 2025
1 parent 6b3fc8d commit 7e87da2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 23 deletions.
27 changes: 12 additions & 15 deletions assets/css_files/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,11 @@ body {
margin-bottom: 20px;
text-align: center;
transition: all 0.3s ease-in-out;
/* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); */
text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
0 0 10px rgba(255, 175, 204, 0.8),
0 0 15px rgba(255, 105, 135, 0.6),
0 0 20px rgba(255, 65, 108, 0.6);
filter:blur(0.1px);
text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
0 0 10px rgba(255, 175, 204, 0.8),
0 0 15px rgba(255, 105, 135, 0.6),
0 0 20px rgba(255, 65, 108, 0.6);
filter: blur(0.1px);
}

.info-title:hover {
Expand Down Expand Up @@ -110,7 +109,7 @@ body {
}

.info-details li a .hide {
display: none; /* Hide by default */
display: none;
}

@media (max-width: 433px) {
Expand All @@ -122,11 +121,11 @@ body {

@media (max-width: 352px) {
.info-details li a .hide {
display: inline; /* Show on smaller screens */
display: inline;
}

.info-details li a .show {
display: none; /* Hide on smaller screens */
display: none;
}

.info-details li span {
Expand All @@ -140,7 +139,6 @@ body {
text-decoration: none;
transition: all .4s;
align-self: center;
/* word-break: break-all; Allow email to break */
word-break: keep-all;
}

Expand Down Expand Up @@ -187,11 +185,10 @@ body {
font-size: 30px;
letter-spacing: 0.5px;
margin-bottom: 20px;
/* text-shadow: 1px 1px 2px #49025f, 1px 1px 2px white; */
text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
0 0 10px rgba(255, 175, 204, 0.8),
0 0 15px rgba(255, 105, 135, 0.6),
0 0 20px rgba(255, 65, 108, 0.6);
text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
0 0 10px rgba(255, 175, 204, 0.8),
0 0 15px rgba(255, 105, 135, 0.6),
0 0 20px rgba(255, 65, 108, 0.6);
color: #130e15;
}

Expand Down
15 changes: 7 additions & 8 deletions assets/html_files/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,19 +101,18 @@ <h3 class="info-sub-title">
<ul class="info-details">
<li>
<i class="fas fa-paper-plane"></i>
<span>Email:&nbsp;</span>
<a href="mailto:[email protected]" class="email">
<span>Email:&nbsp;</span>
<a href="mailto:[email protected]" class="email">
<p class="hide">Email </p>
<p class="show">
[email protected]
</p></a>
<p class="show">[email protected]</p>
</a>
</li>
<li>
<i class="fas fa-globe"></i>
<span>Website:&nbsp;</span>
<a href="https://beautiify.netlify.app/">
<p class="hide"> Website</p>
<p class="show"> beautiify.netlify.app</p>
<a href="https://beautiify.netlify.app">
<p class="hide">Website</p>
<p class="show">beautiify.netlify.app</p>
</a>
</li>
</ul>
Expand Down

0 comments on commit 7e87da2

Please sign in to comment.