-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslito.css
More file actions
72 lines (67 loc) · 1.48 KB
/
eslito.css
File metadata and controls
72 lines (67 loc) · 1.48 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
color: rgb(68, 68, 68);
}
body{
background: #cc2b5e;
background: -webkit-linear-gradient(to right, #753a88, #cc2b5e);
background: linear-gradient(to right, #753a88, #cc2b5e);
}
.main{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
}
.calculadora{
display: grid;
grid-template-columns: repeat(4, 75px);
grid-template-rows: 160px repeat(5, 75px);
background-color: #ffffff6b;
padding: 15px;
border-radius: 32px;
box-shadow: 15px 10px 20px rgba(44, 44, 44, 0.493);
}
button{
cursor: pointer;
margin: 5px;
padding: 0;
border-radius: 32px;
font-size: 1.5em;
border: none;
box-shadow: 5px 5px 15px -3px rgba(0, 0, 0, 0.486);
}
button:active{
background-color: rgb(199, 199, 199);
}
.dispaly{
grid-column: 1 / -1;
padding: 16px;
display: flex;
margin: 10px 20px;
flex-direction: column;
align-items: flex-end;
background-color: #363636;
border-radius: 32px;
text-align: right;
justify-content: space-between;
word-break: break-all ;
box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.678);
}
.valor_anterior{
color: #Fff;
font-size: 30px;
}
.valor_actual{
color: #fff;
font-size: 23px;
}
.col_2{
grid-column: span 2;
}
.operador_igual{
background-color: #f85d48;
}