24/03/2026
Voici
Calculatrice Scientifique
0
= 0
sin
cos
tan
asin
acos
atan
log₁₀
ln
√
x²
xʸ
π
AC
⌫
(
)
e
Ans
7
8
9
÷
%
mod
4
5
6
×
−
+
1
2
3
=
0
.
scientifique · radian · fonctions directes
CSS
* {
box-sizing: border-box;
user-select: none;
}
body {
background: linear-gradient(145deg, #101018 0%, 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', 'Poppins', 'Inter', system-ui, -apple-system, 'Roboto', sans-serif;
padding: 20px;
margin: 0;
}
/* Carte principale */
.calculator {
max-width: 550px;
width: 100%;
background: rgba(22, 26, 35, 0.85);
backdrop-filter: blur(4px);
border-radius: 48px;
box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
padding: 20px;
transition: all 0.2s ease;
}
/* Écran */
.display {
background: ;
border-radius: 32px;
padding: 20px 24px;
margin-bottom: 25px;
box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05);
}
.expression {
width: 100%;
background: transparent;
border: none;
font-size: 1.9rem;
font-weight: 500;
font-family: 'Courier New', 'Fira Code', monospace;
color: ;
text-align: right;
outline: none;
padding: 8px 0;
letter-spacing: 1px;
word-wrap: break-word;
overflow-x: auto;
white-space: pre-wrap;
}
.result {
width: 100%;
background: transparent;
border: none;
font-size: 2.3rem;
font-weight: 600;
font-family: 'Segoe UI', monospace;
color: ;
text-align: right;
outline: none;
padding: 8px 0 0;
word-break: break-word;
border-top: 1px solid rgba(90, 150, 200, 0.3);
margin-top: 10px;
}
/* Grille des boutons */
.buttons {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 12px;
}
button {
background: ;
border: none;
border-radius: 28px;
padding: 16px 0;
font-size: 1.25rem;
font-weight: 600;
font-family: inherit;
color: ;
cursor: pointer;
transition: 0.1s linear;
```