diff --git a/Ducky script creator/index.html b/Ducky script creator/index.html index b2fa462..3c3a110 100644 --- a/Ducky script creator/index.html +++ b/Ducky script creator/index.html @@ -49,21 +49,18 @@ background-color: #4E9AF1; color: white; cursor: pointer; + border-radius: 4px; /* Added rounded corners */ } - .other #delayInput { + .other input[type="number"], + .other input[type="text"], + .other .large-btn { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; } - .other .large-btn { - width: 100%; - white-space: normal; - line-height: 1.2; - } - #translateButton, #saveButton { padding: 10px; @@ -72,6 +69,7 @@ color: white; font-size: 16px; cursor: pointer; + border-radius: 4px; /* Added rounded corners */ } #output { @@ -82,10 +80,26 @@ border-radius: 4px; resize: vertical; } + + /* Added new styles for input fields and buttons in the "other" class */ + .other > input[type="number"], + .other > input[type="text"], + .other > button { + display: block; + width: 100%; + margin-bottom: 5px; + } + + .other .large-btn { + width: 100%; + white-space: normal; + line-height: 1.2; + border-radius: 4px; /* Added rounded corners */ + margin-top: 5px; /* Added margin-top to create space */ + }
-