Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchitc05 authored Nov 10, 2024
1 parent 44c6566 commit f198e8f
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,28 @@
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" herf="https://use.fontawesome.com/releases/v5.4.1/css/all.css">
<link rel="stylesheet" href="./Style/popup.css">

<style>
/* Base styling for .slide-details */
.slide-details {
padding: 20px;
border-radius: 10px;
}

/* Base styling for text */
.slide-details h1 p,
.slide-details p {
color: #333;
transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effect for text within .slide-details */
.slide-details h1 p:hover,
.slide-details p:hover {
transform: perspective(800px) scale(1.1);
color: black;
text-shadow: 0px 0px 10px rgba(169, 169, 169, 0.8);
}
</style>
</head>

<body>
Expand Down

0 comments on commit f198e8f

Please sign in to comment.