-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (84 loc) · 1.4 KB
/
style.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
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
* {
box-sizing: border-box;
/* margin: 0;
padding: 0; */
}
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;
}
button {
border-radius: 10px;
cursor: pointer;
height: 40px;
width: 50px;
border: none;
}
button:hover {
background-color: darkgray;
}
button:active {
background-color: green;
}
.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=button]:hover {
background-color: darkgray;
}
input[type=button]:active {
background-color: green;
}
.ajuste {
display: flex;
}
input[type=tel] {
background-color: #cccccc;
border-radius: 10px;
font-family: monospace;
font-size: 15px;
height: 40px;
margin-bottom: 24px;
padding: 10px;
text-align: center;
width: 210px;
margin-right: 6px;
}
.ativa {
background-color: red;
}
footer {
background-color: white;
margin-top: 130px;
color: purple;
text-align: center;
width: 100%;
}