Spaces:
Running
Running
add
Browse files- static/style.css +56 -1
static/style.css
CHANGED
@@ -541,4 +541,59 @@ box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
|
541 |
}
|
542 |
.summary-action-btn:hover {
|
543 |
background-color:white;
|
544 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
}
|
542 |
.summary-action-btn:hover {
|
543 |
background-color:white;
|
544 |
+
}
|
545 |
+
|
546 |
+
.action-container {
|
547 |
+
display: flex;
|
548 |
+
justify-content: center;
|
549 |
+
align-items: center;
|
550 |
+
gap: 130px; /* espace raisonnable */
|
551 |
+
margin-top: 5px;
|
552 |
+
}
|
553 |
+
.language-dropdown {
|
554 |
+
padding: 10px ;
|
555 |
+
border-radius: 5px;
|
556 |
+
border:1px solid white;
|
557 |
+
font-size: 16px;
|
558 |
+
width: 200px;
|
559 |
+
background-color:transparent;
|
560 |
+
color: black;
|
561 |
+
|
562 |
+
}
|
563 |
+
.translate{
|
564 |
+
background-color:white;
|
565 |
+
color: black;
|
566 |
+
border-radius: 5px;
|
567 |
+
border: none;
|
568 |
+
font-size: 20px;
|
569 |
+
width: 200px;
|
570 |
+
height: 40px;
|
571 |
+
}
|
572 |
+
.translate:hover {
|
573 |
+
transform: translateX(8px);
|
574 |
+
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
575 |
+
}
|
576 |
+
.result{
|
577 |
+
text-align: center;
|
578 |
+
}
|
579 |
+
.results-containe{
|
580 |
+
background: white;
|
581 |
+
border-radius: 12px;
|
582 |
+
padding: 2rem;
|
583 |
+
margin-top: 50px;
|
584 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
585 |
+
height: 230px;
|
586 |
+
}
|
587 |
+
.visualiser{
|
588 |
+
background-color:white;
|
589 |
+
color: black;
|
590 |
+
border-radius: 5px;
|
591 |
+
border: none;
|
592 |
+
font-size: 20px;
|
593 |
+
width: 200px;
|
594 |
+
height: 40px;
|
595 |
+
}
|
596 |
+
.visualiser:hover {
|
597 |
+
transform: translateX(8px);
|
598 |
+
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
599 |
+
}
|