-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidea-suscribete.html
More file actions
114 lines (112 loc) · 2.68 KB
/
idea-suscribete.html
File metadata and controls
114 lines (112 loc) · 2.68 KB
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
<!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 auto !important;
grid-template-areas: "main"
"footer"
}
main, footer{
max-width: 45rem;
}
main{
margin: auto;
padding: 3rem;
grid-area: main;
}
footer{
grid-area: footer;
padding-bottom: 1em;
}
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;
}
input[type="text"],
input[type="email"],
textarea{
border: 3px solid #CCC;
}
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus,
select:focus {
border: 3px solid #000;
}
.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 Sumar</h2>
<h1>Suscríbase al mejor newsletter</h1>
<p>Regístrese para recibir las novedades de Blob.cl y LWP en su email.</p>
<form action="">
<label for="email" class="sr-only">Email Address</label>
<input type="email" placeholder="Email@address.com" aria-label="E-mail" autofocus />
<input type="button" value="Sign Up">
</form>
</main>
<footer class="center-v center disclaimer">
<em>Nunca compartiremos su dirección de correo electrónico y podra darse de baja en cualquier momento.</em>
</footer>
</div>
</body>
</html>