components
Birthday.vue
Birthday.vue.css
Birthday.vue.html
FeedbackForm.vue
FeedbackForm.vue.css
FeedbackForm.vue.html
JokeBlock.vue
JokeBlock.vue.css
JokeBlock.vue.html
netlify
pages
static
store
.editorconfig
.eslintrc.js
.gitignore
.prettierignore
.prettierrc
README.md
jsconfig.json
netlify.toml
nuxt.config.js
package-lock.json
package.json
32 lines
430 B
CSS
32 lines
430 B
CSS
.birthday-form {
|
|
margin: 40px 40px;
|
|
min-width: 250px;
|
|
width: 45%;
|
|
}
|
|
|
|
input,
|
|
textarea,
|
|
button {
|
|
font-size: inherit;
|
|
margin: 15px 0;
|
|
padding: 12px 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
button {
|
|
background-color: teal;
|
|
border: 1px solid black;
|
|
color: white;
|
|
width: 50%;
|
|
}
|
|
|
|
.hidden {
|
|
clip: rect(0 0 0 0);
|
|
clip-path: inset(50%);
|
|
height: 1px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
width: 1px;
|
|
}
|