| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #cookie-notice {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #f0f0f0;
- padding: 20px;
- text-align: center;
- box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
- z-index: 1000;
- /* Ensure it's on top */
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- #cookie-notice p {
- margin: 0;
- flex-grow: 1;
- padding-right: 20px;
- }
- #cookie-notice button {
- background-color: #007bff;
- color: white;
- border: none;
- padding: 10px 20px;
- cursor: pointer;
- border-radius: 5px;
- }
- #cookie-notice button:hover {
- background-color: #0056b3;
- }
- #cookie-notice a {
- color: #007bff;
- text-decoration: none;
- }
- #cookie-notice a:hover {
- text-decoration: underline;
- }
- @media (max-width: 600px) {
- #cookie-notice {
- flex-direction: column;
- align-items: stretch;
- }
- #cookie-notice p {
- padding-right: 0;
- margin-bottom: 10px;
- }
- }
|