-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
57 lines (50 loc) · 1.02 KB
/
estilo.css
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
* {
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #191919;
min-height: 100vh;
}
input {
border: none;
color: inherit;
font-size: inherit;
font-weight: inherit;
font-family: inherit;
}
h1 {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
color: #fff;
}
.teclado {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
background-color: #cccccc;
border-radius: 30px;
padding: 10px;
}
input[type=button] {
border-radius: 20px;
cursor: pointer;
font-family: 'Montserrat', sans-serif;
height: 80px;
width: 80px;
}
input[type=tel] {
background-color: #cccccc;
border-radius: 10px;
font-family: monospace;
font-size: 22px;
height: 40px;
margin-bottom: 24px;
padding: 10px;
text-align: center;
width: 280px;
}
document.querySelector('input[type=tel]')