Files
complete-intro-to-web-dev-v3/calculator/style.css
Marius Cerchez 9148676625 Calculator part 1
2026-02-26 09:05:55 +02:00

36 lines
462 B
CSS

body {
font-family: "Roboto Mono", monospace;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.calculator {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.display {
grid-column: 1 / 5;
height: 50px;
width: 200px;
}
button {
height: 50px;
}
.clear {
grid-column: 1 / 3;
}
.zero {
grid-column: 1 / 4;
}