![]()
<template>
<div id="app">
<section style="section">
<img
src="https://static.platzi.com/media/user_upload/Page%201-d8d869f4-7130-4ae9-9907-2fa809bd136a.jpg"
alt="Imagen Registro Platzi"
/>
<h1>Registro estación Platzi</h1>
<span>Nombre</span>
<input type="text" placeholder="Platzerito" />
<span>Apellido</span>
<input type="text" placeholder="Cool de la Web" />
<span>Cargo</span>
<input type="text" placeholder="FullStack JS" />
<div class="button-container">
<button>ENVIAR</button>
</div>
</section>
</div>
</template>
<script>
export default {
name: 'App',
}
</script>
<style lang="scss">
@import '@/scss/main.scss';
#app {
//font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
width: auto;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
section {
display: inline-flex;
flex-direction: column;
justify-items: center;
align-content: center;
}
section h1 {
font-size: 24px;
font-weight: bold;
color: #00bfd6;
}
section span {
width: inherit;
text-align: left;
color: #ff9300;
justify-self: left;
font-weight: bold;
font-size: 8px;
margin-top: 12px;
}
section input {
justify-self: center;
width: inherit;
border-width: 0px 0px 1px 0px;
border-color: #ff9300;
}
section input::placeholder {
color: black;
}
.button-container {
display: inline-flex;
justify-content: flex-end;
}
section button {
background-color: #00bfd6;
border: none;
margin-top: 16px;
width: 120px;
height: 34px;
border-radius: 4px;
font-weight: bold;
color: white;
}
</style>
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?