Spaces:
Sleeping
Sleeping
File size: 2,989 Bytes
d4bd75b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
body {
font-family: 'Montserrat', sans-serif !important; /* Police plus élégante */
margin: 0;
padding: 0;
background: url("assete/collage-langues-internationales-ecole-langues-medias-mixtes-foule-mains-levees-tenant-bulles-parole-salutations-dans-plusieurs-langues-illustration-vectorielle-communication-mondiale_229548-5363 (1).png") no-repeat center center fixed;
background-size: cover;
backdrop-filter: blur(2px);
text-align: center;
}
.container {
max-width: 500px;
margin: 60px auto;
background: #f8dede; /* rose clair inspiré des bulles de texte */
padding: 25px;
border-radius: 20px;
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease-in-out;
}
.container:hover {
transform: scale(1.02);
}
h2 {
color: #2c3e50; /* même bleu foncé que les boutons */
font-weight: bold;
margin-bottom: 25px;
}
.btn {
background: #2c3e50; /* bleu foncé */
color: white;
border: none;
padding: 12px 24px;
font-size: 16px;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease-in-out;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 15px;
width: 100%;
}
.btn:hover {
background: #e65550;
transform: translateY(-3px);
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}
/* Masquer l'input natif pour fichier */
.file-input-hidden {
display: none;
}
/* Affichage nom du fichier */
#file-name-display {
margin-top: 10px;
font-size: 14px;
color: #444;
}
/* Boutons de sélection de langue */
.lang-options {
display: none;
margin-top: 10px;
}
.lang-btn {
background: #ffffff;
color: #333;
border: 1px solid #ddd;
padding: 10px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
margin-top: 5px;
}
.lang-btn:hover {
background: #ff6f61;
color: white;
}
.result-title {
margin-top: 20px;
color: #2c3e50;
font-weight: 600;
font-size: 18px;
}
.resultat-box {
background: #f8f9fa;
padding: 15px;
border-radius: 10px;
min-height: 50px;
box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.1);
transition: background 0.3s ease-in-out;
}
.resultat-box:hover {
background: #eef0f2;
}
.file-label {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #2c3e50;
color: white;
border: none;
padding: 12px 24px;
font-size: 16px;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease-in-out;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
margin-top: 15px;
}
.file-label:hover {
background: #e65550;
transform: translateY(-3px);
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}
.container button, .file-label {
margin: 15px auto;
width: calc(100% - 48px); /* Même largeur que les autres boutons */
} |