-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculadora.css
84 lines (84 loc) · 1.77 KB
/
calculadora.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
body{
margin-top: 10%;
}
.calculadora {
display: block;
flex-direction: column;
align-items: center;
justify-content: center;
width: 500px;
justify-content: center;
align-items: center;
border:1px solid #5350504f;
margin-left: auto;
margin-right: auto;
box-shadow: 3px 3px 15px #535050;
}
.salida {
display: grid;
font-size: 2em;
text-align: right;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 80px;
justify-content: center;
align-items: center;
border:1px solid #5350504f;
margin-left: auto;
margin-right: auto;
}
.botones {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 0px;
}
.boton {
display: flex;
font-size: 1.6em;
cursor: pointer;
justify-content: center;
align-items: center;
padding: 20px 30px;
transition: all 0.3s ease-in;
border: 0.3px solid #cfcdcd;
}
.botonEliminar {
display: flex;
font-size: 1.2em;
cursor: pointer;
justify-content: center;
align-items: center;
padding: 20px 30px;
background-color: #ebe7e7;
transition: all 0.3s ease-in;
border: 0.3px solid #cfcdcd;
}
.botonLimpiar {
display: flex;
font-size: 1.6em;
cursor: pointer;
justify-content: center;
align-items: center;
padding: 20px 30px;
background-color: #fc1e01;
color:white;
transition: all 0.3s ease-in;
border: 0.3px solid #cfcfcd;
}
.dot {
grid-column: span 2;
}
.botonIgual {
display: flex;
font-size: 1.6em;
cursor: pointer;
justify-content: center;
align-items: center;
padding: 20px 30px;
background-color: #0abe19;
color:white;
transition: all 0.3s ease-in;
border: 0.3px solid #cfcfcd;
}