|
|
(Une version intermédiaire par le même utilisateur non affichée) |
Ligne 23 : |
Ligne 23 : |
| } | | } |
|
| |
|
| .citizen-search-modal {
| |
| position: fixed;
| |
| top: 0;
| |
| left: 0;
| |
| width: 100%;
| |
| height: 100%;
| |
| background: rgba(0, 0, 0, 0.7);
| |
| display: flex;
| |
| justify-content: center;
| |
| align-items: center;
| |
| z-index: 1000;
| |
| opacity: 0;
| |
| transition: opacity 0.3s ease;
| |
| }
| |
|
| |
| .citizen-search-modal-content {
| |
| background: #fff;
| |
| padding: 2rem;
| |
| border-radius: 8px;
| |
| width: 90%;
| |
| max-width: 600px;
| |
| box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
| |
| }
| |
|
| |
| .citizen-search-modal input[type="search"] {
| |
| width: 100%;
| |
| padding: 0.75rem;
| |
| border: 1px solid #ddd;
| |
| border-radius: 4px;
| |
| font-size: 1rem;
| |
| }
| |
|
| |
| .citizen-search-modal button {
| |
| margin-top: 0.5rem;
| |
| padding: 0.5rem 1rem;
| |
| background: #36c;
| |
| color: white;
| |
| border: none;
| |
| border-radius: 4px;
| |
| cursor: pointer;
| |
| }
| |
|
| |
|
|
| |
|