commit 519c0ba417ffa2eb6d8426acbc195ef23a119efd Author: marcusferl@weifer.de Date: Wed Sep 7 15:15:27 2022 +0200 init diff --git a/umrechner.css b/umrechner.css new file mode 100644 index 0000000..94b0331 --- /dev/null +++ b/umrechner.css @@ -0,0 +1,49 @@ +.umrechner { + display: flex; + justify-content: center; + align-items: center; +} + +.eingabefeld { + display: flex; + flex-direction: column; + margin: 0 16px; + border: 2px solid #dadada; + max-width: 25%; + +} + +.umrechner input { + border: none; + border-bottom: 1px solid #0f0f0f; + appearance: textfield; +} + +.umrechner input::-webkit-inner-spin-button { + appearance: none; +} + +.umrechner input:focus { + outline: none; +} + +.umrechner input, +.umrechner label { + padding: 0.5em; + text-align: center; +} + +.umrechner * { + font-family: "Arial", "Helvetica", sans-serif; + font-size: 1rem; +} + +@media(max-width: 650px) { + .umrechner { + flex-direction: column; + } + + .eingabefeld { + max-width: 95%; + } +} \ No newline at end of file diff --git a/umrechner.html b/umrechner.html new file mode 100644 index 0000000..8e209b8 --- /dev/null +++ b/umrechner.html @@ -0,0 +1,32 @@ + + + + + + + + Temperatur Umwandler + + + + + +
+
+ + +
+
=
+
+ + +
+
=
+
+ + +
+
+ + + \ No newline at end of file diff --git a/umrechner.js b/umrechner.js new file mode 100644 index 0000000..355a080 --- /dev/null +++ b/umrechner.js @@ -0,0 +1,18 @@ +function celsiusInFahrenheitUmrechnen() { + +} +function celsiusInKelvinUmrechnunen() { + +} +function fahrenheitInCelsiusUmrechnen() { + +} +function fahrenheitInKelvinUmrechnung() { + +} +function kelvinInCelsiusUmrechnen() { + +} +function kelvinInFahrenheitUmrechnen() { + +} \ No newline at end of file