diff --git a/Form-Controls/index.css b/Form-Controls/index.css new file mode 100644 index 000000000..33fa5b762 --- /dev/null +++ b/Form-Controls/index.css @@ -0,0 +1,47 @@ + body { + text-align: center; + background-color: rgb(162, 139, 139); + } + + fieldset{ + border-radius: 10px; + padding: 3px; + max-width: 450px; + margin: 0 auto 12px auto; + box-sizing: border-box; + } + + input{ + border: 2px solid #ddd; + border-radius: 5px; + background: #eee; + padding: 2px; + } + + select { + border: 2px solid #ddd; + border-radius: 5px; + background: #eee; + padding: 2px; + transition: 0.4s; + } + + select:hover, + select:focus{ + background: rgb(117, 180, 232); + color: white; + } + + button { + padding: 5px; + border: 2px solid #ddd; + background: #eee; + border-radius: 5px; + cursor: pointer; + } + + button:hover, + button:focus { + background: rgb(117, 180, 232); + color: white; + } \ No newline at end of file diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..013ce7682 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -6,22 +6,92 @@