generated from MicrosoftDocs/mslearn-staticwebapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2a626c
commit 15f71b6
Showing
1 changed file
with
92 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |