diff --git a/GUI.py b/GUI.py index 451daa2..7328bf3 100644 --- a/GUI.py +++ b/GUI.py @@ -1,7 +1,7 @@ from tkinter import * from tkinter import messagebox root = Tk() - +root.geometry("850x300") def ok(): @@ -19,14 +19,14 @@ def ok(): -Label(root, text="S = Schere, R = Stein, P = Papier ").grid() +Label(root, text="S = Schere, R = Stein, P = Papier ", font=("times",25)).grid(column=1) -s1_wert = Entry(root) -s1_wert.grid() -s2_wert = Entry(root) -s2_wert.grid() +s1_wert = Entry(root,font=(28)) +s1_wert.grid(row=1) +s2_wert = Entry(root,font=(28)) +s2_wert.grid(row=1,column=2) -Button(root, text="Wählen", command=ok).grid() +Button(root, text="Wählen", command=ok, font=(30)).grid(row=2, column=1)