-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.html
116 lines (110 loc) · 3.01 KB
/
inputs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="es-CL" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Blob UI - HTML5 INPUTS Basico</title>
<link rel="stylesheet" href="css/blob.css">
<link rel="stylesheet" href="css/inputs.css">
<style>
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background-color: #FFF;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
}
html {
box-sizing: border-box;
font-size: 10px;
line-height: 1.42857143;
}
.css-grid {
border: 2.5rem solid #FFCC00;
grid-template-columns: minmax(320px, 1fr);
grid-template-rows: auto !important;
grid-template-areas: "main"
}
main, footer{
max-width: 45rem;
}
main{
margin: auto;
padding: 3rem;
grid-area: main;
}
footer{
grid-area: footer;
}
p {
font-size: 1.6rem;
padding-right: 8rem;
margin-bottom: 2rem;
}
h1{
font-size: 5.5rem;
font-weight: 400;
line-height: 0.9;
margin: 3rem 0 4.8rem;
letter-spacing: -0.1rem;
}
h2{
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
color: #666666;
font-size: 1.1rem;
font-weight: 300;
margin: 1rem 0;
border-left: 1px solid;
padding-left: 1rem;
padding-bottom: 1.61rem;
}
.column {
max-width: 45rem;
padding: 3rem;
background: var(--sand);
}
.disclaimer {
font-size: 1.2rem;
max-width: 40rem;
color: #000000;
line-height: 1.2;
}
.disclaimer:before {
content: ' \002A';
color: red;
}
</style>
</head>
<body>
<div class="css-grid h-100">
<main class="top center">
<h2>A la Matrix</h2>
<h1>Registro</h1>
<p>Ten siempre presente un texto descriptivo.</p>
<form action="">
<label for="email" class="sr-only">Email Address</label>
<input type="email" placeholder="Email@address.com" aria-label="E-mail" autofocus />
<select name="favs">
<option value="">Tu favorito</option>
<option value="js">Javascript</option>
<option value="css">Css</option>
<option value="html">HTML5</option>
</select>
<input type="radio" name="chooseone" value="HTML" checked><label for="HTML"> Si</label>
<input type="radio" name="chooseone" value="CSS"><label for="CSS"> No</label><br>
<textarea rows="4" cols="50">At w3schools.com you will learn how to make a website. They offer free tutorials in all web development technologies.</textarea>
<input type="button" value="Sign Up">
<input type="reset" class="rounded" value="Cancel">
<input type="checkbox" id="recordarme" name="recordarme"/>
<span class="disclaimer">Terminos y condiciones</span>
</form>
</main>
</div>
<script>
</script>
</body>
</html>