Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
moshethebeadle authored Jun 13, 2024
1 parent f2a626c commit 15f71b6
Showing 1 changed file with 92 additions and 64 deletions.
156 changes: 92 additions & 64 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,65 +1,93 @@
html {
height: 100%;
width: 100%;
}

/* style.css */
body {
font-family: 'Arial', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f4f4f4;
}

.phone-input {
display: flex;
flex-direction: column;
width: 300px;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-input label {
margin-bottom: 5px;
font-weight: bold;
}

.phone-input input[type="tel"] {
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}

.message-input {
display: flex;
flex-direction: column;
width: 300px;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-input label {
margin-bottom: 5px;
font-weight: bold;
}

.message-input textarea {
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
resize: vertical;
/* Allow vertical resizing */
height: 100px;
/* Initial height */
}
height: 100%;
width: 100%;
}

/* style.css */
body {
font-family: 'Arial', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f4f4f4;
}

.phone-input {
display: flex;
flex-direction: column;
width: 300px;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-input label {
margin-bottom: 5px;
font-weight: bold;
}

.phone-input input[type="tel"] {
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}


#addPhoneButton {
display: flex;
flex-direction: column;
width: 300px;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
font-size: 16px
}

.message-input {
display: flex;
flex-direction: column;
width: 300px;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-input label {
margin-bottom: 5px;
font-weight: bold;
}

.message-input textarea {
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
resize: vertical;
/* Allow vertical resizing */
height: 100px;
/* Initial height */
}

.status-area {
margin-top: 20px;
width: 300px;
border: 1px solid #ccc;
padding: 10px;
border-radius: 4px;
background-color: #f9f9f9;
}

.status-area p {
margin: 0;
font-size: 14px;
color: #333;
}

0 comments on commit 15f71b6

Please sign in to comment.