Skip to content

Commit

Permalink
rfq
Browse files Browse the repository at this point in the history
  • Loading branch information
Hrutujahh committed Jul 9, 2023
1 parent 8c75e7e commit 3c3ebe8
Show file tree
Hide file tree
Showing 4 changed files with 197 additions and 129 deletions.
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,9 @@
},
"devDependencies": {
"react-router-dom": "^6.10.0"
}
},
"description": "",
"main": "index.js",
"author": "",
"license": "ISC"
}
161 changes: 118 additions & 43 deletions src/Pages/RFQForm/RFQForm.css
Original file line number Diff line number Diff line change
@@ -1,46 +1,121 @@
/* .container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
letter-spacing: 1px;
background-color: #c6c8d2;
margin-top: 70px;
} */

.container {
max-width: 80vw;
margin: 0 auto;
}
.title{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
letter-spacing: 1px;
background: #4568DC;
background: -webkit-linear-gradient(to right, #ba87bc, #7b8aba);
background: linear-gradient(to right, #ba87bc, #7b8aba);
/* margin-top: 20px; */
}


.heading {
text-align: center;
margin-bottom: 20px;
}

.heading h2 {
font-size: 24px;
font-weight: bolder;
font-size: 40px;
font-style: inherit;
font-variant: normal;
color: #050000;
margin: 0;
}


.form-row {
margin-bottom: 20px;
}

.form-group {
margin-bottom: 10px;
}

label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}

input[type="text"],
input[type="checkbox"] {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 3px;
font-size: 14px;
}

input[type="checkbox"] {
width: auto;
margin-top: 5px;
}

.checkbox-label {
display: flex;
align-items: center;
}

.checkbox-label input[type="checkbox"] {
margin-right: 5px;
}

input[type="submit"] {
background-color: #4caf50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 3px;
cursor: pointer;
font-size: 14px;
}

input[type="submit"]:hover {
background-color: #45a049;
}

.error-message {
color: red;
font-size: 12px;
margin-top: 5px;
}

.submit-button {
display: block;
margin-top: 20px;
text-align: center;
}

.form-row {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

.form-group {
flex: 1;
margin-right: 10px;
}

label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}

input[type="text"] {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

button[type="submit"] {
padding: 10px 20px;
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}

button[type="submit"]:hover {
background-color: #45a049;
}


.submit-button button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

/* .submit-button:hover {
background-color: #45a049;
}
.submit-button:active {
background-color: #dd1a37;
} */
Loading

1 comment on commit 3c3ebe8

@vercel
Copy link

@vercel vercel bot commented on 3c3ebe8 Jul 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.