-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
106 lines (86 loc) · 1.86 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
96
97
98
99
100
101
:root {
background-color: #eceaea ;
}
.calculadora{
border-radius: 2%;
width: 100%;
max-width: 330px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 1rem;
background: linear-gradient(145deg, #d0cdcd, #f7f4f4);
box-shadow: 30px 30px 36px #c7c4c4,
-30px -30px 36px #ffffff;
}
input#cuenta.box, input#resultado.box {
font-size: 20px;
width: 73%;
cursor: pointer;
border: none;
background-color: transparent;
margin-bottom: 5px;
color: rgb(22, 21, 21);
border-radius: 1rem 1rem 0rem 0rem;
height: 50px;
padding: 1.3rem;
font-weight: bold;
}
input#c.button, input#uno.button, input#cuatro.button, input#siete.button, input#boton.button {
margin-left: 35px;
}
input#cuenta.box {
border-bottom: none;
margin: 0;
padding-bottom: 0;
margin-left:35px;
}
input#resultado.box {
border-top: none;
border-radius: 0rem 0rem 1rem 1rem;
padding-top: 0;
color: #ff0069;
font-size: 1.8rem;
margin-left: 35px;
}
input#boton.button {
margin-bottom: 2rem;
}
input.button{
color: rgb(71, 70, 70);
font-size: 20px;
cursor: pointer;
border: none;
height: 50px;
border-radius: 1rem;
width: 60.5px;
}
input.button:hover {
background: linear-gradient(145deg, #f7f4f4, #d0cdcd);
box-shadow: 6px 6px 12px #c2c0c0,
-6px -6px 12px #ffffff;
}
input.button:active {
background: linear-gradient(145deg, #c9c7c7, #efecec);
box-shadow: 20px 20px 83px #bebcbc,
-20px -20px 83px #fffefe;
}
.button{
margin: 1px;
width: 60px;
background-color: transparent;
}
#boton {
width: 125px;
}
#borrarNumero {
width: 125px;
color: #ff0069;
}
input#c.button, input#s.button {
color: #ff0069;
}
input#result.button {
color: #ff0069;
}