Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
#bookmarksModal {
display: none;
position: fixed;
z-index: 1000;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 80%;
max-width: 600px;
background-color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
border-radius: 4px;
overflow: hidden;
}
#bookmarksModal h2 {
margin: 0;
padding: 20px;
font-size: 20px;
font-weight: bold;
text-align: left;
border-bottom: 1px solid #ddd;
}
#bookmarksContent {
max-height: 300px;
padding: 20px;
overflow-y: auto;
border-bottom: 1px solid #ddd;
}
#bookmarksModal .bookmark-close-button {
background-color: #dc3545;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
margin: 10px 0 10px 15px !important;
float: left;
transition: all .3s ease;
}
#bookmarksModal .bookmark-close-button:hover {
background-color: #c82333;
}
#bookmarksModal .bookmark-details-button {
background-color: #753369;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
margin: 10px 0 10px 15px !important;
float: left;
transition: all .3s ease;
}
#bookmarksModal .bookmark-details-button:hover {
background-color: #5c234c;
}
#bookmarksContent div {
margin-bottom: 10px;
}
#bookmarksContent a {
font-size: 16px;
color: #0073e6;
text-decoration: none;
}
#bookmarksContent::-webkit-scrollbar {
width: 8px;
}
#bookmarksContent::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 2px;
}
#bookmarksContent::-webkit-scrollbar-thumb:hover {
background: #aaa;
}
/* Bookmark Styles */
#bookmarkButton {
cursor: pointer;
margin-left: 10px;
font-size: 24px;
vertical-align: middle;
}
#bookmarkSearch {
width: 85%;
padding: 8px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 4px;
margin-bottom: 10px;
transition: border 0.3s, box-shadow 0.3s;
}
#bookmarkSearch:focus {
border: none;
outline: none;
border: 1px solid #ddd;
box-shadow: 0 0 5px rgba(41, 128, 185, 0.5);
}
#bookmarkSearch:hover {
box-shadow: 0 0 6px rgba(41, 128, 185, 0.3);
}
#bookmarksContainer {
padding: 20px;
}
.remove-bookmark {
background-color: #e74c3c;
color: #ffffff;
border: none;
padding: 6px 10px;
font-size: 14px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.remove-bookmark:hover {
background-color: #c0392b; /* Darker shade on hover */
}
.export-button {
background-color: #28a745;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
margin-right: 10px;
transition: background-color 0.3s;
}
.export-button:hover {
background-color: #218838; /* Darker shade on hover */
}
.import-button {
background-color: #dc3545;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.import-button:hover {
background-color: #c82333; /* Darker shade on hover */
}