forked from khushi-joshi-05/Food-ordering-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f1cf4e
commit ca90c0b
Showing
4 changed files
with
176 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
#translateButton { | ||
position: fixed; | ||
bottom: 20px; | ||
right: 20px; | ||
z-index: 1000; | ||
width: 50px; | ||
height: 50px; | ||
border-radius: 50%; | ||
border: none; | ||
background: linear-gradient( rgb(234, 16, 16), #f2a736); | ||
|
||
color: white; | ||
text-align: center; | ||
display: inline-block; | ||
font-size: 16px; | ||
cursor: pointer; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: 12px; | ||
line-height: 1; | ||
text-align: center; | ||
white-space: nowrap; | ||
transition: transform 0.3s ease; | ||
margin-right: 1390px; | ||
margin-bottom: 55px; | ||
} | ||
#translateButton:hover { | ||
transform: scale(1.2); | ||
} | ||
|
||
/* The popup modal */ | ||
.popup { | ||
display: none; | ||
position: fixed; | ||
z-index: 1000; | ||
left: 0; | ||
top: 0; | ||
width: 100%; | ||
height: 100%; | ||
overflow: auto; | ||
background-color: rgb(0,0,0); | ||
background-color: rgba(0,0,0,0.4); | ||
|
||
} | ||
|
||
/* Popup content */ | ||
.popup-content { | ||
background-color: #CF2123; | ||
margin-top: 600px; | ||
padding: 20px; | ||
border: 1px solid #888; | ||
width: 300px; | ||
border-radius: 10px; | ||
position: relative; | ||
margin-right: 1300px; | ||
margin-top:570px; | ||
} | ||
|
||
/* Close button */ | ||
.close { | ||
color: #073725; | ||
float: right; | ||
font-size: 28px; | ||
font-weight: bold; | ||
cursor: pointer; | ||
} | ||
|
||
.close:hover, | ||
.close:focus { | ||
color: black; | ||
text-decoration: none; | ||
} | ||
|
||
/* Hide the default Google Translate widget */ | ||
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { | ||
display: none !important; | ||
} | ||
|
||
body { | ||
top: 0px !important; | ||
} | ||
|
||
/* Hide the "Powered by Google" branding */ | ||
.goog-logo-link { | ||
display: none !important; | ||
} | ||
|
||
.goog-te-gadget { | ||
height: 28px !important; | ||
overflow: hidden; | ||
} | ||
|
||
/* Hide Google Translate notifications */ | ||
.goog-te-spinner-pos, | ||
.goog-te-spinner, | ||
.goog-te-balloon-frame, | ||
.goog-te-banner-frame, | ||
.goog-te-banner, | ||
.goog-te-balloon { | ||
display: none !important; | ||
} | ||
|
||
/* Custom styles for the Google Translate dropdown */ | ||
#google_translate_element select { | ||
background: #ffffff; | ||
border: 1px solid #ccc; | ||
color: #CF2123; | ||
padding: 5px; | ||
font-size: 14px; | ||
border-radius: 5px; | ||
} | ||
|
||
/* Hide the Google Translate bar */ | ||
body > .skiptranslate { | ||
display: none !important; | ||
} | ||
|
||
.goog-te-banner-frame.skiptranslate { | ||
display: none !important; | ||
} | ||
.goog-te-banner-frame { | ||
display: none !important; | ||
} | ||
.goog-te-banner { | ||
display: none !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
document.addEventListener('DOMContentLoaded', function() { | ||
// Get the popup | ||
var popup = document.getElementById('translatePopup'); | ||
|
||
// Get the button that opens the popup | ||
var btn = document.getElementById('translateButton'); | ||
|
||
// Get the <span> element that closes the popup | ||
var span = document.getElementsByClassName('close')[0]; | ||
|
||
// When the user clicks the button, open the popup | ||
btn.onclick = function() { | ||
popup.style.display = 'block'; | ||
} | ||
|
||
// When the user clicks on <span> (x), close the popup | ||
span.onclick = function() { | ||
popup.style.display = 'none'; | ||
} | ||
|
||
// When the user clicks anywhere outside of the popup, close it | ||
window.onclick = function(event) { | ||
if (event.target == popup) { | ||
popup.style.display = 'none'; | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters