Skip to content

Instantly share code, notes, and snippets.

@rizkiramadhanx
Created December 4, 2022 13:54
Show Gist options
  • Select an option

  • Save rizkiramadhanx/354b7ff79691ddbfca53e579f7aed0c7 to your computer and use it in GitHub Desktop.

Select an option

Save rizkiramadhanx/354b7ff79691ddbfca53e579f7aed0c7 to your computer and use it in GitHub Desktop.

Revisions

  1. rizkiramadhanx created this gist Dec 4, 2022.
    40 changes: 40 additions & 0 deletions styles.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,40 @@
    .App {
    font-family: sans-serif;
    color: black;
    }

    .borderRed {
    border: 2px solid crimson;
    }

    *:focus {
    outline: none;
    }

    form div input {
    width: 100%;
    }

    .App h1 {
    text-align: center;
    }

    form {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 70%;
    display: flex;
    }
    input {
    height: 20px;
    }

    select {
    height: 30px;
    }
    .submitbtn {
    background-color: #29ab00;
    border-color: transparent;
    color: white;
    }