Kalk_web scss variables

This commit is contained in:
PaddiM8 2021-01-02 18:40:35 +01:00
parent 8004610f68
commit 44153bb8b6

View File

@ -147,7 +147,8 @@
} }
</script> </script>
<style> $background-color: #424242;
$font: "Hack", monospace, Consolas, sans-serif; /* TODO: import font */
.calculator { .calculator {
width: 600px; width: 600px;
height: 350px; height: 350px;
@ -164,7 +165,7 @@
padding-bottom: 0; padding-bottom: 0;
box-sizing: border-box; box-sizing: border-box;
font-size: 1.4em; font-size: 1.4em;
font-family: "Hack", monospace, Consolas, sans-serif; /* TODO: import font */ font-family: $font;
color: white; color: white;
} }
@ -174,7 +175,7 @@
} }
.input-area { .input-area {
background-color: #424242; background-color: $background-color;
display: flex; display: flex;
padding-left: 10px; padding-left: 10px;
font-size: 1.4em; font-size: 1.4em;
@ -183,8 +184,8 @@
.prompt, .prompt,
.input { .input {
background-color: #424242; background-color: $background-color;
font-family: "Hack", monospace, Consolas, sans-serif; /* TODO: import font */ font-family: $font;
} }
.input { .input {