mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-12-13 18:10:42 +01:00
21 lines
283 B
CSS
21 lines
283 B
CSS
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.calculator {
|
|
width: 100%;
|
|
height: 100vh;
|
|
box-sizing: border-box;
|
|
font-family: "Hack", sans-serif;
|
|
color: white;
|
|
background-color: #2e2e2e;
|
|
padding: 10px 20px 10px 20px;
|
|
}
|
|
|
|
.hint {
|
|
color: #c3c3c3;
|
|
}
|